Re: Rights for Access2000 Upsizing-Wizard
From: Bernhard Lauber (BernhardLauber_at_discussions.microsoft.com)
Date: 03/09/05
- Next message: George D. Lake: "Delete a user. Please help"
- Previous message: Kevin Stough: "Re: Cant create/edit stored procs in VS.Net"
- In reply to: Sue Hoegemeier: "Re: Rights for Access2000 Upsizing-Wizard"
- Next in thread: Sue Hoegemeier: "Re: Rights for Access2000 Upsizing-Wizard"
- Reply: Sue Hoegemeier: "Re: Rights for Access2000 Upsizing-Wizard"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 8 Mar 2005 23:43:04 -0800
Hello Sue
> Go into master and execute:
> grant create database to YourUser
Done. What I do in a scratch database is:
use master
CREATE DATABASE myDB
go
EXEC sp_addlogin 'usr', 'pwd'
EXEC sp_grantdbaccess 'usr'
EXEC sp_addrolemember 'db_owner', 'usr'
grant CREATE DATABASE to usr
go
use myDB
EXEC sp_grantdbaccess 'usr'
exec sp_addrolemember 'db_owner', 'usr'
go
> Then go into the database that will be used for upsizing and
> make the user the owner of the database by executing:
> sp_changedbowner 'YourUser'
When I execute this statement, I get the error that it is already owner of
db. Maybe because of sp_addrolemember 'db_owner'?
- Next message: George D. Lake: "Delete a user. Please help"
- Previous message: Kevin Stough: "Re: Cant create/edit stored procs in VS.Net"
- In reply to: Sue Hoegemeier: "Re: Rights for Access2000 Upsizing-Wizard"
- Next in thread: Sue Hoegemeier: "Re: Rights for Access2000 Upsizing-Wizard"
- Reply: Sue Hoegemeier: "Re: Rights for Access2000 Upsizing-Wizard"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|