SQL
MS SQL and .net Development
Pages
(Move to ...)
Home
▼
Friday, October 7, 2011
Moving model databases
›
Since model is a system databases, unfortunately we cannot move this just by detach and attach process, as we cannot attach or detach a sy...
Tuesday, October 4, 2011
Rename all stored procedures in database
›
Below is the query to rename all stored procedures with some a specific word as prefix. SELECT 'EXEC sp_rename '+ ''...
2 comments:
Saturday, October 1, 2011
Clustered Index vs Non Clustered Index
›
Clustered and Non clustered indexes are stored in B-Tree Structure. Clustered Index Clustered index enforce the logical order. (Misco...
Friday, September 30, 2011
Extracting Only Numbers from a String
›
Sometimes we may need to extract only numbers from a string. The simple approach is to run a while loop on given string to check each and ...
Thursday, September 29, 2011
Disable a Job via TSQL
›
You can disable a Job either through Job ID or Job Name: exec msdb..sp_update_job @job_id = 0xC0923E436928064EA33B46B2A47BFF61 , @enabled...
‹
›
Home
View web version