To obtain SQL Server 2008R2 Product Key:
USE MASTER
GO
EXEC XP_REGREAD 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft SQL Server\100\BIDS\Setup','ProductCode'
GO
Showing posts with label SQL Server 2008 R2. Show all posts
Showing posts with label SQL Server 2008 R2. Show all posts
Monday, 28 January 2013
Thursday, 6 September 2012
Missing indexes - SQL
SELECT index_handle, database_id, object_id, equality_columns, inequality_columns, included_columns, statement
FROM sys.dm_db_missing_index_details
FROM sys.dm_db_missing_index_details
Index usage - SQL
SELECT OBJECT_NAME(I.object_id) AS TableName, I.name, I.index_id, I.type_desc, I.is_unique,
I.fill_factor, I.is_padded, I.is_disabled, I.is_hypothetical,
IUS.index_id , IUS.user_seeks, IUS.user_scans, IUS.user_lookups, IUS.user_updates, IUS.last_user_seek,
IUS.last_user_scan, IUS.last_user_lookup, IUS.last_user_update, IUS.system_seeks, IUS.system_scans, IUS.system_lookups, IUS.system_updates,
IUS.last_system_seek, IUS.last_system_scan, IUS.last_system_lookup, IUS.last_system_update
FROM sys.indexes AS I LEFT OUTER JOIN
sys.dm_db_index_usage_stats AS IUS
ON I.object_id = IUS.object_id AND
I.index_id = IUS.index_id
ORDER BY OBJECT_NAME(I.object_id)
I.fill_factor, I.is_padded, I.is_disabled, I.is_hypothetical,
IUS.index_id , IUS.user_seeks, IUS.user_scans, IUS.user_lookups, IUS.user_updates, IUS.last_user_seek,
IUS.last_user_scan, IUS.last_user_lookup, IUS.last_user_update, IUS.system_seeks, IUS.system_scans, IUS.system_lookups, IUS.system_updates,
IUS.last_system_seek, IUS.last_system_scan, IUS.last_system_lookup, IUS.last_system_update
FROM sys.indexes AS I LEFT OUTER JOIN
sys.dm_db_index_usage_stats AS IUS
ON I.object_id = IUS.object_id AND
I.index_id = IUS.index_id
ORDER BY OBJECT_NAME(I.object_id)
Friday, 21 August 2009
Subscribe to:
Posts (Atom)