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 |
|
chetancool
Starting Member
34 Posts |
Posted - 2005-07-18 : 06:17:25
|
| Hi group,How to find out user created objects (tables, SPs, functions etc) in particular database.Regards,Chetancjain |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2005-07-18 : 06:38:13
|
| 1 select table_name from information_Schema.tables2 select specific_name,routine_type from information_Schema.routinesMadhivananFailing to plan is Planning to fail |
 |
|
|
chetancool
Starting Member
34 Posts |
Posted - 2005-07-18 : 07:09:37
|
| Thanks .. it workedcjain |
 |
|
|
|
|
|