Sign In
Zen and the Art of SQL Server Maintenance
A blog about SQL Server.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
SQL Server 2012 Availability Group Configuration
SQL Server Identity
Archive
Archives
January 2012
(2)
December 2011
(2)
May 2010
(1)
February 2010
(1)
January 2010
(1)
December 2009
(1)
November 2009
(1)
October 2009
(3)
September 2009
(1)
January 2008
(7)
December 2007
(7)
December, 2007
MSDN Blogs
>
Zen and the Art of SQL Server Maintenance
>
December, 2007
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Zen and the Art of SQL Server Maintenance
VHD Resizer for Virtual Server or Virtual PC
Posted
over 5 years ago
by
Mike Wilmot
3
Comments
Found this tool that is good for VHD / Virtual Hard drive / Virtual Machine resizing. I have been running SQL Server on a VM and the performace thus far is good. The December 2007 edition of SQL Server Magazine had some good articles about virtualizing...
Zen and the Art of SQL Server Maintenance
SQL Server 2008 (Katmai) New Features Overview
Posted
over 5 years ago
by
Mike Wilmot
1
Comments
C:\Program Files\ProClarity\ProClarity Dashboard Server\ Nice article on SQL 2008 (Katmai) New Features: http://blogs.mssqltips.com/blogs/chadboyd/archive/2007/10/15/katmai-sql-2008-the-list-of-new-features.aspx I have attached a PowerPoint file...
Zen and the Art of SQL Server Maintenance
Searching for a specific table name
Posted
over 5 years ago
by
Mike Wilmot
1
Comments
Here is a way to search the Information_Schema to find all tables that have the letter 't' in them, can be helpful to search the metadata of your database schema select * from INFORMATION_SCHEMA.columns where table_name like '%t%' order...
Zen and the Art of SQL Server Maintenance
Searching the MetaData of a SQL Server Database, Stored Procedure Text
Posted
over 5 years ago
by
Mike Wilmot
1
Comments
This has been a favorite stored procedure of mine to search the text of my stored procedures for certain phrases... really helpful as the number of stored procs you have grows quite a bit: -- xps '%procedure%' --search for the word 'procedure' in all...
Zen and the Art of SQL Server Maintenance
SQL Server Unattended Install Script
Posted
over 5 years ago
by
Mike Wilmot
2
Comments
Here is a SQL Server Unattended Install Script I wrote last week... was nice to get it working finally!!! ;the PIDKEY will show up in greyed out text boxes during a MANUAL Install... use this for the PIDKEY Parameter IF NECESSARY (probably not necessary...
Zen and the Art of SQL Server Maintenance
Disable and Enable Constraint Checking on SQL Server Tables
Posted
over 5 years ago
by
Mike Wilmot
1
Comments
Found this script to disable/enable constraint checking here : SELECT 'ALTER TABLE ' + object_name(parent_obj) + ' NOCHECK CONSTRAINT ' + name FROM sysobjects WHERE xtype = 'F' ORDER BY object_name(parent_obj) and to enable: SELECT 'ALTER TABLE...
Zen and the Art of SQL Server Maintenance
Using SELECT INTO to create an on-the-fly IDENTITY Column
Posted
over 5 years ago
by
Mike Wilmot
2
Comments
Here is a nifty way to add an IDENTITY column on the fly... select distinct id = IDENTITY ( int , 1 , 1 ), usr into dim_usr from fact_eyeballs
Page 1 of 1 (7 items)