11.3 DROP_CREDENTIAL Procedure

This procedure drops a credential definition.

Syntax

PROCEDURE DROP_CREDENTIAL (
    p_credential_static_id  IN VARCHAR2 );

Parameters

Table 11-3 DROP_CREDENTIAL Parameters

Parameter Description
p_credential_static_id The credential static ID.

Example

The following example drops the credential definition "OAuth Login."

BEGIN
   -- first set the workspace
   apex_util.set_workspace(p_workspace => 'MY_WORKSPACE');

   apex_credential.drop_credential (
       p_credential_static_id => 'OAUTH_LOGIN );
END;