Overblog All blogs Top blogs Jobs, Education & Studies
Follow this blog Administration + Create my blog
MENU
Advertising

Backup Compression in SQL Server

Backup Compression in SQL Server s Microsoft has introduced backup compression feature from SQL Server 2008. This feature is very useful to save the time, reduces device I/O and storage cost and it is also a good backupstrategy option. You can configure...

Read more

Advertising

Database Performance Issues

SQL Server Wait Types – Trace and Tune Database Performance Issues It is a big challenge for database administrators to trace performance issues, tune and maintain database server effectively. I receive many queries regarding database performance issues,...

Read more

Backup All System Databases

Backup All System Databases If you want to backup all system databases master, model and msdb then use below SQL script. DECLARE @DB VARCHAR(20) DECLARE @BkpFName VARCHAR(100) DECLARE @BkpFDate VARCHAR(50) SELECT @BkpFDate = REPLACE(CONVERT(VARCHAR(50),...

Read more

Advertising

Backup All User Databases

Backup All User Databases If you want to backup only user databases and don’t want to include system databases then you can use below SQL script. DECLARE @DB VARCHAR(20) DECLARE @BkpFName VARCHAR(100) DECLARE @BkpFDate VARCHAR(50) SELECT @BkpFDate = REPLACE(CONVERT(VARCHAR(50),...

Read more

Backup All User and System Databases

Backup All User and System Databases DECLARE @BkpFDate VARCHAR(50) SELECT @BkpFDate = REPLACE(CONVERT(VARCHAR(50), GETDATE(), 102),'.','') + REPLACE(CONVERT(VARCHAR(50), GETDATE(), 108),':','') DECLARE Cursor_DBs CURSOR FOR SELECT name FROM master.sys.DATABASES...

Read more

Activity Monitor in SQL Server 2012

Activity Monitor in SQL Server 2012 Activity Monitor is an inbuilt monitoring tool which comes with SQL Server Management Studio. This monitoring tool provides real-time information about processes, resource waits, data file I/O and recent expensive queries...

Read more

SQL Server Database Migration

SQL Server Database Migration Migrating a database is very critical and time bound process, if anything goes wrong then its very difficult to rollback things and move back to existing environment again. So its very important to prepare a checklist before...

Read more

Advertising
<< < 1 2 3 4 5 6 7 8 9 10 20 30 > >>