Viewing 15 posts - 9,136 through 9,150 (of 22,214 total)
I was thinking it could be parallel processes. That would show why you couldn't see the statement and plan on all of them.
January 4, 2014 at 3:20 am
SELECT queries alone will not cause deadlocks. There has to be data modification queries built in there somewhere.
January 4, 2014 at 3:19 am
Do you notice if there are other entrees for the same session_id?
January 3, 2014 at 9:57 am
The deadlock is probably being caused by multiple slow points, not just the select statement. I'd suggest getting the execution plans for the two queries involved in the deadlock and...
January 3, 2014 at 9:57 am
ramana3327 (1/3/2014)
Thanks for the replies.
I am able to create a user defined data collector from a template or create a custom collection but I am not able define this...
January 3, 2014 at 7:39 am
Yeah, same space. At least it should be.
January 3, 2014 at 7:37 am
If you feel like your log files are getting too large, you probably should take the backups more frequently. But, that will mean you have to manage more backup files...
January 3, 2014 at 7:02 am
If your needs are small, I'd go with CDC. It's easy to set up. Easy to maintain. No worries, especially on a small system as you say you have here.
January 3, 2014 at 5:16 am
And also, if you drop and recreate the indexes, that also defrags them.
January 3, 2014 at 5:14 am
You just want to access SQL Server and look at the data, but you don't want to write any T-SQL code? None of the standard management tools can do this...
January 3, 2014 at 5:04 am
It's a connectivity error from distributed replay. You approach it the same way you do any connectivity error. What login is it attempting to use? Does that login have access...
January 3, 2014 at 5:00 am
There are lots of examples right here on the site. Just do a search for xp_cmdshell and zip.
Here's one example here. And another. And one more[/url]. There are still others...
January 3, 2014 at 4:57 am
I'm with Jeffrey. You could use detach to unlink the databases from your server, then load them to the FTP server, then the other party can download and attach the...
January 2, 2014 at 4:13 pm
I'm assuming we're talking Performance Monitor. The best way to collect the data is not to use the GUI that lets you look through the data. Instead, in the GUI,...
January 2, 2014 at 9:35 am
In general, CDC is a good way to track data changes over time. It does add overhead to the system, but it has fairly reliable performance. Whereas, you have to...
January 2, 2014 at 7:37 am
Viewing 15 posts - 9,136 through 9,150 (of 22,214 total)