Viewing 15 posts - 8,491 through 8,505 (of 22,214 total)
A UNION statement is an aggregation, so, unless you're doing UNION ALL, it's not the sum of the three queries, but the aggregation of the three. Check the execution plan...
April 1, 2014 at 4:41 am
You can specify a stop time for a trace. So you just need the job to start it and then it will run until the @stoptime property. You can read...
April 1, 2014 at 4:37 am
Those are waits related primarily to disk. Are you backing up across the network? Otherwise, I'd focus right on the disk to see what issues there might be there.
April 1, 2014 at 4:34 am
WHOOP! Can't wait to use the robot for presentations.
"ASK A QUESTION! YOU HAVE 10 SECONDS TO COMPLY. 3.... 2.... 1...."
April 1, 2014 at 4:27 am
GilaMonster (4/1/2014)
Ok..."The language is expressive, easily readable and values explicitness. Abbreviations and corrupted spelling should be avoided in variable names"
and the string data type is 'str'
<snicker>
April 1, 2014 at 4:22 am
I've never seen SSMS by itself cause any issues and I've left it open for days at a time.
March 31, 2014 at 4:14 pm
Ummm... You might not want to move to working as a DBA if network admin was stressful. DBA work becomes hyper-stressful. Think about it, one of the single most important...
March 31, 2014 at 4:13 pm
New Born DBA (3/31/2014)
Thanks everybody for replying. Can I use import export utility? Just asking.
This will put more load on the production system than using the backup and restore process.
March 31, 2014 at 11:58 am
Even if you do tests to determine an approximate run time, you can still hit resource contention or blocking issues that cause that time to change. This is a tough...
March 31, 2014 at 5:45 am
Partitioning is not primarily a performance tuning mechanism. It is primarily a data management mechanism. There are cases where you can get performance improvements, but you need to remember that...
March 31, 2014 at 5:33 am
The only suggestion I had for the higher versions of SQL Server is that you could use the ROW_NUMBER to break up the deletes into smaller groups. You still have...
March 30, 2014 at 2:26 pm
Nope. You got it. If you're inserting to a table with a clustered index, it's inserting into the clustered index. That event, by itself, is absolutely not a performance problem.
March 28, 2014 at 1:26 pm
A clustered index stores the data. So when you run a delete statement, it goes to the clustered index to delete the data. That's how it works.
March 28, 2014 at 12:23 pm
As I said before, your choices in 2000 are more limited. Filter the data on additional criteria to reduce the batch size so you're deleting in smaller chunks and providing...
March 28, 2014 at 12:12 pm
Steve Jones - SSC Editor (3/28/2014)
GilaMonster (3/28/2014)
Ed Wagner (3/28/2014)
Grant - You have booth babes??? :w00t:Grant *is* the booth 'babe' 🙂
What am I?
We're still working on that.
March 28, 2014 at 11:01 am
Viewing 15 posts - 8,491 through 8,505 (of 22,214 total)