SQL Server Specialist site contains useful information about using and supporting SQL Server as a DBA
View Article  Alter the collation to database default

/*---------------------------------------------------------------------------------------------------

Purpose: This script generate scripts to alter the collation

Author: Carolyn Richardson

Date: 05/10/2007

---------------------------------------------------------------------------------------------------*/

USE{databasename}

GO...   more »

View Article  Identify tables on Server with collation issue
This script will identify tables on all databases on a server that have differing collations, collation differences have probably occured between upgrades to SQL Server versions or where the server default differs   more »
View Article  Find tables with large logical fragmentation
--Quick script to find tables with large logical fragmentation and generate a script to alter the fill factor

CREATE TABLE...   more »