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 »

Wie kann ich feststellen, wie lange bereits eine SQL Server 2005 Instanz läuft

Posted on Feb 15, 2008 von in SQL Server
Der Startzeitpunkt des MS SQL Servers steht im Fehlerprotokoll, in der untersten Zeile, des Servers. Da der MS SQL Server beim Starten für interne Prozesse auch einige Verbindungen verwendet und diese mit der Session_ID=1 initialisiert werden, kann man… mehr »
Tags: faq

Introducing SQL Server 2008 by Peter DeBetta

Posted on Feb 13, 2008 by in SQL Server
The Microsoft SQL Server 2008 – Learning Portal offer this ebook Introducing SQL Server 2008 by Peter DeBetta, Greg Low, and Mark Whitehorn for free!By the way - there is also an free e-learning offer Collection 6187. Check it out:… more »

Dynamische Verwaltungssichten und -funktionen für Indizes - I

Posted on Feb 12, 2008 von in SQL Server
SQL Server 2005 teilt die dynamischen Verwaltungssichten und -funktionen nach der Modul-Komponente - zu der sie in Beziehung stehen - in zwölf Kategorien auf. Das diesem Artikel zugrunde liegende Objekt sys.dm_db_index_operational_stats gehört zur… mehr »