In this step, you will verify that you’re connected to the correct Oracle Pluggable Database (PDB).
Verify the PDB Name
Run the following command to ensure you are connected to the correct PDB, named “TeamServer”:
SELECT name FROM v$pdbs;
Issue the following SQL statements to create a new user and grant necessary permissions for IDERA ER/Studio TeamServer:
CREATE USER erstudio IDENTIFIED BY YourStrongPassword;
GRANT CONNECT, resource TO erstudio;
GRANT SELECT_CATALOG_ROLE TO erstudio;
GRANT CREATE INDEXTYPE TO erstudio;
GRANT CREATE PROCEDURE TO erstudio;
GRANT CREATE SEQUENCE TO erstudio;
GRANT CREATE SESSION TO erstudio;
GRANT CREATE SYNONYM TO erstudio;
GRANT CREATE TABLE TO erstudio;
GRANT CREATE TRIGGER TO erstudio;
GRANT CREATE TYPE TO erstudio;
GRANT CREATE VIEW TO erstudio;
GRANT UNLIMITED TABLESPACE TO erstudio;
GRANT EXECUTE ON DBMS_SQL TO erstudio;
GRANT EXECUTE ON DBMS_LOB TO erstudio;
GRANT EXECUTE ON DBMS_RANDOM TO erstudio;
After user creation, configure the Oracle connection using the IDERA ER/Studio TeamServer Configurator.
Perform final checks to verify everything is configured correctly.
Now, you can fully utilize the features of IDERA ER/Studio TeamServer.
By following the steps outlined in this guide, you have successfully connected to your Oracle Pluggable Database, created the necessary user, and configured permissions for IDERA ER/Studio TeamServer. This setup ensures that your database environment is ready for seamless collaboration and データ管理 within the ER/Studio ecosystem.
With this foundation in place, your organization can leverage the full capabilities of IDERA ER/Studio to enhance productivity and governance in managing data assets.