Viewing 3 posts - 1 through 3 (of 3 total)
I agree with you GilaMonster. That's why Google is there. Just Google it.
June 9, 2011 at 2:30 am
#1336083
BOL = Books Online
Google = Search Engine
Microsoft.com = Microsoft's Official Website
June 1, 2011 at 6:12 am
#1332461
If you're sending a value like 2^3 that will not work. You'll have to use the Power function. Example below:
DECLARE @value int, @counter int;
SET @value = 2;
SET @counter = 1;
WHILE...
May 9, 2011 at 7:52 am
#1321732