Viewing 15 posts - 10,126 through 10,140 (of 14,953 total)
I doubt I'd use a list of threads originated. I tend to try to help if I think I can, regardless of past circumstances. I most certainly don't...
April 6, 2009 at 3:17 pm
Order of columns in Group By doesn't matter. Presense or absense, yes; order, no.
April 6, 2009 at 2:50 pm
steve dassin (4/6/2009)
Sergiy (4/6/2009)
steve dassin (4/5/2009)
getting sql folks to get their head out of what is essentially a 'constant' (an sql table) and into something that is variable.
Such a...
April 6, 2009 at 2:38 pm
The conditions you're asking about are the ones I included in the Case statement. Those tests will accomplish the same thing as all the various left joins and unions...
April 6, 2009 at 2:26 pm
Try this, tell me if the function works any better this way than the way it's currently built. I can't test this, since I don't have all the table...
April 6, 2009 at 12:34 pm
It would be very helpful if you posted the create scripts for the tables the function references, and insert statements for some sample data for each of those. That...
April 6, 2009 at 9:51 am
I don't build my queries that way, so I've not seen that. I just type them out myself. I've had so many problems with the graphical query designer...
April 6, 2009 at 9:02 am
Jeff Moden (4/6/2009)
http://www.sqlservercentral.com/Forums/Topic688949-8-1.aspx
My answer would have been... "Thanks for the setup code... please post the code that you've tried so far so we can point you in...
April 6, 2009 at 9:00 am
If I understand what you need, here's an example that seems to work:
-- Set up test data
create table #T (
ID int identity primary key,
Col1 varchar(100),
Col2 int,
Col3 datetime,
Col4 datetime,
Col5 int);
insert into...
April 6, 2009 at 8:55 am
Jack Corbett (4/6/2009)
April 6, 2009 at 8:40 am
I try to set a relatively low threshold for what I expect from a question before I'll try to answer it. Or, to put it another way, I try...
April 6, 2009 at 8:31 am
If you had a situation where data updates (insert/update/delete) were supposed to have a specific result if done at a certain time, then a trigger with a "run at this...
April 6, 2009 at 8:22 am
I wouldn't have been able to answer the question about a Halloween Problem. Never heard of it till just now in this thread.
If it had come up in an...
April 6, 2009 at 8:17 am
There are plenty of rules that "must be followed" every time. Most of them are the ones built into the language.
There are a few that I follow with tremendous...
April 6, 2009 at 7:28 am
Chris, on the case-statement version, running on the same hardware as the prior tests, took 8:59 (nearly 9 minutes) the first run, 8:54 the second.
April 6, 2009 at 7:22 am
Viewing 15 posts - 10,126 through 10,140 (of 14,953 total)