Viewing 15 posts - 2,611 through 2,625 (of 2,766 total)
amin 70510 (1/27/2010)
I have a table with 314 fields.
That is a LOT of columns. No wonder why you're getting out of memory issues.
Is there ANY way you can break...
January 28, 2010 at 7:28 am
http://www.sqlservercentral.com/Forums/Topic854826-23-1.aspx
314 columns?!?!?!?!?!?!? One million records??????
And he's wondering why he's getting out of memory errors???
January 28, 2010 at 7:21 am
Ser Tharg (1/27/2010)
Cannot resolve the collation conflict between "Latin1_General_CI_AS" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation.
Argh . . . looks like your two tables are using different collations!
There probably...
January 27, 2010 at 12:03 pm
Try this:SELECT AgentIP
FROM ConfigDB.dbo.NODES CDB
RIGHT OUTER JOIN MainDB.dbo.NODES MDB
ON
CDB.AgentIP = MDB.IP_ADDRESS
Note: I'm guessing on where to put CDB and MDB on AgentIP and IP_ADDRESS, because I have no idea...
January 27, 2010 at 11:26 am
Go to BOL and look up DATEADD.
I just looked it up myself. You're going to need to split the hours, minutes, and seconds to use DATEADD (this can be...
January 27, 2010 at 11:14 am
Found this: http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=64359
It means you haven't assigned aliases to your join objects. I didn't see any alias on your join that indicates what column belongs to what table.
January 27, 2010 at 11:12 am
Just curious: is anyone else besides me struck by the number of people asking about character-to-date conversions?
January 27, 2010 at 10:56 am
Just goes to show that IT really is the job from hell! 😀
January 27, 2010 at 6:58 am
Ray K (1/21/2010)
My list might look something like this (all major league, unless noted -- also, I only...
January 26, 2010 at 3:41 pm
Josh B (1/21/2010)
The Metrodome has to be at the top of the worst places to watch a game list...not sad to see the Twins move at all....
I've been to the...
January 26, 2010 at 3:25 pm
Lynn Pettis (1/26/2010)
Ray K (1/26/2010)
Alas, I don't have as much SQL experience as many of you...
January 26, 2010 at 3:12 pm
Ray K (1/26/2010)
Here's the sample data:create table #test1 (tdate date)
go
create table #test2 (fdate...
January 26, 2010 at 3:04 pm
Jack Corbett (1/26/2010)
Ray K (1/26/2010)
Lynn Pettis (1/26/2010)
Alvin Ramard (1/26/2010)
Alvin Ramard (1/26/2010)
Alvin Ramard (1/26/2010)
I cou'dn't resist in this one as the OP did not ask a question. 😎http://www.sqlservercentral.com/Forums/Topic853917-392-1.aspx?Update=1
Edit: Oops,...
January 26, 2010 at 2:55 pm
Wow, three people posted samples simultaneously. That's gotta be some kind of record! 😀
January 26, 2010 at 2:36 pm
Viewing 15 posts - 2,611 through 2,625 (of 2,766 total)