Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Last active August 8, 2019 15:07
ords-enable-schema.sql
BEGIN
    /* enable ORDS for schema */
    ORDS.ENABLE_SCHEMA(p_enabled => TRUE,
                       p_schema => 'USERSVC',
                       p_url_mapping_type => 'BASE_PATH',
                       p_url_mapping_pattern => 'usersvc',
                       p_auto_rest_auth => TRUE);
    COMMIT;
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment