SqlServer-QA.net - Knowledge Sharing Network

Microsoft SQL Server 2008 R2 Administration Cookbook
Follow SQLMaster on Twitter tsql - SQL Server Knowledge Sharing Network

Browse by Tags

All Tags » tsql (RSS)
How can you change collation of a database? How do you check the existing collation setup on a database & tables? By using the below TSQL: --For database select databasepropertyex(db_name(),'collation') as collation_name go --Tables select column_name...
One sentence, if you haven't used the Cursors sensibly then database performance will be cursed! This is for newbie users and DBAs to be aware that on general recommendation is server side cursors are better than client side one, in this you need to be...