Está en la página 1de 14

JD Edwards EnterpriseOne

Instructions for Importing


Database Dump and Par Files






December 2012

JD Edwards EnterpriseOne Instructions for Importing Database Dump and Par Files
Copyright 2012, Oracle and/ or its affiliates. All rights reserved.
This software and related documentation are provided under a license agreement containing restrictions on use and
disclosure and are protected by intellectual property laws. Except as exp ressly permitted in your license agreement
or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute,
exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or
decompilation of this software, unless required by law for interoperability, is prohibited.
The information contained herein is subject to change without notice and is not warranted to be error -free. If you find
any errors, please report them to us in writing.
If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf
of the U.S. Government, the following notice is applicable:
U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data
delivered to U.S. Government customers are "commercial computer software" or "commercial technical data"
pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such,
the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set
forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract,
the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007). Oracle
America, Inc., 500 Oracle Parkway, Redwood City, CA 94065.
This software or hardware is developed for general use in a variety of information management app lications. It is not
developed or intended for use in any inherently dangerous applications, including applications that may create a risk
of personal injury. If you use this software or hardware in dangerous applications, then you shall be responsible to
take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle Corporation and
its affiliates disclaim any liability for any damages caused by use of this software or hardware in dangerous
applications.
Oracle and Java are registered trademarks of Oracle and/ or its affiliates. Other names may be trademarks of their
respective owners.
Intel and Intel Xeon are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks are used
under license and are trademarks or registered trademarks of SPARC International, Inc. AMD, Opteron, the AMD
logo, and the AMD Opteron logo are trademarks or registered trademarks of Advanced Micro Devices. UNIX is a
registered trademark of The Open Group.
This software or hardware and documentation may provide access to or information on content, products, and
services from third parties. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all
warranties of any kind with respect to third -party content, products, and services. Oracle Corporation and its
affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of third -party
content, products, or services.

Instructions for Importing Database Dump and Par Files
Copyright 2012, Oracle and/or its affiliates. All rights reserved.

iii
Contents
Introduction ............................................................................................................................................ 4
Importing the Dump File ........................................................................................................................ 5
Copy the Dump Files and Scripts ........................................................................................................ 5
Change the Local Database Password to a User-defined Password .................................................. 5
Create Tablespaces ............................................................................................................................. 6
Create User ......................................................................................................................................... 6
Import the Dump File ......................................................................................................................... 7
Change the Local Database Password to Encrypted Password .......................................................... 7
Change the Datasource ...................................................................................................................... 8
Import Par Files ...................................................................................................................................... 9
Refreshing the Data .............................................................................................................................. 12
Change the Local Database Password to a User-defined Password ................................................ 12
Drop Tablespaces ............................................................................................................................. 13
Create Tablespaces ........................................................................................................................... 13
Import the Dump File ....................................................................................................................... 14
Change the Local Database Password to Encrypted Password ........................................................ 14




Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 4
Introduction
This document briefs you about importing the database dump file and
importing par files for application versions, batch versions, and UDCs.
The database dump is needed to pre-load the setup and transaction data
that the sample scripts will run against. The par files contains versions for
applications/UBEs and UDCs. These are required for the sample scripts
that calls specific application versions and batch versions for which there
are unique processing options pre-set that controls the Applications/UBEs
to function according to what the script is intended to test.
This document also covers the procedure to perform the refresh of the data.
The sample scripts once run will update the transaction data which will
impact validations during the second run of the script. So before a script is
run the second time, the data should be refreshed.

Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 5
Importing the Dump File
The database dump is needed to pre-load the setup and transaction data
that the sample scripts run against.
Copy the Dump Files and Scripts
1. Create a folder called qeauto on the C: drive:
C:\qeauto
2. Extract the db dump.zip and copy the three files to C:\qeauto.
3. Create a folder called Tables in C:\qeauto:
C:\qeauto\Tables
Change the Local Database Password to a User-defined Password
1. Access ReconfigureMSDE.exe from the following location:
JDEInstall Directory:\JDEdwards\E910\system\bin32

Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 6
2. Change the password from Encrypted E1 Password to the following
new password: Oracle123
Create Tablespaces
Create the following tablespaces:
QEAUTODTAT
QEAUTODTAI
From the SQL prompt, run the following queries:
(Note: You can connect to SQL using the command
sqlplus sys/Oracle123@E1Local as sysdba)















Create User
Create the following user:
QEAUTODTA
From the SQL prompt, run the following query:



create tablespace QEAUTODTAT
logging
datafile 'C:\qeauto\Tables\qeautodtat01.dbf' size 1500M autoextend on next 60M maxsize
5000M
extent management local autoallocate
segment space management auto
online;

create tablespace QEAUTODTAI
logging
datafile 'C:\qeauto\Tables\qeautodtai01.dbf' size 1500M autoextend on next 60M maxsize
5000M
extent management local autoallocate
segment space management auto
online;

create user QEAUTODTA identified by QEAUTODTA
default tablespace QEAUTODTAT
temporary tablespace TEMP
quota unlimited on QEAUTODTAT
quota unlimited on QEAUTODTAI;
Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 7


Import the Dump File
1. Run the QEAUTODTAIMP.BAT from the following directory:
C:\qeauto
2. Wait for the import to finish.
Note: Ignore the 3 errors
Change the Local Database Password to Encrypted Password
1. Access ReconfigureMSDE.exe app from the following location:
JDEInstall Directory:\JDEdwards\E910\system\bin32

2. Change the password from Oracle123 back to the Encrypted E1
Password.
Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 8
Change the Datasource
Change the business datasource tablespace name to QEAUTODTA, as
shown in the following illustration:
1. From the EnterpriseOne Development Client console, navigate to
System Administration Tools -> System Administration Tools -> Data
Source Management -> Database Data Sources
2. Select data source System Local
3. For the Data source Business Data Local, change the Tablespace
Name to QEAUTODTA


Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 9
Import Par Files
The par files contain versions of applications, UBEs, and UDCs set with
unique processing options. The sample scripts call these specific application
versions and batch versions and control the applications and batch versions
so that they function according to what the script is intended to test.
1. Extract the par files.zip that contains application versions, batch
versions, and UDCs for each of the scripts to a local folder.
2. Access OMW.

3. Click Restore.
Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 10

4. On the dialog, click Yes.

Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 11
5. On the dialog, click Yes.

6. Navigate to the par file location and click Open.
7. Repeat the above steps for each par file.

Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 12
Refreshing the Data
When the sample scripts are run for the first time, they update the
transaction data, which impacts validations during the second run of the
scripts. Therefore, before you run a script for the second time, you need to
refresh the data. This section describes how to perform the data refresh.
Change the Local Database Password to a User-defined Password
1. Access ReconfigureMSDE.exe from the following location:
JDEInstall Directory:\JDEdwards\E910\system\bin32

2. Change the password from Encrypted E1 Password to the following
new password: Oracle123

Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 13
Drop Tablespaces
1. Close the EnterpriseOne console.
2. Drop both tablespaces QEAUTODTAT and QEAUTODTAI




3. Verify that the QEAUTODTAI01.DBF and QEAUTODTAT01.DBF files
are deleted from C:\qeauto\Tables folder. If not, delete both files.
Create Tablespaces
Create the following tablespaces:
QEAUTODTAT
QEAUTODTAI
From the SQL prompt, run the following queries:













create tablespace QEAUTODTAT
logging
datafile 'C:\qeauto\Tables\qeautodtat01.dbf' size 1500M autoextend on next 60M maxsize 5000M
extent management local autoallocate
segment space management auto
online;

create tablespace QEAUTODTAI
logging
datafile 'C:\qeauto\Tables\qeautodtai01.dbf' size 1500M autoextend on next 60M maxsize 5000M
extent management local autoallocate
segment space management auto
online;

drop tablespace QEAUTODTAT including contents cascade constraints;
drop tablespace QEAUTODTAI including contents cascade constraints;
Instructions for Importing Database Dump and Par Files

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 14
Import the Dump File
1. Run the QEAUTODTAIMP.BAT from the following directory:
C:\qeauto
2. Wait for the import to finish.
Change the Local Database Password to Encrypted Password
1. Access ReconfigureMSDE.exe from the following location:
JDEInstall Directory:\JDEdwards\E910\system\bin32

2. Change the password from Oracle123 back to Encrypted E1 Password.

También podría gustarte