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
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Entry for new table?

Author  Topic 

nitin1353
Constraint Violating Yak Guru

381 Posts

Posted - 2006-05-25 : 13:08:45
Gurus
When ever we create a new table ,itz entry is stored in the master DB somewhere?right?Can you please tell mewhere the entry is stored?
REgards
Nitin

nitin1353
Constraint Violating Yak Guru

381 Posts

Posted - 2006-05-25 : 13:17:03
Ohhhhhhhhhhhhhhh
i am such a big dumbo...
itz in the same db i.e sysobjects
Regards
Nitin
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2006-05-26 : 04:15:04
Note that if you create temporary tables, they are created in tempdb database

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2006-05-26 : 04:56:20
And unless you specify the db name in the create table, it will create in the current db.
create table db2.dbo.table
(
. . .
)



KH

Go to Top of Page
   

- Advertisement -