Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At least on my local instance, when I create tables, they are all prefixed with "dbo.". Why is that?

share|improve this question
it is Database Owner – Jeson Park May 10 at 12:46

3 Answers

up vote 45 down vote accepted

dbo is the default schema in SQL Server. You can create your own schemas to allow you to better manage your object namespace.

share|improve this answer
4  
As a best practice, I always add the "dbo." prefix even though it is not necessary. Most of the time in SQL it's good to be explicit. – SurroundedByFish Jun 30 '09 at 13:56
@SurroundedByFish: Probably not a best practice, but I could be wrong as I'm not a SQL expert. stackoverflow.com/a/769639/602245 – Brett Jan 20 '12 at 19:19
3  
This article from a different answer claims that it is in fact a best practice: "The code would not have to use the fully qualified name, though there is a slight performance gain in doing so and is considered a best practice. " – Carl G Oct 9 '12 at 16:33
2  
Also, the answer you linked also recommends including the "dbo." so that the optimizer doesn't have to look up the schema. – Carl G Oct 9 '12 at 16:42

If you are using Sql Server Management Studio, you can create your own schema by browsing to Databases - Your Database - Security - Schemas.

To create one using a script is as easy as (for example):

CREATE SCHEMA [EnterSchemaNameHere] AUTHORIZATION [dbo]

You can use them to logically group your tables, for example by creating a schama for "Financial" information and another for "Personal" data. Your tables would then display as:

Financial.BankAccounts Financial.Transactions Personal.Address

Rather than using the default schema of dbo.

share|improve this answer

It's new to SQL 2005 and offers a simplified way to group objects, especially for the purpose of securing the objects in that "group".

The following link offers a more in depth explanation as to what it is, why we would use it: http://www.sqlteam.com/article/understanding-the-difference-between-owners-and-schemas-in-sql-server

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.