Tip: Using SQL Server Query Analyzer Templates

SQL Server Query Analyzer templates offer a great way for novices to quickly write SQL scripts for specific tasks.

Brian Moran

February 21, 2001

1 Min Read
ITPro Today logo in a gray background | ITPro Today


SQL Server Query Analyzer templates offer a great way for novices to quickly write SQL scripts for specific tasks. SQL Server 2000 includes boilerplate templates that provide the basic SQL you need to script specific activities. SQL Server 2000 includes 62 templates across 13 categories. For example, the Create Table group provides the following seven templates:

  • Create Table Basic Template.tql

  • Create Table Specifying Constraints.tql

  • Create Table Specifying File Groups.tql

  • Create Table with Computed Column.tql

  • Create Table with IDENTITY Column.tql

  • Create Table with ROWGUIDCOL Column.tql

  • Create Temp Table.tql

Suppose you wanted to use the Create Table with Computed Column.tql template. Simply open Query Analyzer and select Insert Template from the Edit menu. From the Create Table group, select Create Table with Computed Column.tql, which places in your Query Analyzer window the script that Listing A shows. You can then select Replace Template Parameters from the Edit menu, which brings up a dialog box that lets you replace template placeholders with values specific to your implementation.

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like