About Availability Groups Database Seeding
This post will serve to describe all things regarding adding databases and trouble-shooting issues with Availability Groups Availability Group Direct Seeding: How to…
Read MoreThis post will serve to describe all things regarding adding databases and trouble-shooting issues with Availability Groups Availability Group Direct Seeding: How to…
Read MoreThis post will be fore the purpose of documenting all my findings regarding Collations in SQL Server, including changing the collation on an…
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 MoreHere are a few things to remember when working with Availability Groups: Backup and Restore NOTE: Using the Recovery Advisor GUI in SSMS…
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 More