Viewing 15 posts - 7,891 through 7,905 (of 22,214 total)
Nope, the Agent doesn't do the backups, the SQL Server executable and service does. That needs the permissions.
June 25, 2014 at 6:38 am
So to test it, try something like:
--run this in one query window
BEGIN TRAN
UPDATE TableX
SET ColA = 'SomeValue'
WHERE ColA = 'SomeOtherValue'
--ROLLBACK TRAN
--run this in a second query window
BEGIN TRAN
UPDATE TableX
SET ColA...
June 25, 2014 at 6:31 am
I wouldn't say polling is bad, no. Not at all. It's one way to get things done. How you poll, where you poll, how often you poll, those are the...
June 25, 2014 at 6:28 am
June 25, 2014 at 5:59 am
It does sound like you're confusing deadlocks with blocks. A blocking situation occurs when one process is waiting for another process to release a lock. By default in SQL Server,...
June 25, 2014 at 5:46 am
I wrote an article [/url]a while back here on SQL Server Central that covers a lot of the questions here.
June 25, 2014 at 5:33 am
You do need to monitor the amount of space taken up by the log. You should also monitor disk space in the space where the index is stored and in...
June 25, 2014 at 5:31 am
I'd double check the security for the account that's running SQL Server. The error you're getting is a security error. It doesn't sound like that account has the correct privileges.
June 25, 2014 at 4:04 am
It does depend on what we're talking about when we say functions. If you're talking in-line table functions or multi-statement table valued functions that are created within SQL Server, then...
June 25, 2014 at 4:01 am
To investigate why you're getting recompiles, I'd put extended events on the server. You can capture the recompile event and it tells you specifically why it was recompiling. You can...
June 25, 2014 at 3:57 am
Hard to completely understand what you're going for, but it actually sounds like a many to many relationship, not one to many. In this case, I'd have TableA which is...
June 25, 2014 at 3:54 am
As much as you can, I'd try to keep any queries against the SQL database up in the Azure cloud. Any, regardless of if you write them or you use...
June 24, 2014 at 8:55 pm
tcronin 95651 (6/24/2014)
June 24, 2014 at 8:54 pm
I wouldn't want to simultaneously build a cluster while upgrading a server with databases in place. Way too many things can go wrong there. I'd prefer to build a cluster...
June 24, 2014 at 7:51 am
Viewing 15 posts - 7,891 through 7,905 (of 22,214 total)