-- ============================================================ -- Step 1: create the PostgreSQL credential. -- Run only this statement after replacing in the -- Worksheet. Never save the actual password in this file. -- Redmine: #730 -- ============================================================ BEGIN DBMS_CLOUD.CREATE_CREDENTIAL( credential_name => 'HMM_RDS_PG_CRED', username => 'postgres', password => '' ); END; / -- Passwords are never returned by ALL_CREDENTIALS. SELECT credential_name, username FROM all_credentials WHERE credential_name = 'HMM_RDS_PG_CRED';