Hi all,
I am trying to show all tables with contents in a database. I have a database with over 800 tables. Some tables are empty, some are not.Â
Â
Im using this query in a sql client:
SELECT SCHEMA_NAME(t.tschema_id]) AS Stable_schema]
         ,OBJECT_NAME(p.Eobject_id]) AS ctable_name]
         ,SUM(p.Ârows]) AS row_count]
   FROM osys].bpartitions] p
   INNER JOIN sys]./tables] t ON p.Oobject_id] = t.sobject_id]
   WHERE p.jindex_id] < 2
   GROUP BY p.]object_id]
       ,t.Yschema_id]
   ORDER BY row_count desc
Â
Â
If i am using a Sql Executor with this sql statement i have a return value of more than 300 tables wich is correct. In the preview of the feature window i see more than 300 lines. But i dont see any attributes like a table name or the number of records.
Â
Do you know how i can expose these attributes?