Some of my DPM Backups on a new 2012 box were failing with the error The fix can be found here and is pretty straight forward. Add the account NT_AUTHORITY\System to have sysadmin priviledges within SSMS. Once added you should receive no more …
Tag Archives: SQL
SQL 2012 DPM Backup Failure – The SQL Server instance refused the connection
Posted by dave on May 6, 2013
No comments
Cannot insert explicit value for identity column in table when IDENTITY_INSERT is set to OFF
Posted by dave on June 20, 2012
No comments
IIS ODBC SQL Logging
Posted by dave on January 23, 2012
No comments
web.config Connection String Monitoring with PRTG Network Monitor
Posted by dave on December 5, 2011
1 comment
External MS SQL Database User Authentication with Moodle
Posted by dave on November 25, 2011
No comments
Modifying SQL Server Memory Usage
Posted by dave on October 1, 2011
No comments
SQL Backup and Restore Commands
Posted by dave on July 22, 2011
No comments
Enabling xp_cmdshell in SQL Server 2008
Posted by dave on July 19, 2011
No comments
Another snippet (Originally here):
|
1 2 3 4 5 6 7 8 9 10 11 12 |
-- To allow advanced options to be changed. EXEC sp_configure 'show advanced options', 1 GO -- To update the currently configured value for advanced options. RECONFIGURE GO -- To enable the feature. EXEC sp_configure 'xp_cmdshell', 1 GO -- To update the currently configured value for this feature. RECONFIGURE GO |
Migrating Reporting Services from SQL 2005 to 2008
Posted by dave on July 13, 2011
3 comments