#*************************************************************************** # $Copyright: Copyright (c) 2022 Veritas Technologies LLC. All rights reserved $ #*************************************************************************** # # --------------------------------------------------------------------------- # bporaexp_table_to_files.param # --------------------------------------------------------------------------- # # Exports in XML format a single table to a set of XML files. # # Script run by: # bporaexp parfile=bporaexp_table_to_files.param # # --------------------------------------------------------------------------- # # Maximum number of rows fetched at a time # ROW_BUFFER = 1000 # # Name of the archive # The master XML schema file will be called ArchiveName.xsd # NAME = ArchiveName # # Name of the table to be archived # The table XML schema file will be called table1.xsd # The table XML data file will be called table1.xml # TABLES = table1 # # The name of the directory for the output # # The master XML schema file is created: # /db/oracle/xml/archive/ArchiveName.xsd # # The subdirectory is created: # /db/oracle/xml/archive/USERNAME1 # # The table schema and XML files are created: # /db/oracle/xml/archive/USERNAME1/TABLE1.xsd # /db/oracle/xml/archive/USERNAME1/TABLE1.xml # DIRECTORY = /db/oracle/xml/archive # # Oracle login credentials # USERID = username1/password # # File name to receive informational and error messages # LOG = /db/oracle/logs/archive/bporaexp_table_to_files.log