GO capitalization issues
Oliwa
Posts: 42 Bronze 2
GO never seems to capitalize. If I type "g" and hit ENTER or TAB it capitalizes...but not if I type the word "go" and then hit ENTER. This is odd because it works with other keywords.
Comments
And I have TAB and ENTER set as activation keys.
for example:
SELECT * FROM Person.Address
go
would instead come out as:
SELECT * FROM Person.Address;
GO
is this the case with your situation?
This is just one of the scenarios I found where go is not capitalized. There are others, but sometimes they work and other times not.
If I declare a variable and type go afterward it capitalizes like so...
Now if I try putting in a USE statement before or after the batch go does not capitalize...
But if I type "g" and hit ENTER it works.
However, I tried creating a new stored procedure to see if one named with 'go' could affect sql prompt. I named mine 'go_home' containing a very simple select statement. After creating it, I retried your example and that was when I got the results that you describe.
Can you confirm for me whether you have a stored procedure (or any other object) that could be interfering in this way? If you do, can you try dropping it and then re-testing your example. Do you get the same results?