Oracle
 sql >> Database >  >> RDS >> Oracle

Come testare i permessi di lettura/scrittura del filesystem della directory Oracle?

Puoi usare il UTL_FILE pacchetto. Ad esempio, questo verificherà che puoi creare un nuovo file chiamato some_new_file_name.txt nella directory e scrivervi i dati

DECLARE
  l_file utl_file.file_type;
BEGIN
  l_file := utl_file.fopen( 'EXT_DATA_FILES', 'some_new_file_name.txt', 'W' );
  utl_file.put_line( l_file, 'Here is some text' );
  utl_file.fclose( l_file );
END;

Questo verificherà che un file chiamato existing_file_name.txt esiste ed è leggibile

DECLARE
  l_exists     boolean;
  l_size       integer;
  l_block_size integer;
BEGIN
  utl_file.fgetattr( 'EXT_DATA_FILES', 
                     'existing_file_name.txt', 
                     l_exists, 
                     l_size, 
                     l_block_size );
   if( l_exists )
   then
     dbms_output.put_line( 'The file exists and has a size of ' || l_size );
   else
     dbms_output.put_line( 'The file does not exist or is not visible to Oracle' );
   end if;
END;