September 19, 2012 at 11:13 am
Can any one provide me with good links where we can achieve Data Compression on Sql Databases/tables.
DO we have any step by step procedure to achieve data compression.
September 19, 2012 at 11:31 am
devullapallymanidhar (9/19/2012)
Can any one provide me with good links where we can achieve Data Compression on Sql Databases/tables.DO we have any step by step procedure to achieve data compression.
In my opinion nothing beats vendor's documentation, try this http://msdn.microsoft.com/en-us/library/dd894051(v=SQL.100).aspx
_____________________________________
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at Amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.September 19, 2012 at 11:33 am
I think compression may be an enterprise only/Developer version only feature.
If you don't have neterprise edition, you won't be able to use it, i think.
there's a really good MS article on the advantages, what to expect, etc:
http://msdn.microsoft.com/en-us/library/dd894051(v=sql.100).aspx
as for the specific how to compress:
the basic DDL is like this:
CREATE TABLE <table_name>
(<column_names>)
WITH (DATA_COMPRESSION = ROW | PAGE)
ALTER TABLE <table_name>
REBUILD PARTITION = 1
WITH (DATA_COMPRESSION = ROW | PAGE)
Lowell
September 19, 2012 at 11:37 am
yes your'e right lowel,
Will go through the link you provided me.Let you know if i have doubts.
September 19, 2012 at 11:44 am
You might also read this: http://www.sqlservercentral.com/articles/SQL+Server+2008/65292/
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply