Monday, June 20, 2016

Oracle: Create Directory and Grant Access


create or replace directory oradir as '/path/to/destination';
GRANT READ,WRITE on directory ora_dir to public;
GRANT READ,WRITE on directory ora_dir to user1;

No comments:

Post a Comment