Viewing 15 posts - 1 through 15 (of 39 total)
DECLARE @XML XML;
SET @XML = '<?xml version=''1.0'' encoding=''UTF-8'' standalone=''yes'' ?>
<!--File Created By SMS Backup & Restore v8.20.27 on 03/06/2017 17:19:03-->
<?xml-stylesheet type="text/xsl" href="sms.xsl"?>
<smses count="3"...
June 9, 2017 at 7:22 am
Microsoft are aware and bug closed - "as by design" https://connect.microsoft.com/SQLServer/feedback/details/778069/default-datafile-settings-not-applied
August 30, 2016 at 6:08 am
https://www.mssqltips.com/sqlservertip/3076/how-to-read-the-sql-server-database-transaction-log/[/url]
August 30, 2016 at 3:34 am
Have you checked network in between both servers? Are they on the same SAN? Anything obvious in SQL error logs?
August 30, 2016 at 3:32 am
Just create a powershell script to connect to your DB and schedule it to run every X seconds and email you if it fails.
June 17, 2016 at 7:31 am
June 14, 2016 at 5:14 am
Same datatypes on columns?
June 13, 2016 at 4:28 am
You can try some of the 3rd party tools that allow you to attach database backups and work with them as with live databases. You can try SQL Virtual Restore...
June 10, 2016 at 7:22 am
Could you create a trigger to capture deletes and insert to your audit table?
June 10, 2016 at 7:21 am
Not in SQL server - this guy needs to speak to his host to see if there is any connection limit to his "app pool"/server
June 7, 2016 at 7:53 am
Modify this powershell script to loop through an array of servers and then db list.
$SQLAdminUser = 'AdminUser'
$SQLAdminPwd = get-content "PathToSecuredCredentials.txt" | convertto-securestring
$srvConn = New-Object('Microsoft.SqlServer.Management.Common.ServerConnection') ('ServerName', $SQLAdminUser, $SQLAdminPwd)
$srv = New-Object...
June 1, 2016 at 10:39 am
Did you duplicate your installation if so generate a new SID.
June 1, 2016 at 10:25 am
Viewing 15 posts - 1 through 15 (of 39 total)