Openedge (Progress) - BI reads and writes
You can see information about reads and writes on BI with the select below:
SELECT database() as Database,
u."_UserIO-Name" as 'User',
u."_UserIO-BIRead" as 'Reads',
u."_UserIO-BiWrite" as 'Writes
FROM PUB."_UserIO" u
where u."_UserIO-BiRead" > 0 or u."_UserIO-BiWrite" > 0
order by u."_UserIO-BiWrite" desc
SELECT database() as Database,
u."_UserIO-Name" as 'User',
u."_UserIO-BIRead" as 'Reads',
u."_UserIO-BiWrite" as 'Writes
FROM PUB."_UserIO" u
where u."_UserIO-BiRead" > 0 or u."_UserIO-BiWrite" > 0
order by u."_UserIO-BiWrite" desc
Comments
Post a Comment