Viewing 15 posts - 8,491 through 8,505 (of 9,641 total)
Who is your audience for the presentation?
What is the expected outcome from the presentation? For example, are you supposed to be justifying time spent, presenting a case for training so...
June 4, 2008 at 8:25 am
Glad I could be of some help. Can you post what you did? I might learn something from that.
June 3, 2008 at 9:28 am
Some things to look for short of a profiler trace can be found using sp_who and sp_who2 which will show active processes and blocking, sp_lock which will show locks held,...
June 2, 2008 at 8:49 pm
',' is not found in the string so charindex()-1 is returning -1 which is an invalid length.
June 2, 2008 at 8:44 pm
I don't know for sure, but I think you would need SQL Enterprise Edition and then do a "virtual cluster". I'm not sure how much you would gain from...
June 2, 2008 at 8:32 pm
I doubt it was profiler only, but it certainly does add to the load. Have you checked for blocking\locking particularly in tempdb.
June 2, 2008 at 8:25 pm
I think you want sysfiles.
June 2, 2008 at 8:09 pm
Don't know how to or if you can do it. The question really is "Why do you need to do it?" There is a probably a set based...
June 2, 2008 at 7:54 pm
Not sure what exactly you are are looking for, and based on lack of response, I'm not the only one, but based on my understanding you should be able to...
June 2, 2008 at 7:49 pm
Jeff Moden (5/30/2008)
First, I think I'd use UNION ALL... considering the source tables, there's probably not much chance of duplication, anyway....
I considered mentioning UNION ALL as well, but I assumed...
June 2, 2008 at 11:29 am
Michael,
I don't know why you are getting the error, unless you changed the index name? Here is a feeble attempt to "duplicate" your code in a minimal manner that...
June 2, 2008 at 8:47 am
Michael,
I don't know why SQL Server treats them differently, but changing my code to use a specifically named primary key constraint does cause the error, but using the Create Unique...
June 2, 2008 at 7:12 am
Check to see if the Databases have the autoclose option is on.
Select DATABASEPROPERTYEX('model', 'IsAutoClose')
May 30, 2008 at 7:31 pm
Viewing 15 posts - 8,491 through 8,505 (of 9,641 total)