-- To check the diffrent kind of system objects
SELECT Distinct type_desc
FROM sys.system_objects
-- To get the list of DMVs or DMFs
SELECT name, type, type_desc,SCHEMA_NAME(schema_id) as SNAME
FROM sys.system_objects
WHERE name LIKE 'dm[_]%'
ORDER BY name
Wednesday, December 8, 2010
Script to list out all DMVs and DMFs of SQL Server
Monday, December 6, 2010
How to generate script using SSMS GUI?
Friday, December 3, 2010
How to rename SA account in SQL Server
You can use below script to rename SA account. Script will work with SQL Server 2005 and higer versions.
ALTER LOGIN sa Disable;
ALTER LOGIN sa WITH NAME = [Jugal];
Monday, November 15, 2010
SP to recycle SQL Server and Agent Error Log file
Thursday, November 11, 2010
Download SQL Server 2011 code name Denali
Click on below link to download Denali
http://www.microsoft.com/sqlserver/en/us/product-info/future-editions.aspx
http://www.microsoft.com/sqlserver/en/us/product-info/future-editions.aspx
Friday, October 29, 2010
Friday, October 22, 2010
SQL Server Version and Code Name
| SQL Server Version | Code Name |
| SQL Server 6.0 | SQL95 |
| SQL Server 6.5 | Hydra |
| SQL Server 7.0 | Sphinx |
| SQL Server 7.0 OLAP | Plato |
| SQL Server 2000 32-bit | Shiloh |
| SQL Server 2000 64-bit | Liberty |
| SQL Server 2005 | Yukon |
| SQL Server 2008 | Katmai |
| SQL Server 2008 R2 | Kilimanjaro |
| SQL Server 2011 | Denali |
Subscribe to:
Posts (Atom)