TechEd Demo: Creating, detaching, re-attaching, and fixing a suspect database

Posted on Sep 1, 2008 von in SQL Server
http://www.sqlskills.com/blogs/paul/2008/08/29/TechEdDemoCreatingDetachingReattachingAndFixingASuspectDatabase.aspx

Plan Reuse abfragen

Posted on Aug 29, 2008 von in SQL Server
DECLARE @string varchar(500)
SELECT
@string = '%SomeString%'
SELECT
SCP.usecounts, SCP.cacheobjtype, SCP.objtype,
[Statement].text,
Executionplan.query_plan
FROM
sys.dm_exec_cached_plans SCP
OUTER APPLY sys.dm_exec_sql_text(plan_handle) [Statement]
OUTER APPLY sys.dm_exec_query_plan(plan_handle) Executionplan
WHERE
Statement.[text] LIKE @string AND
SCP.cacheobjtype ='Compiled Plan' AND
SCP.objtype = 'proc'

Where the Heck is DMO?

Posted on Aug 29, 2008 von in SQL Server
http://blogs.msdn.com/dtjones/archive/2008/08/28/where-the-heck-is-dmo.aspx

Should Microsoft provide a transaction log reader tool?

Posted on Aug 26, 2008 von in SQL Server
http://www.sqlskills.com/blogs/paul/2008/08/26/ShouldMicrosoftProvideATransactionLogReaderTool.aspx

High-performance FILESTREAM tips and tricks

Posted on Aug 26, 2008 von in SQL Server
http://www.sqlskills.com/blogs/paul/2008/08/25/HighperformanceFILESTREAMTipsAndTricks.aspx

Can GUID cluster keys cause non-clustered index fragmentation?

Posted on Aug 21, 2008 von in SQL Server
http://www.sqlskills.com/blogs/paul/2008/08/20/CanGUIDClusterKeysCauseNonclusteredIndexFragmentation.aspx

How to tell if you have instant initialization enabled?

Posted on Aug 14, 2008 von in SQL Server
http://www.sqlskills.com/blogs/paul/2008/08/11/HowToTellIfYouHaveInstantInitializationEnabled.aspx

Why Single-Column Primary/Foreign Keys Can't Always Accurately Model/Constrain Your Data

Posted on Aug 14, 2008 by in SQL Server
http://weblogs.sqlteam.com/jeffs/archive/2008/08/13/examining-database-primary-keys.aspx