Viewing 5 posts - 1 through 5 (of 5 total)
I think part of it you can decode like your data, page no which was modified , record size . I will just show a small thing here
-- create a...
March 3, 2010 at 1:08 am
Paul,
I that case I should also focus that I mentioned
"Check if defrag is required"
Cheers
V
February 20, 2010 at 6:34 am
Hi Paul
Thanks for your inputs.. Its a small ex I have put down
-- create a db
USE master;
GO
IF EXISTS (SELECT 1 FROM sys.databases WHERE name = 'Page')
DROP DATABASE Page;
GO
CREATE DATABASE...
February 20, 2010 at 1:02 am
1. Yes , you will have to shrink the data files in order to release that space from that database. (Shrink might require considerable downtime)
2. Check if defrag is required,...
February 19, 2010 at 10:03 pm
You need to take care of the following things
1. Is the table partitioned. If not it would be great if you could partition it?
2. Based on the querying needs you...
February 19, 2010 at 12:56 pm
Viewing 5 posts - 1 through 5 (of 5 total)