Viewing 15 posts - 8,926 through 8,940 (of 10,144 total)
Grant Fritchey (1/9/2009)
January 9, 2009 at 5:52 am
There are several ways of doing this. Can you explain a little more about the problem? For instance, how often do you want to do this? How large are the...
January 9, 2009 at 4:01 am
Performance will improve using UNION ALL, as you mention in your first post. Of course, always test first.
January 9, 2009 at 3:50 am
SELECT your column-delimited list of columns here
FROM yourtable
There isn't an easy way to do this, Lee. It can be done by gathering the column list for your table from syscolumns...
January 9, 2009 at 3:47 am
Hi Eddy, thanks for your kind words.
As for there was nothing faster than index seeks - in this case it's difficult to compare the original query with the new...
January 9, 2009 at 2:38 am
This should fix the problem - but without any data to test against, it's hard to tell..
[font="Courier New"]SELECT DISTINCT b.BranchName + ', ' + CONVERT(VARCHAR, na.WeekEndingDate, 101) AS [Member Firm],...
January 9, 2009 at 2:29 am
RBarryYoung (1/8/2009)
Also, as to the representation of date constants, here is...
January 8, 2009 at 3:13 pm
stricknyn (1/8/2009)
Ok this is weird. When I run the statement below it is returning 1. Can someone explain to me why this is returning 1?
select datediff(year, '2008-01-09...
January 8, 2009 at 2:20 pm
rosyshrestha7 (1/8/2009)
Timclosestatus is column name come from table
Come from table how? Please post the entire stored procedure.
January 8, 2009 at 12:49 pm
RBarryYoung (1/8/2009)
Chris Morris (1/8/2009)
The last statement is a SELECT * from the table it builds.
Does this statement have the locking hint NOLOCK?
Heh, that was going to be my next question...
January 8, 2009 at 10:15 am
The last statement is a SELECT * from the table it builds.
Does this statement have the locking hint NOLOCK?
January 8, 2009 at 10:07 am
rsteeves (1/8/2009)
January 8, 2009 at 9:56 am
Garadin (1/8/2009)
Chris Morris (1/8/2009)
Garadin (1/8/2009)
Think I just found a fitting avatar for myself for that matter.Isn't that Muffin?
My turn to Google! Never heard of Muffin the Mule before... but...
January 8, 2009 at 9:24 am
Garadin (1/8/2009)
January 8, 2009 at 9:19 am
Lynn Pettis (1/8/2009)
hmmm, avatar I too have found
Gits unite old, yes!
January 8, 2009 at 9:15 am
Viewing 15 posts - 8,926 through 8,940 (of 10,144 total)