Minor changes are by default collapsed in the page history.
No changes
The page does not exist yet.
Failed to load changes
Version by on
Leave Collaboration
Are you sure you want to leave the realtime collaboration and continue editing alone? The changes you save while editing alone will lead to merge conflicts with the changes auto-saved by the realtime editing session.
Oracle Enterprise Manager Cloud Control
StreamWeaver-supported versions
Oracle Enterprise Manager Cloud Control versions: 13.C
If you require read-only access to the SYSMAN tables, then you can follow these commands to enable the user with appropriate permissions to access OEM
CREATE USER "READONLY_USER" IDENTIFIED BY xxxxxxx DEFAULT TABLESPACE "MGMT_TABLESPACE" TEMPORARY TABLESPACE "TEMP" QUOTA 512 M ON "MGMT_TABLESPACE" ACCOUNT UNLOCK /-- allow logon GRANT "CONNECT" TO "READONLY_USER";-- ignore Fine Grained Access Control GRANT EXEMPT ACCESS POLICY to READONLY_USER;-- EM 13c has editions enabled -- Do the same to avoid -- ORA-38818: illegal reference to editioned object SYSMAN.MGMT$... ALTER USER READONLY_USER ENABLE EDITIONS; -- GRANT SELECT ANY DICTIONARY TO READONLY_USER; -- GRANT OEM_MONITOR TO READONLY_USER; -- GRANT SELECT_CATALOG_ROLE to READONLY_USER; -- Grant access to individual tables GRANT SELECT ON SYSMAN.MGMT$ALERT_CURRENT to READONLY_USER; GRANT SELECT ON SYSMAN.MGMT$EVENTS to READONLY_USER; GRANT SELECT ON SYSMAN.MGMT$METRIC_DETAILS to READONLY_USER; GRANT SELECT ON SYSMAN.MGMT$TARGET to READONLY_USER; GRANT SELECT ON SYSMAN.MGMT$TARGET_ASSOCIATIONS to READONLY_USER; GRANT SELECT ON SYSMAN.MGMT$TARGET_PROPERTIES to READONLY_USER; GRANT SELECT ON SYSMAN.MGMT$TARGET_TYPE to READONLY_USER;