About SQL Server Versions

Introduction I always very much confused about SQL Server Versions. To check the SQL Server version by TSQL we may run below script. Script 01 SELECT @@VERSION AS ‘SQL Server Version’, SERVERPROPERTY (‘productlevel’) as Product Level Result SQL Server Version…

Read More →
MSSQL Frequently Asked Questions

SQL Server DBA Frequently Asked Questions

What is RDBMS? Relational Database Management Systems (RDBMS) are database management systems that maintain data records and indices in tables. Relationships may be created and maintained across and among the data and tables. In a relational database, relationships between data items…

Read More →
TSQL Commands

Important & Handy TSQL Commands

Space Management TSQL Commands 1)sp_spaceused2)dbcc sqlperf(logspace)3)xp_fixeddrives Information TSQL Commands 1) sp_helpdb2) select db_id(‘DBName’)3) select db_name(DBID)4) select * from sys.dm_exec_sessions, dm_exec_connections5) select * from sys.databases6) select * from sys.database_files Monitoring TSQL Commands 1) sp_who22) select * from sys.dm_exec_requests where session_id>503) DBCC…

Read More →

SQL Server Log shipping

What is LOG SHIPPING in SQL Server DBA? Log shipping: Shipping of transaction log files from the primary server database to second server database to get both database in continuous synchronization. It is a continuous process in the form of…

Read More →