Viewing 15 posts - 53,521 through 53,535 (of 59,065 total)
David,
Now, be gentle with me... just now starting to get my feet wet on 2k5... 😉
...since the following two queries return the identical result set, why did you include "STUFF"...
December 18, 2007 at 4:44 pm
Unlike Oracle or other RDBMS's, you can do this in SQL Server...
UPDATE CEM_smcsAssignments
SET MGR = a.MGR
FROM #ADD a,
...
December 18, 2007 at 3:47 pm
Why might using a parameter slow down a basic report?
Dunno about most of your problems (although sub-queries could be a huge problem if they are actually correlated subqueries), but some...
December 18, 2007 at 3:43 pm
Are any of the items in the FROM clause actually views instead of tables?
December 18, 2007 at 3:05 pm
I want to create a function for which I pass ID, placeholder, type; it should give me a concatenated names.
Why? Basically, this is a form of "Death-by-SQL"... where are...
December 18, 2007 at 3:02 pm
You don't really want to have it reclaim space automatically... causes too much fragmentation over time...
You need to find out what's making it grow to 42Gig... that's step 1...
December 18, 2007 at 2:55 pm
10 hours to 15 minutes? Heh... I like SELECT/INTO a lot but I've not seen that type of performance gain just by switching like that before... Are you sure...
December 18, 2007 at 2:52 pm
I load flat files that have many different row types. Fortunately, they're identified by a key in the file. I just load the whole shootin' match into a...
December 18, 2007 at 2:45 pm
Was it sitting at 42GB a week ago with only .5% used as it was this morning? If so, I think you could probably safely shrink the log file...
December 18, 2007 at 12:36 pm
What is the datatype of the JobDate column and what does the ChangeDate function return as a datatype?
December 18, 2007 at 11:20 am
Jeff - it's a sequential file setup. look at the multiple segments (1 relates to the next "2" by previous.col3=current.col2).
Heh... I'm getting old... I was looking at trying to...
December 18, 2007 at 11:14 am
Mindy, the problem is that you have the data stored in a CHAR(32)... trailing blanks come into play there. Either change the column to a VARCHAR(32) or modify my...
December 18, 2007 at 10:41 am
jeff ...there is no other go, i want ot use only dynamic sql
Heh... you must not have looked because I gave you dynamic SQL. 😉
December 18, 2007 at 10:29 am
Sorry... not seeing the pattern here between the inputs and the desired output... would you explain how you want the concatenation formed better, please? Also, see the following if...
December 18, 2007 at 9:58 am
Viewing 15 posts - 53,521 through 53,535 (of 59,065 total)