Viewing 15 posts - 5,746 through 5,760 (of 22,211 total)
RPC Completed and SQL Batch Completed should be enough. The columns you listed sound good too.
August 9, 2015 at 5:42 am
I can't find anything specific in the documentation. The step_id value is an INT though, so that implies a limit there. However, I sure wouldn't suggest you create a job...
August 7, 2015 at 12:05 pm
It sure sounds like something related to parameter sniffing. Possibly it's data conversions? You're showing passing a string in one and a datetime in the one with the variable. What's...
August 7, 2015 at 11:56 am
Another vote for Minion Reindex. Absolutely worth checking out for maintaining your indexes.
August 7, 2015 at 10:36 am
That's odd behavior. Have you looked at the execution plans for both calls, the hard coded value and the variable? I'd be curious if there was a difference. I wouldn't...
August 7, 2015 at 10:34 am
Without seeing the execution plans, I'm just guessing.
First guess, these are different columns with different data and different data distributions. That's likely to result in differences in behavior. Another guess,...
August 7, 2015 at 8:57 am
Everything Eddie said is 100% correct (of course).
One concern that you should have though, if the recovery model were changed at any point, that effectively breaks the log backup chain...
August 7, 2015 at 8:51 am
j-1064772 (8/7/2015)
Move to the top, before any DML the following:[/font]
[font="Courier New"]CREATE TABLE #results(...[/font]
[font="Comic Sans...
August 7, 2015 at 8:13 am
VERIFYONLY is a good test of a backup. However, it's an incomplete test. For it to be more complete, you must use CHECKSUM when you take the backup. Then the...
August 7, 2015 at 7:25 am
JaybeeSQL (8/7/2015)
GilaMonster (8/6/2015)
Replay isn't to monitor the effects of the load, it's to generate that load against a test server. You could...
August 7, 2015 at 7:23 am
The main issue is that you'll be slowing down performance of INSERT/UPDATE/DELETE queries to maintain all your indexes. The "too many" label can be hard to define. If you need,...
August 7, 2015 at 4:27 am
sqlguy-736318 (8/6/2015)
Can you describe any specific scenarios where not having the "go" keyword will cause the SSMS batch to fail?
Let's say you have a script that creates two stored procedures....
August 7, 2015 at 4:24 am
This is really straight forward. You can use the RESTORE command and provide a new name. You just have to use the WITH MOVE options of the command in order...
August 7, 2015 at 4:22 am
Jeff Moden (8/6/2015)
August 7, 2015 at 3:57 am
GilaMonster (8/6/2015)
Replay isn't to monitor the effects of the load, it's to generate that load against a test server. You could use...
August 6, 2015 at 7:22 am
Viewing 15 posts - 5,746 through 5,760 (of 22,211 total)