oracle-dba
Installation
SKILL.md
Oracle Autonomous Database - Expert Knowledge
NEVER Do This
NEVER use ADMIN user in application code
ADMIN has full database control; audit trail shows all actions as ADMIN (no accountability); ADMIN cannot be locked/disabled without breaking automation.
-- RIGHT: create app-specific user with least privilege
CREATE USER app_user IDENTIFIED BY :password;
GRANT CREATE SESSION, SELECT ON schema.table TO app_user;
NEVER scale ECPUs without checking wait events first