Browse by Tags

How to use TSQL to find the size of total and free physical memory within the SQL Server?
Published 24 January 8 4:28 PM | SSQA.net
Recently I have to search for the information on the total size of free physical memory on the SQL Server which is causing lots of performance issues, when reported to CSS they have supplied the following TSQL to get more information in this regard: With...
TSQL to return internal table columns and column data types?
Published 1 November 7 9:26 AM | SSQA.net
SELECT SCHEMA_NAME(itab.schema_id) AS schema_name ,itab.name AS internal_table_name ,typ.name AS column_data_type ,col.* FROM sys.internal_tables AS itab JOIN sys.columns AS col ON itab.object_id = col.object_id JOIN sys.types AS typ ON typ.user_type_id...