Viewing 15 posts - 2,626 through 2,640 (of 6,679 total)
This does not look like a Microsoft Failover Cluster configuration.
The file system on those files make me suspect you are using some type of clustering file system that allows access...
December 14, 2016 at 12:31 pm
You cannot have a local drive defined as a share in the cluster. You need to create a new drive - add that drive to the cluster - then...
December 13, 2016 at 4:10 pm
Declare @sqlCommand nvarchar(max)
, @recipients varchar(max) = '{your email address here}';
Declare @body nvarchar(max) = 'This File created on: ' + convert(char(10), @startDate, 121);
...
December 12, 2016 at 2:12 pm
SQL Server Data Tools is a freely available download for SQL Server - you don't need Integration Services to create and execute packages within the development tool.
You do need Integration...
December 12, 2016 at 11:41 am
patilpallavi16 (9/13/2016)
I just gave...
September 13, 2016 at 1:48 pm
When you run a batch file - or powershell script - from the task scheduler you have to identify what account the task scheduler job will use. This needs...
September 13, 2016 at 1:34 pm
If you setup a read-only replica in an Availability Group - you will also have orphaned users in the databases that are setup for read-only access. For windows users...
July 21, 2016 at 1:24 pm
SQL Server Agent should be using Database Mail - which uses sp_send_dbmail. You don't need to intercept anything...instead of checking the box to notify the operators, you just create...
May 2, 2016 at 11:37 am
If your SAN is a Compellent - and you are backing up to the same file, then it could be that file is getting dropped to the lowest tier on...
May 2, 2016 at 11:33 am
Hugo Kornelis (3/2/2016)
That tool is specifically built...
March 2, 2016 at 1:15 pm
If your log has stabilized at 3GB - and was grown out in 512MB chunks - I don't see any problems here that need to be addressed. You have...
February 26, 2016 at 1:28 pm
You need to run an integrity check on that database:
DBCC CHECKDB(ETL) WITH NO_INFOMSGS, ALL_ERRORMSGS;
Review the results (and post the errors here if needed) to figure out what your next options...
November 19, 2015 at 11:44 am
If your network latency between prod and UAT is too high - the restore process could fail, not to mention the fact that you will be using the network on...
November 17, 2015 at 12:34 pm
This can somewhat be automated using SQLCMD or Powershell. If you can setup contained databases it is much easier to just create the user in the database and let...
January 26, 2015 at 1:12 pm
One advantage of the third-party tools is the ability to stripe the backups into a single-compressed file. Striping this way can reduce the time it takes to actually perform...
January 26, 2015 at 12:56 pm
Viewing 15 posts - 2,626 through 2,640 (of 6,679 total)