|
Comments
|
|
would be cool if the results window could be bigger...after a statement is executed
|
|
|
Nothing too interesting.
|
|
Jamshid Nouri on
10/27/2010
excellent demo, Thanks!!!
|
|
Dexter Jones on
10/27/2010
Thanks, Andy.
|
|
Yelena Varshal on
10/27/2010
I wonder why data from multiple lines from the same MS Excel cell or same MS ACCESS record imported into SQL Server using SSIS contain only char(10) between 2 lines. The output appears on 1 line in Management Studio query with the results in grid and on multiple lines with the results as text. I too used to Char(13) + Char(10) but Char(13) was not found in these cases.
Good presentation
Yelena Varshal
yelena.varshal@philips.com
|
|
Martin Miller on
10/27/2010
Here is a simple to script to through the alphabet using ASCII function:
DECLARE @alpha TINYINT
SET @alpha = ASCII('A')
WHILE @alpha <= ASCII('Z')
BEGIN
PRINT CHAR(@alpha)
SET @alpha = @alpha + 1
END
|
|
|
never new this
|
|
|
good
|
|
|
very nice. simple and clear!
|
|
|
very nice video
|
|
|
Adding or subtracting 32 to go from upper to lower is 'magic' because it is really just a bit flipping in the byte representing the character. Right?
|
|
|
gud .as always
|
|
|
Thank you for making the result pane have larger print!!
|
|
|
This was good but I would slowed it down by a few percent.
|
|
|
Great info on how to get the ASCII representation - this will be very useful.
|