Viewing 15 posts - 391 through 405 (of 920 total)
When you do the insert:
INSERT INTO faster.SAttribute (sashusername)
SELECT @shusername
you don't insert a value for SATable, yet you are looking for a value in the second update. It won't find...
September 29, 2010 at 10:48 am
Change the port it listens on then firewall off that port?
September 24, 2010 at 5:25 pm
Remove the last comma on the line above the 'where'.
September 24, 2010 at 9:14 am
NOOOOOOOOOO! I have them plastered all over my cubicle. I use them as teaching aids for end users. (OK, read the comic. This character is you and...
September 17, 2010 at 9:30 am
It's very probable that what you are seeing is data left on a page which has been marked as re-usable, but is part of a larger allocation unit (extent) which...
September 15, 2010 at 12:58 pm
I am quite surprised. I've never heard of anyone who could open a backup file and read it in notepad. Where did you learn how to trace the...
September 15, 2010 at 12:44 pm
And what happens if the Status is NULL? Does your code deliver the correct answer? That's all Jeff was trying to point out. He's trying to make...
September 13, 2010 at 3:57 pm
Just leave the date off if the date column is nullable. If it's not nullable, you should specify a default for it.
10.0
6
1 SQLCHAR 0 100 "\t" 1 Agent SQL_Latin1_General_CP1_CI_AS
2...
September 13, 2010 at 3:21 pm
If all you want are rows that match, change the outer join to an inner join.
September 10, 2010 at 1:48 pm
Are you executing this in SSMS or some other tool? Can you run a profiler trace when you execute this so you can see what the server is actually...
September 10, 2010 at 1:14 pm
How are you executing the batch? It wouldn't, by any chance, be dynamic sql? If it is, you might want to make sure that the variable that holds...
September 9, 2010 at 12:20 pm
Is @logicaldate defined as a datetime? If so, shouldn't the convert be:
convert(nvarchar(256), @LogicalDate, 102)
September 9, 2010 at 9:45 am
You have to change all of those *= to ANSI join syntax LEFT OUTER JOIN (or RIGHT OUTER JOIN as the case may be.
Doesn't really look like there are any...
September 8, 2010 at 4:25 pm
DOUBLE is a floating point datatype which is approximate.
http://msdn.microsoft.com/en-us/library/ayazw934.aspx
If you declare it as numeric or decimal, it may work more precisely.
September 8, 2010 at 3:30 pm
In the description column, are the words you need delimited by something? If you have:
ford, 4-door, all wheel drive, etc....
you could parse the list by the comma and put each...
September 1, 2010 at 5:31 pm
Viewing 15 posts - 391 through 405 (of 920 total)