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 |
|
rajdaksha
Aged Yak Warrior
595 Posts |
Posted - 2009-07-29 : 06:27:14
|
| HiIf am using this below query..is need to check the schema of the object...? Select Rowcnt From sys.sysindexes where id = <Object_ID> AND indid IN (0 ,1)-------------------------R.. |
|
|
raky
Aged Yak Warrior
767 Posts |
Posted - 2009-07-29 : 08:07:35
|
| no need to have the schema...Just run the below stmt to know that there is no differenceselect object_id('tablename'),object_id('dbo.tablename') |
 |
|
|
rajdaksha
Aged Yak Warrior
595 Posts |
Posted - 2009-07-29 : 08:25:57
|
| Hi rakythanks a Lot-------------------------R.. |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
|
|
|
|
|