Viewing 11 posts - 1 through 11 (of 11 total)
Earlier today, I was struggling to diagnose a T-SQL job that selects info from a master db table and sends them to an email. I kept getting SELECT permission issues...
November 11, 2016 at 12:59 pm
You can ignore anything under 1000 pages because performance won't be as greatly impacted. Understanding what fragmentation is will help you see why this is so, but basically its because...
September 29, 2016 at 12:16 pm
MSDN has instructions on how to do just that:
September 21, 2016 at 3:58 pm
You can use:
SELECT job_id, [name] FROM msdb.dbo.sysjobs;
on each server.
September 21, 2016 at 11:53 am
There are a couple of requirements for a WSFC one of which is a minimum of Windows Server 08 Enterprise or Windows Server 2012 Standard.
- Windows Server...
September 14, 2016 at 7:59 am
I just finished doing something similar with a co-worker yesterday. We used sp_WhoIsActive to find locks with
...
September 14, 2016 at 7:45 am
You can just move them from the HDD to the SSD. Make sure you move the MDF, LDF, & any NDF (if you have any filegroups or other secondary files...
September 5, 2016 at 7:50 am
You can create a trigger to do exactly that.
See this link:
There was also a thread on this same website answering this:
http://www.sqlservercentral.com/Forums/Topic1071980-1550-1.aspx
August 31, 2016 at 1:24 pm
Why don't you just create a job that'll drop them on the dates you specify?
August 4, 2016 at 9:54 am
Viewing 11 posts - 1 through 11 (of 11 total)