Home » CodeProject (Page 5)

Category Archives: CodeProject

Creation & Deletion of Database Snapshot by SQL Agent Job

Some days back, I received one query on my facebook page that user want to create Database Snapshot frequently & want to delete the oldest with same frequency. Quite interesting scenario. I did not go in deep why he has such requirement but I am clear that It can be done very easily. So let’s … Continue reading

SQL Server 2005 || Database backup failed because Full Text catalog files are OFFLINE

Error : Database backup is getting fail with below reason. The backup of full-text catalog ‘FullTextCatalog’ is not permitted because it is not online. Check errorlog file for the reason that full-text catalog becomes offline and bring it online. Or BACKUP can be performed by using the FILEGROUP or FILE clauses to restrict the selection … Continue reading

Renaming or Changing SQL Server Cluster Instance

Renaming or Changing SQL Server cluster instance process is bit different from renaming a stand-alone instance. Refer : Rename or Change SQL Server Standalone Default Instance http://mssqlfun.com/2014/06/30/rename-or-change-sql-server-standalone-default-instance/) Refer : Rename or Change SQL Server Standalone Named Instance (http://mssqlfun.com/2014/07/29/rename-or-change-sql-server-standalone-named-instance/) The name of the virtual server is always the same as the name of the SQL Network … Continue reading

How to change TempDB system Database files location?

Steps to change TempDB system Database files location :- 1) Check current file location of TempDB Exec SP_helpDB TempDB You can use below query as well for file location details. SELECT name, physical_name AS CurrentLocation, state_desc FROM sys.master_files WHERE database_id = DB_ID(‘TempDB’); 2) Execute Alter Database command with Modify Filename option on Tempdb System Database … Continue reading

Add Node to Windows Server 2008 Cluster

Steps : Add Node to Windows Server 2008 Cluster 1) Open Cluster Administration wizard > Right click on Windows Cluster & select Add Node 2) Add Node Wizard appears, Click Next to start 3) Browse Node to add, We select Node 3 to add 4) Select if you want to validate cluster settings or not … Continue reading

%d bloggers like this: