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
|
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
|
|||
|
|
|
|
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? |
||||||||||||||||
|
|
|
yes, create a filegroup that is read only and move the table there |
||
|