Home Products Support Sales Corporate
Products
Performance Monitor
Database Compare
Database Manager
Job Scheduler






Home > Articles > SQL Server Administration > What is SQL Server Utility?

What is SQL Server Utility?

SQL Server UtilitySSEUtil is a tool that lets you interact with SQL Server. It allows you to:

  • Connect to the main instance or user-instance of SQL Server.
  • Create, attach, detach, and list databases on the server
  • Upgrade database files to match the version of the server
  • Execute SQL statements via the console (similar to SQLCMD)
  • Retrieve the version of SQL Server running
  • Enable and disable trace flags (for example, to trace SQL statements sent to the server by any client application)
  • List the instances of SQL Server on the local machine or on remote machines
  • Checkpoint and shrink a database
  • Measure the performance of executing specific queries
  • Create and playback lists of SQL commands for the server to execute
  • Log all input and output

Download the SQL Server Utility from the Microsoft Website

 

Related articles

 

SQL Server Performance Tips

SQL Server performance tuning can consume a considerable amount of time and effort. The following list is a quick guideline that you should keep in mind when designing and developing SQL Server database applications...

 

How Big is Your Database Log File?

All SQL Server data modifications (updates, inserts, and deletes) are initially recorded in the database log file. Depending on the frequency of modification and your backup and recovery model, the size of the database log file can grow to large proportions in a short amount of time...

 

Limit Server Memory with sp_configure

Use the sp_configure system stored procedure with the max server memory option to limit the amount of memory in the buffer pool used by an instance of SQL Server. This will prevent SQL Server from using more than the specified amount of memory, thus leaving remaining memory available to start other applications quickly...

 

Determine Table Size with sp_spaceused

Have you ever wondered which tables take the most disk space in your database? Using the sp_spaceused stored procedure you can determine the amount of disk space (data and index) used by any given table in the current database...

 

OPENROWSET: Import Data into SQL Server and MSDE

The OPENROWSET feature in SQL Server provides a fast and easy way to open an OLE DB compatible data source, such as an Excel sheet, directly from your SQL script. Coupled with the "SELECT * INTO" command, the OPENROWSET feature can import data from an Excel sheet into a table in SQL Server...

 

SQL Server 2005 Express in a Nutshell

SQL Server 2005 Express Edition is a scaled down version of Microsoft SQL Server 2005. Although the database server is limited in enterprise features, most of the limitations do not affect the database performance for what it is meant to do...

 

Compare SQL Server 2005 Editions

With the release of SQL Server 2005, Microsoft has introduced the Express edition and the Workgroup edition to better meet the needs of each customer. The new line of SQL Server 2005 editions includes Express, Workgroup, Standard, and Enterprise Edition. The four new editions will offer a range of features including high availability, scalability, and business intelligence tools...

 

MSDE  vs. SQL Server

When Microsoft first introduced MSDE 1.0, it was called Microsoft Data Engine and it shared the same code base as SQL Server 7.0. With the release of SQL Server 2000, Microsoft introduced MSDE 2000 and called it Microsoft SQL Server 2000 Desktop Engine. This article provides information on MSDE 2000 as it compares to SQL Server...

 

 



Privacy Statement License Agreement Articles Site Map         Copyright © 2002-2008 Teratrax Inc. All rights reserved.