Autonomous DB + DBMS_CLOUD = Export Data
Follow these steps to bypass that annoying “Insufficient Privileges” message 😫 when attempting to export a .dmp
file to Object Storage.
Step 1: Generate an RSA Key Pair on Windows
- Open PowerShell or Git Bash:
- Open PowerShell or Git Bash on your Windows computer.
- Generate the RSA Key Pair:
- Run the following command to generate a key pair in PEM format:
ssh-keygen -t rsa -b 2048 -m PEM -f C:\User\profile\you_folder\oci_api_key.pem
Explanation of each parameter:
- -t rsa: Generates an RSA key.
- -b 2048: Uses a 2048-bit key size (recommended for security).
- -m PEM: Ensures the key is in PEM format.
2