Viewing 6 posts - 1 through 6 (of 6 total)
I changed a few references to @DBName to quotename(@DBName) as there is an issue with database names with spaces.
Otherwise, thanks very much.
May 19, 2011 at 7:27 am
SET CONCAT_NULL_YIELDS_NULL ON
DECLARE @STR AS VARCHAR(8)
SET @STR = 'abcdefghij'
SELECT @STR
SELECT LEN(@str)
SELECT LEN(@str+NULL)
SELECT ISNULL(@str+NULL,'1234567890')
--------
abcdefgh
-----------
8
-----------
NULL
---------
123456789
Okay.....
December 11, 2009 at 1:23 pm
The Microsoft 70-431 self-training book says "You cannot create Database Snapshots against system databases." Was this changed in a service pack, or was the author being lazy?
August 27, 2009 at 5:22 am
August 21, 2009 at 4:10 am
This is a cheeky one.
Technet (link) says the following:
The data type of a parameter determines the type and range of values that are accepted for the parameter. For example, if...
August 13, 2009 at 9:26 am
Viewing 6 posts - 1 through 6 (of 6 total)