AWS command refrence for Oracle DBA
CLI reference Create/Drop a Directory : rdsadmin.rdsadmin_util.create_directory is the procedure that can be used to create a directory for Oracle DB in amazon RDS.10,000 directories can be created,all allocated in your main data storage space . exec rdsadmin.rdsadmin_util.create_directory(p_directory_name => 'product_descriptions'); rdsadmin.rdsadmin_util.drop_directory is the procedure to drop the directory in database . if we drop directory the files which are present in the drop directory are not removed and will be still visble as the rdsadmin.rdsadmin_util.create_directory procedure can reuse pathnames, files in dropped directories can appear in a newly created directory. exec rdsadmin.rdsadmin_util.drop_directory(p_directory_name => 'product_descriptions'); it is always recomended to clear out the files in respective directory before droping the directory . List & Remove Files from a Directory: rdsadmin.rds_f...