Viewing 15 posts - 14,461 through 14,475 (of 14,953 total)
Profiler is usually the way to go on this kind of thing.
If what you're doing is some sort of audit data and it will need to run indefinitely, then adding...
March 27, 2008 at 2:13 pm
The first question is: Are you the only person currently adding data to these tables?
If so, my second question is: Can you find a range of viable PK values, include...
March 27, 2008 at 2:09 pm
If there are indexes other than the primary key on any of the tables, you might try disabling those indexes before the delete and then rebuilding them afterwards. Books...
March 27, 2008 at 2:04 pm
You can do this:
Order By
Case
When Priority = 'High' then 0
When Priority = 'Medium' then 1
When Priority = 'Low' then 2
End
That should get you what you need. Might be...
March 27, 2008 at 1:58 pm
Another current discussion that might have what you need is:
http://www.sqlservercentral.com/Forums/Topic474876-361-1.aspx
Is that what you're looking for?
March 27, 2008 at 12:20 pm
Clever. I like it. This'll come in useful to me on the project I'm doing next week. Thanks.
March 27, 2008 at 10:58 am
john g (3/27/2008)
Would it be difficult for MS to give the option whether or not to allow other windows to grab context from the current one?
Back in the...
March 27, 2008 at 8:43 am
Yeah, the audit features in '08 look pretty useful.
March 27, 2008 at 8:40 am
rbarryyoung (3/26/2008)
March 27, 2008 at 8:31 am
You're welcome.
I'd go with a proc for the final select, instead of a view. Then you can use input parameters. But basically, yeah, that should do it.
March 27, 2008 at 8:21 am
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
Has the feature comparisons for the various editions of SQL 2005.
March 27, 2008 at 8:19 am
Harveysburger (3/26/2008)
Red Hat ...
did you mean Red Gate?
Yes. (Here I am, with their logo staring me in the face as I type these things, and I still managed to...
March 26, 2008 at 3:12 pm
Shaun McGuile (3/26/2008)
This is Windows! (Kick the unlucky person into the big pit!) It's...
March 26, 2008 at 12:10 pm
Matt Miller (3/26/2008)
richardd (3/26/2008)
If you have 2000 SP3 or XP SP1 or...
March 26, 2008 at 11:52 am
Viewing 15 posts - 14,461 through 14,475 (of 14,953 total)