utl_file.invalid_&&firstparm : UTL_FILE « System Packages « Oracle PL/SQL Tutorial






SQL>
SQL> begin
  2     raise utl_file.invalid_&&firstparm;
  3  exception
  4      when others then dbms_output.put_line(sqlcode);
  5         dbms_output.put_line(sqlerrm);
  6  end;
  7  /
old   2:    raise utl_file.invalid_&&firstparm;
new   2:    raise utl_file.invalid_--








31.38.UTL_FILE
31.38.1.File open and close with UTL_FILE package
31.38.2.File open flags
31.38.3.Save table records to a file
31.38.4.Use UTL_FILE package to create a file
31.38.5.Open a file with mode passed in
31.38.6.utl_file.invalid_&&firstparm
31.38.7.UTL_File related exception
31.38.8.UTL_FILE.IS_OPEN
31.38.9.A PL/SQL block to read an operating system file called BLOB.JPG that contains 1 row of binary data.