Viewing 15 posts - 57,436 through 57,450 (of 59,066 total)
I guess I don't understand... obviously, you are finding the correct Windows user name somewhere along the line in your stored procedure because you want to "pass it" to a...
October 11, 2006 at 7:11 am
It's the triple quotes in the variable assignment that are the most recent problem...
Try this...
declare @townID varchar(25),
@sql varchar(1000)
set @townID = '00003' --<<THIS IS WHERE THE...
October 11, 2006 at 6:49 am
Old guys rule...
1 million conversions... 11 seconds... works for positive numbers, negative numbers, zero, and NULL...
DECLARE @Places INT
SELECT TOP 1000000...
October 11, 2006 at 1:51 am
If you run this code, you might just want to have your DBA turn on Trace Flag 1204 just to be safe ![]()
As a self-taught newbie, I guess when it comes to the "religion", I don't have a lot of the... |
October 10, 2006 at 6:15 am
My managers at work liked it so well, they allowed the term in our coding standards... and, ALL the developers know what RBAR means... no need for a lengthy explanation...
October 10, 2006 at 6:10 am
ISNUMERIC does NOT check for numeric characters only... be careful.
October 10, 2006 at 6:03 am
Your code to handle the header appears to have a couple of a problems... as you are aware, the Deleted table is empty for Deletes... why does the SELECT in the...
October 10, 2006 at 5:45 am
Viewing 15 posts - 57,436 through 57,450 (of 59,066 total)