Category: "SQL Server"

Which service pack do I have installed?

Posted on Apr 3, 2008 by in SQL Server
Related to previous post's, sometimes it is helpful to quickly determine SQL Server's service pack level.By selecting @@VERSION in a query window ...SELECT @@VERSION AS "SQL Server Version"you / I get following result: more »

SQL Internals Viewer - looking into the SQL Server storage engine

Posted on Apr 1, 2008 by in SQL Server
Danny Gould, created a tool to graphically display database storage internals, and seeing how data is physically allocated, organised and stored - the SQL Internals Viewer. more »

Cumulative Update package 7 for SQL Server 2005 SP2

Posted on Mar 28, 2008 by in SQL Server
The Cumulative Update package 7 for SQL Server 2005 Service Pack 2 (build 9.00.3239) is now available: http://support.microsoft.com/default.aspx/kb/949095/ This CU represents: 40 Resolved Issues 37 Unique Customer Requests CU tosc more »

SQL Server 2005 Express free Profiler Tool

Posted on Mar 22, 2008 by in SQL Server
A lot of features / tools are included with the SQL Sever 2005 Express Edition (GUI, Reporting Services etc.), but not all of them like the Profiler.OK, you run a server side trace on your SQL Server Express databases as well as import the data into a… more »
1 comment »

SQL Server 2008 - Whats new in the tools

Posted on Mar 11, 2008 by in SQL Server
http://sqlblogcasts.com/blogs/simons/archive/2008/03/11/SQL-Server-2008---Whats-new-in-the-tools.aspx more »

SYNONYM - create aliases for your objects

Posted on Feb 27, 2008 by in SQL Server
MS SQL Server 2005 introduces a host of new features, some well-known; some not as familiar, but exciting like SYNONYMs. Synonyms help us to create aliases for our objects. They replace fully qualified name into shortest user-defined name and simplify… more »
Tags: synonym

Helpful tools at SQLCAT

Posted on Feb 22, 2008 by in SQL Server
The Microsoft SQL Server Development Customer Advisory Team at SQLCAT have consolidated several tools which they have published on Codeplex and other places under:ToolBoxHere are some entries:SQL DMVStats ToolkitSQL Server 2005 Partition Management… more »
Tags: sqlcat

Automatische Vergrößerung der "tempdb"-Systemdatenbank

Posted on Feb 21, 2008 von in SQL Server
In MS SQL Server 2005 wird für die "tempdb"-Systemdatenbank mehr Speicherplatz benötigt als in früheren Versionen von SQL Server, dies kommt zu einem durch eine erhöhte Leistungsverbesserung , sowie enthaltender neuer Features zustande (siehe BOL… mehr »
Tags: tempdb

Microsoft SQL Server 2008 February CTP Available

Posted on Feb 21, 2008 by in SQL Server
As announced the day before yesterday, the SQL Server 2008 February CTP is now available for download: http://www.microsoft.com/downloads/details.aspx?FamilyId=749BD760-F404-4D45-9AC0-D7F1B3ED1053&displaylang=en In addition, there is also the Books… more »

Checking the running time since last SQL-Server instance startup

Posted on Feb 15, 2008 by in SQL Server
Below script will query sys.dm_exec_sessions to find out how long the SQL-Server instance is running. CodeDECLARE @elapsed_time AS DATETIME, @lr_start_time AS DATETIME SELECT @lr_start_time = (SELECT last_request_start_time FROM sys.dm_exec_sessions… more »