Comments
Sort by recent activity
The candidate list also shows up when typing a string value. Here is an example: DECLARE @MessageText varchar(1024)
SET @MessageText = 'This is a sample string which is way too short for the size of the variable'
In this example, the candidate list pops up and continues to try to figure out what to show me as I'm typing a string. Very annoying.
Callon / comments
The candidate list also shows up when typing a string value. Here is an example:DECLARE @MessageText varchar(1024)
SET @MessageText = 'This is a sample string which is way too short for th...
This is the script I've been working on. As you can see it's rather simple. The error is generated when I 'clean up' the white space (The white space in this scenerio is after the Print @sec and before the line with 489946). As I run through each number, I delete the line.
---- -- This script cleans up the Shipments that are still in open status with units loaded but have shipped manually
-- Date: 2006-04-21
-- By Callon Campbell
exec system_queryshipment 489946
declare @sec bit
exec [Shipping_UpdateShipmentOrderTo_ShippedManually] 3772, @Sec output
print @sec
489946
489155
461822
/ comments
This is the script I've been working on. As you can see it's rather simple. The error is generated when I 'clean up' the white space (The white space in this scenerio is after the Print @sec and be...
I posted a comment on this already but I'll engage in this discussion and say that I dont like the default of any of the completion keys with the exception of ENTER and TAB.
Too many times have I gotten the wrong SQL or SQL when I didn;t want SQL when I pressed either SPACE or DOT...PARENTHESES most likely too.
Just my 2 cents. I would turn off all but ENTER and TAB and if you can, maybe provide reasons on why and when we would use the other keys?
Thanks
Callon / comments
I posted a comment on this already but I'll engage in this discussion and say that I dont like the default of any of the completion keys with the exception of ENTER and TAB.
Too many times have I g...
The candidate list shows up when writing single and multu-line comments using -- and /* */
Not sure if this is a bug or intentional. For me, I dont want to see a candidate list when writing a comment because they are unrelated. However if I press CTRL+SPACE, then that would be different as I implied I wanted the candidate list to show up.
Callon / comments
The candidate list shows up when writing single and multu-line comments using -- and /* */
Not sure if this is a bug or intentional. For me, I dont want to see a candidate list when writing a comme...