Viewing 15 posts - 55,096 through 55,110 (of 59,078 total)
Ah... got it... had to go back and look... Serqiy is correct and I'll throw in that you may not ever want to pass date serial numbers between products... Best...
September 10, 2007 at 9:29 pm
Yep... accidental cross join... tell me where the join criteria is for the "sy" table alias...
SELECT D1.stu_sid, D1.stu_id, Min(D1.Entry_Date) as Entry_Date, Case MAX(D2.Exit_Date) When '01/01/2900' then null Else MAX(D2.Exit_Date) end ...
September 10, 2007 at 6:15 pm
Ummm... I gotta agree with that... tampering with server settings without knowing the full ramifications of each setting is nearly certain death for the server. I'd get some qualified help...
September 10, 2007 at 6:03 pm
Cool Kurt... wanna share your SQL code on this? ![]()
September 10, 2007 at 5:37 pm
You really need to look at a good calendar for the year 2002...
2002-05-03 is a Friday... count 1 day
There are 4 full weeks after that up to 2005-05-31... count...
September 10, 2007 at 5:36 pm
My pleasure... thank you for the feedback.
September 10, 2007 at 5:10 pm
I think you're asking for trouble by converting to decimal... but it's your data...
You can build a couple of functions from the following example...
DECLARE @IPAddress VARCHAR(15) SET @IPAddress = '5.152.61.94' DECLARE...
September 10, 2007 at 4:59 pm
Ummm.... you need to identify to us what makes a "duplicate" and, perhaps, post the DDL for the table where the dupes exist. Elimination of duplicates is not difficult but...
September 10, 2007 at 4:34 pm
Wow... been there and done that... Glad to see you got a got DBA for a change. ![]()
September 10, 2007 at 2:43 pm
Yep... you've got it... just wanted to make sure ![]()
September 10, 2007 at 2:39 pm
And, selecting more columns than you need may also cause high speed INDEX SEEKs to change to mere INDEX SCANs, not to methion the additional network traffic that selecting more...
September 10, 2007 at 2:30 pm
Too bad that SET XML_SHOWPLAN ON doesn't work in SQL Server 2000, eh?
September 10, 2007 at 2:26 pm
You really want to learn? The best way to learn is to get good enough to teach. The only way to do that is to practice. The best way to...
September 10, 2007 at 12:05 am
First, thank you for the high compliment.
The thing that makes it "set based" is the fact that only the effect on a column was considered. Yes, it appears that a...
September 9, 2007 at 11:57 pm
Viewing 15 posts - 55,096 through 55,110 (of 59,078 total)