I have an user who's been added to the dbo role in a sql 2000 database. When using Sql Server 2005 Management Studio to create the table the table always has the name domain\login_name as the owner of the table. It doesn't make any difference if he adds the dbo to the name before he goes to save it.
Example: He saves the table as test1, the full name is domain\user_name.test1. If he saves the table as dbo.test1, the full name is domain\user_name.dbo.test1
However, if he uses T-sql to create the table like this:
CREATE TABLE dbo.test1 (...) then the table is created with the name dbo.test1 not domain\user_name.test1.
Anybody come across this before. I've tried removing him as an user from the database and adding him back in but nothing changes.
Example: He saves the table as test1, the full name is domain\user_name.test1. If he saves the table as dbo.test1, the full name is domain\user_name.dbo.test1
However, if he uses T-sql to create the table like this:
CREATE TABLE dbo.test1 (...) then the table is created with the name dbo.test1 not domain\user_name.test1.
Anybody come across this before. I've tried removing him as an user from the database and adding him back in but nothing changes.