Viewing 4 posts - 196 through 199 (of 199 total)
I thought this was going to be an article about backing up to one of those portable keyring USB fobs.
Silly me.
S.
May 24, 2006 at 5:59 pm
My initial thoughts on reading this was "1 Procedure, the second generates an error". Finding no option for this, I went for "None, a error will be raised."
Reading the explantion,...
February 12, 2006 at 3:38 pm
Adam,
Playing with your code turned up an interesting trick:
declare @var varchar(10)
set @var = char(226)
print char(226)
if @var like '[ab]' --> gives 'no'
print 'yes'
else
print 'no'
if @var like '[a-b]' --> gives 'yes'
print...
June 2, 2005 at 6:33 pm
An obvious (I feel) one not listed that made me very happy when I learned it, is that you can select some of the code and press F5 to execute...
May 9, 2005 at 11:17 pm
Viewing 4 posts - 196 through 199 (of 199 total)