![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a database that I'd like to prohibit any updates/inserts to. Basically, I want it to be read-only. Is there an option somewhere to do that? |
#3
| |||
| |||
|
|
Thomas Gagné <tgagne (AT) wide-open-west (DOT) com> wrote I have a database that I'd like to prohibit any updates/inserts to. Basically, I want it to be read-only. Is there an option somewhere to do that? sp_dboption "dbname","read only",true go but even the dbo is not able anymore to update data, otherwise, you could create a group including all users (except the dbo) and grant them "select" only on objects. |
#4
| |||
| |||
|
|
Thomas Gagné <tgagne (AT) wide-open-west (DOT) com> wrote I have a database that I'd like to prohibit any updates/inserts to. Basically, I want it to be read-only. Is there an option somewhere to do that? sp_dboption "dbname","read only",true go That's perfect -- and I don't want the dbo to have write access. |
![]() |
| Thread Tools | |
| Display Modes | |
| |