Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Another easy question for you lot

Author  Topic 

masterdineen
Aged Yak Warrior

550 Posts

Posted - 2010-10-21 : 08:30:06
what does it mean when you have a table name like

dbo,table_name..??????

what does it mean when there are two full stops in a table name?

Kind Regards

Rob

MCTS / MCITP certified

webfred
Master Smack Fu Yak Hacker

8781 Posts

Posted - 2010-10-21 : 08:35:15
A full qualified Object name here table looks like this:
SERVER.DATABASE.SCHEMA.TABLENAME

In normal cases you can omit the SERVER.
So we have DATABASE.SCHEMA.TABLENAME

If you don't give a SCHEMANAME the the standard schema is used automatically
Then it looks:
DATABASE..TABLENAME



No, you're never too old to Yak'n'Roll if you're too young to die.
Go to Top of Page
   

- Advertisement -