I have a sql 2005 database and I have a table named dbo.AgencyProfile However, I want to remove the dbo prefix. How can I accomplish this?
|
feedback
|
|
You cannot remove the prefix/schema but you can change it by recreating the table:
| |||||||||||||
feedback
|
|
Why do you need to? SQL keeps all objects in the You can put objects into your own schemas, but then you do need to qualify them with your schema name. | |||
feedback
|
|
The schema is an integral part of the object: you can only remove it from code that refers to the object There is a performance hit at compile time because it has to resolve what schema the object is in.
From "Execution Plan Caching and Reuse":
And for NT connections you can't specify default schema so can't avoid this And if you want SCHEMABINDING in views etc then you have to qualify schema. etc It's far more than "code clutter" Edit: after your comment elsewhere... You have run create table with no schema so you have an object You need to run 'ALTER AUTHORIZATION ON [domain\user].AgencyProfile TO dbo' which replaces sp_changeobjectowner | ||||
|
feedback
|
|
You can't remove the prefix/schema, but as Andy points out you don't have to use it if you don't have other schemas in the database. | |||
|
feedback
|