Answer Posted / manoj savalia
Try This
SELECT SYS_OBJ.NAME AS "TABLE NAME"
, SYS_INDX.ROWCNT AS "ROW COUNT"
FROM SYSOBJECTS SYS_OBJ, SYSINDEXES SYS_INDX
WHERE SYS_INDX.ID = SYS_OBJ.ID
AND INDID IN(0,1)
AND XTYPE = 'U'
AND SYS_OBJ.NAME <> 'SYSDIAGRAMS'
AND SYS_INDX.ROWCNT>0
ORDER BY SYS_INDX.rowcnt DESC
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Difference between aggregate functions of sql?
Explain about SQLOS?
How to connect to SQL Azure Database by using sqlcmd?
Explain query editor regions
Explain filtered indexes?
How sql server executes a statement with nested subqueries?
How to list all stored procedures in the current database using ms sql server?
What are the types of database schema? : sql server analysis services, ssas
Which database stores information about replication?
How to defragment table indexes?
How to create a stored procedure with a statement block in ms sql server?
what is unique and xaml nonclustered index
What is the use of custom fields in report?
Suppose you want to implement the one-to-one relationships while designing tables. How would you do it?
What is the difference between an index and a unique index?