-
-
Notifications
You must be signed in to change notification settings - Fork 563
Ms Sql Server add number of record in database Tab (solved) #1877
Copy link
Copy link
Closed
Labels
featureA new feature to implementA new feature to implementnettype-mssqlSQL Server specific issueSQL Server specific issue
Milestone
Description
Is your feature request related to a problem? Please describe.
Heisql Sql database tab dont have count row for table in MS SQL SERVER
Describe the solution you'd like
using this query to have this info:
SELECT *, SCHEMA_NAME("schema_id") AS 'schema' , (SELECT TOP 1 p.rows FROM sys.partitions p where t.object_id = p.OBJECT_ID) RowCounts FROM "dbrif"."sys"."objects" t WHERE "type" IN ('P', 'U', 'V', 'TR', 'FN', 'TF', 'IF');
Describe alternatives you've considered
this information would be very useful
Additional context
Thanks for the help
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featureA new feature to implementA new feature to implementnettype-mssqlSQL Server specific issueSQL Server specific issue