-
Extended Security Updates for SQL 2008
22 December 2019How to get SQL Extended Security Updates for SQL 2008/2008 R2 database instance. The End of Support date for SQL Server 2008 and 2008 R2 is July 9, 2019 Extended…
-
Change ‘TempDB’ file location in SQL Server
18 December 2019Introduction The TempDB database is essential to SQL Server’s management of temporary data and execution of different tasks. The TempDB files are often kept on the same disc as the…
-
Determine or Estimated time (ETA) of Backup & Restoration
4 December 2019As a DBA you may face a few common questions whenever someone accidentally deleted some database objects or the whole database. “How long-time SQL Server will take to complete the…
-
Send Disk space report daily by a Job
29 November 2019How to send Disk space report daily by a Job Send Disk space report daily by a Job. Here we will use a TSQL script for the activity. The script…
-
Send Database Backup Report Daily by a Job
28 November 2019How to Send Database Backup Report Daily by a Job Send Database backup report daily by a Job. Here we will use a TSQL script for the activity. The script…
-
Find Server Information by TSQL script
26 November 2019Display all Server Information by using TSQL script The below listed all SQL Server Information can be retrieved by a TSQL script. But before that, we need to Enable xp_cmdshell…
-
Backup & Restore Multiple Databases
25 November 2019Backup and restore all databases from an old SQL server and restore it on new SQL server. The number of databases are approx 99+. Let’s try to make backup and…
-
Fixing Orphaned Users in SQL Server
Introduction In easier terms, a ‘Login’ is like an entry pass to get into a SQL Server, and a ‘User’ is like an entry pass to access a specific database…
-
Find cached execution plan
21 November 2019An execution plan, simply put, is the result of the query optimizer’s attempt to calculate the most efficient way to implement the request represented by the T-SQL query you submitted. Execution plans can tell you how a query will…
-
Configuring Database Mail in SQL Server
17 November 2019SQL Server Database Mail facilitates email communication directly from the database engine. This capability is critical for transmitting query results, error alarms, and reports, as well as keeping you informed…