vote up 0 vote down star
2

Hello everyone,

Does SQL Server 2008 support table level readonly -- i.e. I can mark some table as readonly so that we could improve performance (for example, no transaction log needed for the readonly table)?

thanks in advance, George

flag

43% accept rate

2 Answers

vote up 1 vote down

You can add the table to a read only filegroup

Note that the Transaction log records UPDATE, INSERT and DELETE only (simply: no pedants please). If you only SELECT then why bother?

link|flag
Thanks, in my store procedure, I will read table 1, update table 2 and may join table 1 with table 2, but no update/delete/insert operation on table 1, in this case set table 1 as readonly has no benefit? – George2 Jul 10 at 13:30
1  
It prevents "accidental" changes. And allows 100% fill factor (indexes can't be rebuilt on it). Otherwise, not really. – gbn Jul 10 at 13:52
1. You mean no performance improvements if I make table as readonly? 2. "100% fill factor (indexes can't be rebuilt on it)" -- means? – George2 Jul 10 at 14:09
2  
1. yes. No performance benefit. 2. it's a side effect: FIll factor is basically how many rows are squeezed onto a page. 100% is better than say 90%, but is not good for data changes – gbn Jul 10 at 14:16
1  
You'll have to change your maintenance routine to ignore read only tables, won't you? And yes, you specify fill factor:it's in SQL Server BOL – gbn Jul 10 at 18:37
show 2 more comments
vote up 3 vote down

yes, create a filegroup that is read only and move the table there

link|flag
Any performance benefits if I mark table as read only? – George2 Jul 10 at 17:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.