Troels Arvin wrote:
> Når jeg tager dem offline kan jeg ikke umiddelbart få Enterprise
> Manager til at tilbyde mig at back'e op. Eller forveksler jeg offline og
> stop? I så fald: Hvad mener du med "offline"?
Njahh jeg huskede forkert
Jeg plejer at tage mine testdatabaser offline når kører en backup ind
(manuelt)
Så er jeg sikker på at der ikke er nogle processor der låser
databasen mens jeg laver restore
Når databasen er offline så kan man ikke skifte til restricted access
eller single user
Det var min ide
Prøv evt med at sætte restricted access på (kun db_owner, dbcreator
og sysadmin har adgang)
Du skal have fat i ALTER DATABASE samt SET OPTION og noget med
RESTRICTED_USER
Prøv at kikke i BOL
Ahh Server FAQ (BOL):
-----------------------------
How can I set the database to single user mode and restrict the access
to dbo use only?
Answer:
-----------------------------
In SQL Server 2000, a database cannot be in single-user mode with dbo
use only. Instead, the following alternative options are available by
using the ALTER DATABASE command:
ALTER DATABASE database SET SINGLE_USER.
This command restricts access to the database to only one user at a
time.
ALTER DATABASE database SET RESTRICTED_USER.
This command restricts access to the database to only members of the
db_owner, dbcreator, or sysadmin roles.
ALTER DATABASE database SET MULTI_USER.
This command returns access to the database to its normal operating
state.
HTH/Peter