SQL
MS SQL and .net Development
Pages
(Move to ...)
Home
▼
Monday, October 28, 2013
SQL performance slowing down
›
I was working on a database since last couple of month. Suddenly it was slowing down day by day. I had not changes anything in the database...
1 comment:
Monday, October 21, 2013
Change Database compatibility level
›
You can change the database compatibility level through Management Studio. (Go to Database Properties - Option). Here is the script to ch...
Monday, October 7, 2013
ACID rule of thumb for transactions
›
A transaction must be: Atomic - It is one unit of work and does not dependent on previous and following transactions. Consistent - Dat...
Monday, September 30, 2013
Query to get All Databases Size
›
User below query to find Database Size : SELECT d.name AS [Database Name], ROUND(SUM(mf.size) * 8 / 1024, 0) [Size (MB)] ...
3 comments:
Monday, September 23, 2013
Database Engine Tuning Adviser not found
›
Today, I want to optimize some some queries. I searched the net and found that we can use Database Engine Tuning Adviser for this. But I co...
‹
›
Home
View web version