#***************************************************************************
# $Copyright: Copyright (c) 2022 Veritas Technologies LLC. All rights reserved $
#***************************************************************************
#
# ---------------------------------------------------------------------------
#                  bporaimp_table_to_user.param
# ---------------------------------------------------------------------------
#
#  Restores a single table from a NetBackup XML archive and inserts
#  the data into Oracle.
#  The table exported was owned by a different user and will be
#  imported to another user account.
#  The latest archive is used by default.
#
#  Script run by:
#      bporaimp parfile=bporaimp_table_to_user.param
#
# ---------------------------------------------------------------------------
#
#  Name of the archive
#
NAME = ArchiveName
#
#  Table name
#  If the archive contains multiple tables owned by different users
#  and the TABLES parameter is used, only a single FROMUSER can be
#  specified
#
TABLES = table1
#
#  Table owner in archive
#
FROMUSER = username1
#
#  Table owner for imported data
#
TOUSER = username2
#
#  Oracle login credentials 
#  The Oracle USERID that exported the tables must be the same as the
#  Oracle USERID that is importing the tables.
#
USERID = username1/password
#
#  File name to receive informational and error messages
#
LOG = /db/oracle/logs/archive/bporaimp_table_to_user.log
#
#  NetBackup master server
#
NB_ORA_SERV = ServerName
#
#  NetBackup Oracle client
#
NB_ORA_CLIENT = ClientName
