PostgreSQL vs. SQL Server Notes
This blog will be where I post my PostgreSQL administration learning and it’s comparison to SQL Server from a SQL Server DBA’s viewpoint.…
Read MoreThis blog will be where I post my PostgreSQL administration learning and it’s comparison to SQL Server from a SQL Server DBA’s viewpoint.…
Read MoreI recently needed to replace the older, slower attached disks on our clustered SQL instance offline so as to copy each drive to…
Read MoreHere are the steps to build at SQL Server 2017 AlwaysOn Availability Group. We will be using Windows 2016 Standard 64-bit for the…
Read MoreKevin Kline posted on wait states here with some valuable insight: TROUBLESHOOTING SQL SERVER WAIT STATS A number of these are from Adam…
Read MoreThe TUF files you see in the ..\DATA folder is a “transaction undo file” which contains modifications to the database that were not…
Read MoreThe easiest way to bulk-copy all SQL Agent jobs to a new server is to follow these steps 1. Load SSMS and connect…
Read MoreHere is a sample script for configuring database mail in the event you want to automate your SQL installs.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
EXEC sys.sp_configure 'Advanced options', 1; RECONFIGURE EXEC sys.sp_configure; USE msdb GO --Step1: Varifying the new profile SELECT * FROM sysmail_profile --Step2: Verifying accounts SELECT * FROM sysmail_account --Step3: To check the accounts of a profile SELECT * FROM sysmail_profileaccount WHERE profile_id = 3 --Step4: To display mail server details SELECT * FROM sysmail_server select * FROM sysmail_allitems |
…
Read MoreI had a situation where a SQL Server 2016 install did not install correctly. The install completed but when I tried to move…
Read MoreThere is no excerpt because this is a protected post.
Read MoreYou can view the status of a KILL command used to stop an open transaction by typing the following:
1 |
KILL [SPID] WITH STATUSONLY |
Views – 1097
Read More