Delete Credentials
The PL/SQL package DBMS_CLOUD
provides the ability to store your object storage
credentials in the database using the procedure DBMS_CLOUD.CREATE_CREDENTIAL
. You remove credentials with DBMS_CLOUD.DROP_CREDENTIAL
.
For example, to remove the credential named DEF_CRED_NAME
, run the following command:
BEGIN
DBMS_CLOUD.DROP_CREDENTIAL
('DEF_CRED_NAME');
END;
For more information about the DBMS_CLOUD
procedures and parameters, see Summary of DBMS_CLOUD Subprograms.