Tara Kizer Blog

Tara Kizer

What three events brought you here?

Paul Randal recently blogged about three life-changing events that brought him to where he is today. His blog is a very interesting read and idea, and so I bring to you my three events that brought me to where I am today in my technical career as a SQL Server DBA. Read more →

Backup SQL Server 2005 and 2008 Databases

I have modified isp_Backup, which is the stored procedure that I use to backup SQL Server 2005 and 2008 databases. This new version includes one new feature, which I think is critical to SQL instances with multiple databases on them. Read more →

Multiple “clustered” indexes on a SQL Server table

You can only have one clustered index on each SQL Server table, however there are two ways to create pseudo clustered indexes on a table: Create clustered indexed on a view (indexed view) that covers the table Create covering index on the entire table Let's look at the following table: Read more →

Backup SQL Server 2005 and 2008 Databases

I have modified isp_Backup, which is the stored procedure that I use to backup SQL Server databases. This new version includes one bug fix and three new features: Bug Fix – removed ReportServerTempdb from exclusion list Bug Fix – fixed file retention code to handle database names with spaces Feature – support for SQL Server 2008 including compression Feature – archive bit option Feature – COPY_ONLY option I decided that excluding the ReportServerTempdb from the backups was unnecessary. Read more →

Defragmenting/Rebuilding Indexes in SQL Server 2005 and 2008

I have modified isp_ALTER_INDEX, which is the stored procedure that I use to defragment/rebuild indexes in SQL Server 2005 and 2008. The new version has a minor bug fix. Recently I was comparing the fragmentation results between the DETAILED and SAMPLED modes of sys. Read more →

SQL Server Script to Display Job History

I was going through my scripts today and found one that I’d like to share. This SQL Server script will display job history. The benefit of this script over displaying it from the GUI is that you get to see the job durations quickly. Read more →

Defragmenting Indexes in SQL Server 2005

UPDATE: This stored procedure has been updated. I have modified isp_ALTER_INDEX, which is the stored procedure that I use to defragment indexes in SQL Server 2005. The changes include one bug fix and one feature request. Read more →