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.
| 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 likedbo,table_name..??????what does it mean when there are two full stops in a table name?Kind RegardsRobMCTS / 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.TABLENAMEIn normal cases you can omit the SERVER.So we have DATABASE.SCHEMA.TABLENAMEIf you don't give a SCHEMANAME the the standard schema is used automaticallyThen it looks:DATABASE..TABLENAME No, you're never too old to Yak'n'Roll if you're too young to die. |
 |
|
|
|
|
|