I am updating some set of records in that table , after that i need to make this table read only.
So How to make a table Read Only in SQL Server?
|
I am updating some set of records in that table , after that i need to make this table read only. So How to make a table Read Only in SQL Server? |
|||||
|
|
A simple alternative that would block update and insert on a specific table but still allowing delete:
Be aware: this avoids INSERTs and UPDATEs, but allows DELETEs. If you really need a table to be truly read only you could also either: a) put it in its own database or
For more details on this subject, go here: |
||||
|
|
Number 3 is probably best practice. For example, if your connection is db_owner for example then the trigger can be disabled the trigger or move the table to a different filegroup anyway. |
|||
|
|
|
If you want it as read only to the general public, but still want to be able to edit the table at a later date, you may want to consider creating multiple users for the database and granting different permissions to that database - ideally you should be doing this anyway and not allow the general public access to alter table, truncate etc. |
|||
|
|