irut@/home/oracle/dba/scripts: cat all_tables.sql set echo off spool SCHEMAS_TABS.txt set sqlblanklines off set linesize 50 set pagesize 0 set heading off set timing off set termout off set feedback off SELECT DISTINCT OBJECT_NAME FROM USER_OBJECTS WHERE OBJECT_TYPE = 'TABLE'; spool off quit
ERROR: ORA-07391: sftopn: fopen error, unable to open text file. - SOLUTION - Specify file locations & try to create the file again. Like below SQL> create pfile='/backup/expdp/initdev.ora' from spfile='/oracle/product/10.2.0/db_1/dbs/spfiledev.ora'; File created. Thank You !
Comments
Post a Comment