1. 'Resource' Database is a new DB introduced in SQL Server 2005. Its shortly referred as 'RDB' . 2. Its an 'Hidden' and 'Read-only' DB. 3. You could find its 'mssqlsystemresource.mdf' file here -- C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data (If you have SQL Server 2005 installed in your box) 4. This is the database where all 'System objects' which belongs to ' Sys. ' Schema physically reside. i.e., has definition of all System objects. These 'System objects' (like, sp_help) logically appear in every other DB in the server. Schema -- It is similar to namespaces in .NET, it helps in logical grouping. Sys -- Is newly created schema in SQL Server 2005. All System Objects resides here. 5. If you run this below script from any of your SQL Server 2005 database it would return 1741 rows. Those are 'definitions' of ALL the system objects which actually reside in RDB . Select [name], object_definition(ob...
I write about things which I am passionate about.