Re: When creating a new table, owner is DBO I need another user
- From: "Uri Dimant" <urid@xxxxxxxxxxx>
- Date: Thu, 3 Aug 2006 08:14:00 +0300
BOL says
The dbo is a user that has implied permissions to perform all activities in
the database. Any member of the sysadmin fixed server role who uses a
database is mapped to the special user inside each database called dbo.
Also, any object created by any member of the sysadmin fixed server role
belongs to dbo automatically.
For example, if user Andrew is a member of the sysadmin fixed server role
and creates a table T1, T1 belongs to dbo and is qualified as dbo.T1, not as
Andrew.T1. Conversely, if Andrew is not a member of the sysadmin fixed
server role but is a member only of the db_owner fixed database role and
creates a table T1, T1 belongs to Andrew and is qualified as Andrew.T1. The
table belongs to Andrew because he did not qualify the table as dbo.T1.
The dbo user cannot be deleted and is always present in every database.
Only objects created by members of the sysadmin fixed server role (or by the
dbo user) belong to dbo. Objects created by any other user who is not also a
member of the sysadmin fixed server role (including members of the db_owner
fixed database role):
a.. Belong to the user creating the object, not dbo.
b.. Are qualified with the name of the user who created the object.
c..
<alexkuzn@xxxxxxxxx> wrote in message
news:1154568839.885206.103760@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
I want to create a database that will have owner I can specified.
I can't find anyplace in Enterprise Manager where I can specify owner.
When I create a new databases and tables subsequently user is always
"dbo"
How can I change owner?
.
- References:
- When creating a new table, owner is DBO I need another user
- From: alexkuzn
- When creating a new table, owner is DBO I need another user
- Prev by Date: Re: Owner granting permissions on his objetcs
- Next by Date: Re: Advice
- Previous by thread: When creating a new table, owner is DBO I need another user
- Next by thread: Re: When creating a new table, owner is DBO I need another user
- Index(es):
Relevant Pages
|