Viewing 15 posts - 31 through 45 (of 94 total)
February 7, 2005 at 5:48 am
once again we have a good question marred by that little detail - the world is NOT the same as US locale/format! Please Please, pleeeease get your locale/dateformat thought through!...
February 7, 2005 at 4:14 am
Depending on your network setup, have you tried pinging?
January 25, 2005 at 6:39 am
number of columns = expected number of commas + 1
something like a while loop would allow you to iterate with charindex to a point after the last #expected#, then a...
January 19, 2005 at 8:12 am
if you know the number normally expected, do a charindex, loop up to that number, and if the next one comes back with a value, you've got the position.
January 19, 2005 at 7:29 am
test for the extra comma, replace it with something else, replace the remaining commas, return the remaining one to a comma.
January 19, 2005 at 7:14 am
If you could get them to build the csv with another delimiter - ; or | forinstance, that stops the comma casuign a problem. You'll have to change the dts...
January 19, 2005 at 2:25 am
Truly the kind of outfit you #don't# want to work for.
I can see Dilbert written all over this...
January 14, 2005 at 2:49 am
SELECT * FROM tblUserAccessLevel l INNER JOIN tblUserContentArea c ON ((l.UserID = @user-id) AND (c.UserID = @user-id))
SELECT @testaccess = Userid FROM tbluseraccesslevel where Userid =
January 14, 2005 at 2:28 am
hum. my PERL is not too strong, but are you confirming what is actually being sent to the proc? as you've got trans/commit lines in there, it might actually be...
January 13, 2005 at 10:57 am
ah! you're looking for the userid value?
Its trying to give you back two sets of data at the end
#####
SELECT * FROM tblUserAccessLevel l INNER JOIN tblUserContentArea c ON ((l.UserID =...
January 13, 2005 at 10:15 am
but running it through query analyser returns a value?
January 13, 2005 at 8:12 am
just a thought, but have you tried to check what data is actually being returned? Like a NULL, or something else that the script doesn't like?
January 13, 2005 at 7:44 am
Viewing 15 posts - 31 through 45 (of 94 total)