- 
Auditing: Change Data Capture(CDC)Overview: Change Data Capture, also known as CDC, introduced the first time in SQL Server 2008 version. Change data capture records insert, update, and delete activity… // 
- 
Ghost RecordsWhen any record get deleted from DB, SQL Server does not delete the records physically from disk immediately. The deleted records which exists physically in… // 
- 
Provisioning a First Azure SQL DatabaseIn this section, we’ll learn: Provisioning Azure SQL database: Provisioning an Azure SQL database refer to creating a new and blank Azure SQL database. We’ll create new… // 
- 
Moving A Table Data Into New Location Within DatabaseProblem I often getting low disk space alert from one of my data drive. Adding space on the disk was not possible because of hard… // 
- 
Cloud Witness in AzureCloud Witness is a type of Fail-over Cluster quorum witness that uses Microsoft Azure to provide a vote on cluster quorum. There are significant benefits which… // 
- 
Provisioning a SQL Managed Instance Using the Azure PortalAzure SQL Managed Instance is intelligent, scalable cloud database service. SQL Managed Instance allows existing SQL Server customers to lift and shift their on-premises applications to… // 
- 
Connect to SQL Managed Instance from an on-premises client computer by using a point-to-site connectionIn this section, you will learn how to connect SQL managed instance from an on-premises client computer by using a “point-to-site” connection. Point-to-Site VPN connections are useful when… // 
- 
DBCC (Database Console Command) CommandsIt’s a common question of DBA interview. I already have faced millions of time. HaHa Ha. DBCC is a series of statements in Transact-SQL programming… // 
- 
Export one table from one MySQL instance to other MySQL instanceSyntax Export one table: $ mysqldump -u root -p database_name table_name > dump.txt password ***** Import one table: $ mysqldump -u root -p database_name table_name… // 
- 
InnoDB ArchitectureBuffer Pool In MySQL, buffer pool is an area in main memory where InnoDB caches table and index data as it is accessed. The buffer pool permits… // 
- 
PostgreSQL Backuppg_basebackup is used to take base backups of a running PostgreSQL database cluster. We can take hot-backup and the backup can be used for… 1. point-in-time… // 
