Enabling Seamless Data Access for JD Edwards EnterpriseOne

Size: px
Start display at page:

Download "Enabling Seamless Data Access for JD Edwards EnterpriseOne"

Transcription

1 Enabling Seamless Data Access for JD Edwards EnterpriseOne 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without prior consent of Informatica Corporation. All other company and product names may be trade names or trademarks of their respective owners and/or copyrighted materials of such owners.

2 Abstract With seamless data access, you can view both source and archived data together in a single view. This article provides information on how to configure Data Archive and JD Edwards EnterpriseOne to enable seamless data access of source and archived data. Supported Versions Data Archive Table of Contents Overview Step 1. Create Tablespace Step 2. Create Seamless Access User Roles Sample Script to Create Combined User Role Sample Script to Create Archive User Role Step 3: Grant Privileges to User Roles Sample Script to Grant Privileges to Seamless Access User Role... 4 Sample Script to Grant Privileges to JDE User Step 4. Create a Link Between Source and History Database Step 5. Modify the tnsnames.ora File Step 6. Create Tables in the Archive Schema Step 7. Create Indexes Step 8. Create Synonyms and Views Create Seamless Data Access Job Parameters Running the Create Seamless Data Access Job Step 9. Create Seamless Access Roles in JD Edwards EnterpriseOne Step 10. Assign Seamless Access Roles to Environments Step 11. Assign Seamless Access Roles to Default User Step 12. Assign Seamless Access Roles to Applications Step 13. Create Seamless Access Data Sources Step 14. Assign Data Sources to Environments View Combined and Archive-Only Data Overview You can enable seamless access to create a view of source and data archived to the history database. The view of source and archive data is called the combined view. You can also enable seamless access to create an archive view that contains just archive data. The associated schemas and roles for each view are referred to as combined and archive. Complete the following tasks to enable seamless access for JD Edwards EnterpriseOne application data: 1. Create a tablespace. 2. Create user roles for seamless access. 2

3 3. Grant privileges to seamless access users. 4. Create a database link to access the archive user. 5. Modify the tnsnames.ora file. 6. Create tables in the archive schema. 7. Create indexes. 8. Create synonyms and views. 9. Create seamless access roles in JD Edwards EnterpriseOne. 10. Assign roles to environments. 11. Assign roles to the default JDE user. 12. Assign roles to applications. 13. Create data sources for combined and archive data. 14. Assign data sources to environments. Step 1. Create Tablespace Create the tablespace to allocate space on the repository database. Customize the following sample script to specify the location and size of the tablespace: CREATE TABLESPACE "<tablespace name>" NOLOGGING DATAFILE 'C:\APP\<user>\ORADATA\ORCL\"<tablespace name>".dbf' SIZE 1024M AUTOEXTEND OFF EXTENT MANAGEMENT LOCAL ONLINE SEGMENT SPACE MANAGEMENT AUTO 1. Copy the sample script to a text editor. 2. Replace <tablespace name> with a name of the tablespace. 3. Specify the path to the DBF file. 4. Optionally, change the size of the tablespace. Default is 1,024 MB. 5. Save the DBF file to the \APP\<user>\ORADATA\ORCL\ folder. 6. Run the DBF file. Step 2. Create Seamless Access User Roles Create user roles to access either the combined or archive schemas. Customize the sample scripts in this section to create seamless access user roles. Typical names for the user roles are AMCOMB to view source and archive data together in the combined view, and AMARCHIVE to view only archive data. Complete the following steps for each role: 1. Copy the sample script to a text editor. 2. Optionally, replace the name of the user role from AMCOMB or AMARCHIVE to names that easily indicate the type of seamless access view the role has permissions to. 3. Replace <password> with the password. 4. Replace <tablespace name> with the name of the tablespace. 5. Save the script. 6. Run the script. 3

4 Sample Script to Create Combined User Role The following script is an example used to create the combined user role: CREATE USER AMCOMB IDENTIFIED BY <password> DEFAULT TABLESPACE <tablespace name> TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK Sample Script to Create Archive User Role The following script is an example used to create the archive user role: CREATE USER AMARCHIVE IDENTIFIED BY <password> DEFAULT TABLESPACE <tablespace name> TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK Step 3: Grant Privileges to User Roles You must assign privileges to the seamless access user roles and the JD Edwards (JDE) default user. Customize the sample script in this section to grant privileges to the combined, archive and JD Edwards (JDE) default user roles. 1. Copy the sample script for the seamless access user role to a text editor. 2. Replace <user> with the name of the user role. For example, AMCOMB or AMARCHIVE. 3. Save the script. 4. Run the script. 5. Repeat steps 1 through 4 for each seamless access user role. 6. Copy the sample script for the JDE default user to a text editor. 7. Replace JDE with the user ID of the JDE default user. 8. Save the script. 9. Run the script. Sample Script to Grant Privileges to Seamless Access User Role The following script is an example used to grant privileges to the combined or archive user role: GRANT CONNECT TO <user>; GRANT EXECUTE_CATALOG_ROLE TO <user>; GRANT EXP_FULL_DATABASE TO <user>; GRANT IMP_FULL_DATABASE TO <user>; GRANT JAVASYSPRIV TO <user>; GRANT JAVA_ADMIN TO <user>; GRANT RESOURCE TO <user>; GRANT SELECT_CATALOG_ROLE TO <user>; ALTER USER <user> DEFAULT ROLE ALL; GRANT ALTER ANY INDEX TO <user>; GRANT ALTER ANY INDEXTYPE TO <user>; GRANT ALTER ANY LIBRARY TO <user>; GRANT ALTER ANY PROCEDURE TO <user>; GRANT ALTER ANY SEQUENCE TO <user>; 4

5 GRANT ALTER ANY SNAPSHOT TO <user>; GRANT ALTER ANY TABLE TO <user>; GRANT ALTER ANY TRIGGER TO <user>; GRANT ALTER ANY TYPE TO <user>; GRANT ALTER SESSION TO <user>; GRANT ALTER TABLESPACE TO <user>; GRANT ANALYZE ANY TO <user>; GRANT CREATE ANY INDEX TO <user>; GRANT CREATE ANY INDEXTYPE TO <user>; GRANT CREATE ANY LIBRARY TO <user>; GRANT CREATE ANY PROCEDURE TO <user>; GRANT CREATE ANY SEQUENCE TO <user>; GRANT CREATE ANY SNAPSHOT TO <user>; GRANT CREATE ANY SYNONYM TO <user>; GRANT CREATE ANY TABLE TO <user>; GRANT CREATE ANY TRIGGER TO <user>; GRANT CREATE ANY TYPE TO <user>; GRANT CREATE ANY VIEW TO <user>; GRANT CREATE DATABASE LINK TO <user>; GRANT CREATE INDEXTYPE TO <user>; GRANT CREATE LIBRARY TO <user>; GRANT CREATE PROCEDURE TO <user>; GRANT CREATE SEQUENCE TO <user>; GRANT CREATE SESSION TO <user>; GRANT CREATE SYNONYM TO <user>; GRANT CREATE TABLE TO <user>; GRANT CREATE TABLESPACE TO <user>; GRANT CREATE TRIGGER TO <user>; GRANT CREATE TYPE TO <user>; GRANT CREATE USER TO <user>; GRANT CREATE VIEW TO <user>; GRANT DELETE ANY TABLE TO <user>; GRANT DROP ANY INDEX TO <user>; GRANT DROP ANY INDEXTYPE TO <user>; GRANT DROP ANY LIBRARY TO <user>; GRANT DROP ANY PROCEDURE TO <user>; GRANT DROP ANY SEQUENCE TO <user>; GRANT DROP ANY SNAPSHOT TO <user>; GRANT DROP ANY SYNONYM TO <user>; GRANT DROP ANY TABLE TO <user>; GRANT DROP ANY TRIGGER TO <user>; GRANT DROP ANY TYPE TO <user>; GRANT DROP ANY VIEW TO <user>; GRANT DROP PUBLIC DATABASE LINK TO <user>; GRANT DROP TABLESPACE TO <user>; GRANT EXECUTE ANY INDEXTYPE TO <user>; GRANT EXECUTE ANY LIBRARY TO <user>; GRANT EXECUTE ANY PROCEDURE TO <user>; GRANT EXECUTE ANY TYPE TO <user>; GRANT GLOBAL QUERY REWRITE TO <user>; GRANT INSERT ANY TABLE TO <user>; GRANT QUERY REWRITE TO <user>; GRANT SELECT ANY SEQUENCE TO <user>; GRANT SELECT ANY TABLE TO <user>; GRANT UNLIMITED TABLESPACE TO <user>; GRANT UPDATE ANY TABLE TO <user>; Sample Script to Grant Privileges to JDE User The following script is an example used to grant privileges to the default JDE user: GRANT ADMINISTER ANY SQL TUNING SET TO JDE; GRANT ADMINISTER DATABASE TRIGGER TO JDE; GRANT ADMINISTER SQL TUNING SET TO JDE; GRANT ADVISOR TO JDE; GRANT ALTER ANY CLUSTER TO JDE; GRANT ALTER ANY DIMENSION TO JDE; GRANT ALTER ANY EVALUATION CONTEXT TO JDE; GRANT ALTER ANY INDEX TO JDE; 5

6 6 GRANT ALTER ANY INDEXTYPE TO JDE; GRANT ALTER ANY LIBRARY TO JDE; GRANT ALTER ANY MATERIALIZED VIEW TO JDE; GRANT ALTER ANY OPERATOR TO JDE; GRANT ALTER ANY OUTLINE TO JDE; GRANT ALTER ANY PROCEDURE TO JDE; GRANT ALTER ANY ROLE TO JDE; GRANT ALTER ANY RULE TO JDE; GRANT ALTER ANY RULE SET TO JDE; GRANT ALTER ANY SEQUENCE TO JDE; GRANT ALTER ANY SQL PROFILE TO JDE; GRANT ALTER ANY TABLE TO JDE; GRANT ALTER ANY TRIGGER TO JDE; GRANT ALTER ANY TYPE TO JDE; GRANT ALTER DATABASE TO JDE; GRANT ALTER PROFILE TO JDE; GRANT ALTER RESOURCE COST TO JDE; GRANT ALTER ROLLBACK SEGMENT TO JDE; GRANT ALTER SESSION TO JDE; GRANT ALTER SYSTEM TO JDE; GRANT ALTER TABLESPACE TO JDE; GRANT ALTER USER TO JDE; GRANT ANALYZE ANY TO JDE; GRANT ANALYZE ANY DICTIONARY TO JDE; GRANT AUDIT ANY TO JDE; GRANT AUDIT SYSTEM TO JDE; GRANT BACKUP ANY TABLE TO JDE; GRANT BECOME USER TO JDE; GRANT CHANGE NOTIFICATION TO JDE; GRANT COMMENT ANY TABLE TO JDE; GRANT CREATE ANY CLUSTER TO JDE; GRANT CREATE ANY CONTEXT TO JDE; GRANT CREATE ANY DIMENSION TO JDE; GRANT CREATE ANY DIRECTORY TO JDE; GRANT CREATE ANY EVALUATION CONTEXT TO JDE; GRANT CREATE ANY INDEX TO JDE; GRANT CREATE ANY INDEXTYPE TO JDE; GRANT CREATE ANY JOB TO JDE; GRANT CREATE ANY LIBRARY TO JDE; GRANT CREATE ANY MATERIALIZED VIEW TO JDE; GRANT CREATE ANY OPERATOR TO JDE; GRANT CREATE ANY OUTLINE TO JDE; GRANT CREATE ANY PROCEDURE TO JDE; GRANT CREATE ANY RULE TO JDE; GRANT CREATE ANY RULE SET TO JDE; GRANT CREATE ANY SEQUENCE TO JDE; GRANT CREATE ANY SQL PROFILE TO JDE; GRANT CREATE ANY SYNONYM TO JDE; GRANT CREATE ANY TABLE TO JDE; GRANT CREATE ANY TRIGGER TO JDE; GRANT CREATE ANY TYPE TO JDE; GRANT CREATE ANY VIEW TO JDE; GRANT CREATE CLUSTER TO JDE; GRANT CREATE DATABASE LINK TO JDE; GRANT CREATE DIMENSION TO JDE; GRANT CREATE EVALUATION CONTEXT TO JDE; GRANT CREATE EXTERNAL JOB TO JDE; GRANT CREATE INDEXTYPE TO JDE; GRANT CREATE JOB TO JDE; GRANT CREATE LIBRARY TO JDE; GRANT CREATE MATERIALIZED VIEW TO JDE; GRANT CREATE OPERATOR TO JDE; GRANT CREATE PROCEDURE TO JDE; GRANT CREATE PROFILE TO JDE; GRANT CREATE PUBLIC DATABASE LINK TO JDE; GRANT CREATE PUBLIC SYNONYM TO JDE; GRANT CREATE ROLE TO JDE; GRANT CREATE ROLLBACK SEGMENT TO JDE; GRANT CREATE RULE TO JDE; GRANT CREATE RULE SET TO JDE; GRANT CREATE SEQUENCE TO JDE;

7 7 GRANT CREATE SESSION TO JDE; GRANT CREATE SYNONYM TO JDE; GRANT CREATE TABLE TO JDE; GRANT CREATE TABLESPACE TO JDE; GRANT CREATE TRIGGER TO JDE; GRANT CREATE TYPE TO JDE; GRANT CREATE USER TO JDE; GRANT CREATE VIEW TO JDE; GRANT DEBUG ANY PROCEDURE TO JDE; GRANT DEBUG CONNECT SESSION TO JDE; GRANT DELETE ANY TABLE TO JDE; GRANT DEQUEUE ANY QUEUE TO JDE; GRANT DROP ANY CLUSTER TO JDE; GRANT DROP ANY CONTEXT TO JDE; GRANT DROP ANY DIMENSION TO JDE; GRANT DROP ANY DIRECTORY TO JDE; GRANT DROP ANY EVALUATION CONTEXT TO JDE; GRANT DROP ANY INDEX TO JDE; GRANT DROP ANY INDEXTYPE TO JDE; GRANT DROP ANY LIBRARY TO JDE; GRANT DROP ANY MATERIALIZED VIEW TO JDE; GRANT DROP ANY OPERATOR TO JDE; GRANT DROP ANY OUTLINE TO JDE; GRANT DROP ANY PROCEDURE TO JDE; GRANT DROP ANY ROLE TO JDE; GRANT DROP ANY RULE TO JDE; GRANT DROP ANY RULE SET TO JDE; GRANT DROP ANY SEQUENCE TO JDE; GRANT DROP ANY SQL PROFILE TO JDE; GRANT DROP ANY SYNONYM TO JDE; GRANT DROP ANY TABLE TO JDE; GRANT DROP ANY TRIGGER TO JDE; GRANT DROP ANY TYPE TO JDE; GRANT DROP ANY VIEW TO JDE; GRANT DROP PROFILE TO JDE; GRANT DROP PUBLIC DATABASE LINK TO JDE; GRANT DROP PUBLIC SYNONYM TO JDE; GRANT DROP ROLLBACK SEGMENT TO JDE; GRANT DROP TABLESPACE TO JDE; GRANT DROP USER TO JDE; GRANT ENQUEUE ANY QUEUE TO JDE; GRANT EXECUTE ANY CLASS TO JDE; GRANT EXECUTE ANY EVALUATION CONTEXT TO JDE; GRANT EXECUTE ANY INDEXTYPE TO JDE; GRANT EXECUTE ANY LIBRARY TO JDE; GRANT EXECUTE ANY OPERATOR TO JDE; GRANT EXECUTE ANY PROCEDURE TO JDE; GRANT EXECUTE ANY PROGRAM TO JDE; GRANT EXECUTE ANY RULE TO JDE; GRANT EXECUTE ANY RULE SET TO JDE; GRANT EXECUTE ANY TYPE TO JDE; GRANT EXEMPT ACCESS POLICY TO JDE; GRANT EXEMPT IDENTITY POLICY TO JDE; GRANT EXPORT FULL DATABASE TO JDE; GRANT FLASHBACK ANY TABLE TO JDE; GRANT FORCE ANY TRANSACTION TO JDE; GRANT FORCE TRANSACTION TO JDE; GRANT GLOBAL QUERY REWRITE TO JDE; GRANT GRANT ANY OBJECT PRIVILEGE TO JDE; GRANT GRANT ANY PRIVILEGE TO JDE; GRANT GRANT ANY ROLE TO JDE; GRANT IMPORT FULL DATABASE TO JDE; GRANT INSERT ANY TABLE TO JDE; GRANT LOCK ANY TABLE TO JDE; GRANT MANAGE ANY FILE GROUP TO JDE; GRANT MANAGE ANY QUEUE TO JDE; GRANT MANAGE FILE GROUP TO JDE; GRANT MANAGE SCHEDULER TO JDE; GRANT MANAGE TABLESPACE TO JDE; GRANT MERGE ANY VIEW TO JDE; GRANT ON COMMIT REFRESH TO JDE;

8 GRANT QUERY REWRITE TO JDE; GRANT READ ANY FILE GROUP TO JDE; GRANT RESTRICTED SESSION TO JDE; GRANT RESUMABLE TO JDE; GRANT SELECT ANY DICTIONARY TO JDE; GRANT SELECT ANY SEQUENCE TO JDE; GRANT SELECT ANY TABLE TO JDE; GRANT SELECT ANY TRANSACTION TO JDE; GRANT UNDER ANY TABLE TO JDE; GRANT UNDER ANY TYPE TO JDE; GRANT UNDER ANY VIEW TO JDE; GRANT UNLIMITED TABLESPACE TO JDE; GRANT UPDATE ANY TABLE TO JDE; Step 4. Create a Link Between Source and History Database The history database contains the archive data. You must create a link between the source and history databases. This enables the seamless access job to access archive data. Customize the following script to create the link between the source and the history databases: CREATE PUBLIC DATABASE LINK HISTLINK CONNECT TO HISTSCHEMANAME IDENTIFIED BY HISTSCHEMANAME USING '(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<machine name>)(port=<port number>))) (CONNECT_DATA=(SERVICE_NAME=SID)))' 1. Copy the sample script to a text editor. 2. Replace the host and port information. 3. Save the script. 4. Run the script. Step 5. Modify the tnsnames.ora File Modify the tnsnames.ora file on the server to create aliases for the combined and archive schemas. This is necessary to configure the server plan. Change the host and port information for each schema. # tnsnames.ora Network Configuration File: E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\tnsnames.ora # generated by Oracle configuration tools. JDE900 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = INVR23ILM150)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = ORCL) ) ) ARCHIVE = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = INVR23ILM150)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = ORCL) ) ) COMBINED = (DESCRIPTION = (ADDRESS_LIST = 8

9 (ADDRESS = (PROTOCOL = TCP)(HOST = INVR23ILM150)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = ORCL) ) ) Step 6. Create Tables in the Archive Schema Use the Create Tables job to create tables in the archive schema in the destination repository. 1. Log in to the Informatica Data Archive user interface. 2. Click Jobs > Schedule a Job. 3. Click Schedule Jobs. 4. Enable Standalone Programs and click Add Item. A list of jobs appears. 5. Select Create Tables and click Select. The Create Table parameters appear on the Schedule Job page. 9

10 6. Choose the source and destination repositories from the drop-down lists. 7. Click Schedule to run the Create Tables job. A table is created in the archive schema of the destination repository for every table processed by an entity defined in the product family version of the source repository. 8. Click Jobs > View Current Jobs to monitor the job status. Wait until this job finishes before proceeding to the next task. Step 7. Create Indexes Run the Create Indexes job to create indexes for new managed tables and to create indexes that did not exist in the original application version. 1. Log in to the Informatica Data Archive user interface. 2. Click Jobs > Schedule a Job. 3. Click Schedule Jobs. 4. Enable Standalone Programs and click Add Item. 10

11 A list of jobs appears. 5. Select Create Indexes and click Select. The Create Indexes parameters appear on the Schedule Job page. 6. Choose the source and target repositories from the drop-down lists. 7. Click Schedule to run the Create Indexes job. 8. Click Jobs > View Current Jobs to monitor the job status. Wait until this job finishes before proceeding to the next task. Step 8. Create Synonyms and Views Each schema must be populated with the appropriate views and synonyms. The view for the archive schema selects data from the history table via a database link. The view for the combined schema selects data from the history table across a database link and the source table. These views are called base level seamless data access views. You can also create archive and combined schema views that reference these base views. These views are called dependent views. Use the Create Seamless Data Access job to create the combined and archive schemas, and populate them with the appropriate synonyms and views. Create Seamless Data Access Job Parameters The Create Seamless Data Access job includes the following parameters: Source Target Database with production data. Database with history data. Combined Schema Name Schema name for seamless access across the two databases. Combined Schema Password Schema password for seamless access across the two databases. Archive Schema Name Schema name for allowing access to history data. 11

12 Archive Schema Password Schema password for allowing access to history data. Combined / Archive Schema Location Specify whether schemas were created at the data source or data target. Database Link Name/Linked Server Name Database link name from data source to data target. Running the Create Seamless Data Access Job Use the Create Seamless Data Access job to create the combined and archive schemas, and populate them with the appropriate synonyms and views. 1. Click Jobs > Schedule a Job. 2. Click Schedule Jobs. 3. Enable Standalone Programs and click Add Item. A list of jobs appears. 4. Select Create Seamless Data Access and click Select. The Create Seamless Data Access job parameters appear on the Schedule Job page. 5. Enter or select a values for the parameters. 6. Click Schedule to run the Create Seamless Data Access job. 7. Click Jobs > View Current Jobs to monitor the job status. Wait until this job finishes before proceeding to the next task. 12

13 Step 9. Create Seamless Access Roles in JD Edwards EnterpriseOne You must create roles in JD Edwards EnterpriseOne to access the combined schema and the archive schema. Create a combined role and an archive role. 1. Log in to the JD Edwards EnterpriseOne user interface. The JD Edwards Solution Explorer window appears. 2. Open System Administration Tools > System Administration Tools > User Management. 3. Double-click User Profiles. The User Profiles page appears. 13

14 4. Enable Roles Only and click Add. The User Profile Revisions window appears. 5. Enter values for the parameters listed and click OK. Step 10. Assign Seamless Access Roles to Environments Assign the combined and archive roles to the appropriate environments. Complete the following steps for each seamless access role: 1. Open System Administration Tools > System Administration Tools > User Management. 2. Double-click User Profiles. The User Profiles window appears. 3. Enable Roles Only to view the list of roles. 4. Select a seamless access role and click Environments. The User Environment Revisions window appears with a list of environments. 14

15 5. Select an environment and click OK. You can select one environment at a time. Repeat this step for each environment that the seamless access role requires access to. Step 11. Assign Seamless Access Roles to Default User Assign the combined and archive roles to the default JDE user. Complete the following steps for each seamless access role: 1. Open System Administration Tools > System Administration Tools > User Management. 2. Double-click Role Relationships. The Work With Role Relationships window appears. 3. Enter the user ID. 4. Open the Available Roles folder. 5. Select a role from the Available Roles folder and click the left arrow to move it to the Assigned Roles folder. 6. Enter an effective date and expiration date. 7. Click OK. The seamless access role is assigned to the user. Step 12. Assign Seamless Access Roles to Applications Assign the combined and archive roles to the appropriate applications. Complete the following steps for each seamless access role: Note: By default, a role can access all applications until you specify applications that a role can access. 1. Open System Administration Tools > System Administration Tools > Security Maintenance. 2. Double-click Security Workbench. The Security Workbench window appears. 3. Click Applications from the menu pane on the left of the page. The Application Security window appears. 4. Click inside the User/Role field. A search icon appears. 5. Click the search icon. A list of users appear. 6. Select a user and click Select. The Application Security window appears with the user name in the User/Role field. 7. Click inside the Application field. A search icon appears. 8. Click the search icon. A list of applications appear. 9. Select an application and click Select. The Application Security window appears with the application name in the Application field. 10. Optionally, add more applications, one at a time. 15

16 11. Click Close. Step 13. Create Seamless Access Data Sources Create data sources for combined and archive schemas on each machine data source. Complete the following steps for each seamless access schema on each machine data source. For example, if there are two machine data sources, then you must complete this task four times to create the combined and archive data sources on each machine data source. 1. Open System Administration Tools > System Administration Tools > Data Source Management. 2. Double-click Database Data Sources. The Machine Search and Select page appears. 3. Select a machine data source from the list and click Select. The Work With Data Sources page appears. 4. Click Add to create a new data source. 5. Provide details for the new data source and click OK to save. Step 14. Assign Data Sources to Environments Assign the combined and archive data sources to the appropriate environments. Complete the following steps for each machine data source: 1. Open System Administration Tools > System Administration Tools > Data Source Management. 2. Double-click Object Configuration Manager. The Object Configuration Manager - Machine Search and Select page appears. 3. Select a machine data source. The Object Configuration Manager - Object Mapping Revisions page appears. 4. Click the find icon above the Environment Name field. A list of environments appear. 5. Select an environment and click Select. 6. Click Find and select an environment. The Object Configuration Manager - Object Mapping Revisions page appears. 7. Enter details for each field and click OK. The Object Configuration Manager - Work With Object Manager page appears. 8. Change the object status to Active for the combined and archive roles. 9. Click OK. View Combined and Archive-Only Data Log in to the JD Edwards EnterpriseOne application to access the seamless access combined or archive view. Log in to JD Edwards EnterpriseOne. Enter your user ID, password, environment, and role. 16

17 The following figure shows the JD Edwards EnterpriseOne log in page: Depending on the seamless access role you entered, you will see either the combined or archive view. If you entered the default *All Sysadmin role, you will see only source data. The following figure shows the combined view: The following figure shows the archive view: 17

18 The following figure shows only source data: Authors Suresh Vanka Peoplesoft Upgrade Specialist Murali Krishna Krishnamaneni ILM Development 18

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

INSTALL GUIDE BIOVIA INSIGHT 2.6

INSTALL GUIDE BIOVIA INSIGHT 2.6 INSTALL GUIDE BIOVIA INSIGHT 2.6 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr Getting Started Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr Getting Started Guide Safyr 7.1 This product is subject to the

More information

Installing and Configuring Oracle 10g Express Edition. for use with the ETM System

Installing and Configuring Oracle 10g Express Edition. for use with the ETM System Installing and Configuring Oracle 10g Express Edition for use with the ETM System Contents Oracle 10g XE Installation and Configuration 1 Preparing Oracle 10g XE for use with the ETM System...1 Installation...1

More information

INSTALL GUIDE BIOVIA INSIGHT 2016

INSTALL GUIDE BIOVIA INSIGHT 2016 INSTALL GUIDE BIOVIA INSIGHT 2016 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

Manually Defining Constraints in Enterprise Data Manager

Manually Defining Constraints in Enterprise Data Manager Manually Defining Constraints in Enterprise Data Manager 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

Oracle Database Vault

Oracle Database Vault Oracle Database Vault DBA Administrative Best Practices ORACLE WHITE PAPER MAY 2015 Table of Contents Introduction 2 Database Administration Tasks Summary 3 General Database Administration Tasks 4 Managing

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL:

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: A. Introduction Course Objectives, Course Agenda and Appendixes Used in this Course Overview of Oracle Database

More information

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Certification: Oracle Database 12c Administrator Certified Associate Exam: Oracle Database 12c: Installation and Administration

More information

Project management integrated into Outlook

Project management integrated into Outlook Project management integrated into Outlook InLoox PM 7.x configuration guide for Oracle Server An InLoox Whitepaper Published: October 2011 Copyright: InLoox GmbH You can find up-to-date information at

More information

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

Oracle Database 12c: Administration Workshop Ed 2 NEW

Oracle Database 12c: Administration Workshop Ed 2 NEW Oracle Database 12c: Administration Workshop Ed 2 NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will

More information

Using Data Replication with Merge Apply and Audit Apply in a Single Configuration

Using Data Replication with Merge Apply and Audit Apply in a Single Configuration Using Data Replication with Merge Apply and Audit Apply in a Single Configuration 2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

MDCStore 2.0 DATABASE. Installation Guide

MDCStore 2.0 DATABASE. Installation Guide MDCStore 2.0 DATABASE Installation Guide Molecular Devices MDCStore 2.0 Installation Guide Copyright Copyright 2008, MDS Analytical Technologies. All rights reserved. No part of this publication may be

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

Manually configuring Oracle 12c IBM

Manually configuring Oracle 12c IBM Manually configuring Oracle 12c IBM ii Manually configuring Oracle 12c Contents Manually configuring Oracle 12c.... 1 iii iv Manually configuring Oracle 12c Manually configuring Oracle 12c Use the following

More information

"Charting the Course... Oracle 18c DBA I (5 Day) Course Summary

Charting the Course... Oracle 18c DBA I (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager Database Express (EMDE), SQL Developer and SQL*Plus.

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

IBM Tivoli Netcool Performance Manager Model Maker Document Revision R2E1. Model Maker Installation and User Guide

IBM Tivoli Netcool Performance Manager Model Maker Document Revision R2E1. Model Maker Installation and User Guide IBM Tivoli Netcool Performance Manager Model Maker 1.2.2 Document Revision R2E1 Model Maker Installation and User Guide Note Before using this information and the product it supports, read the information

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database 12c: Administration Workshop Ed 2 Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle Database 12c: Administration Workshop Ed 2 Duration 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will discover

More information

Oracle Database 12c Administration Workshop

Oracle Database 12c Administration Workshop Oracle Database 12c Administration Workshop Course information Days : 5 Total lessons : 18 Suggested Prerequisites : Oracle Database : SQL Fundamentals I Training includes : Experienced trainer(s) Pre-test

More information

Tablespace Usage By Schema In Oracle 11g Query To Check Temp

Tablespace Usage By Schema In Oracle 11g Query To Check Temp Tablespace Usage By Schema In Oracle 11g Query To Check Temp The APPS schema has access to the complete Oracle E-Business Suite data model. E-Business Suite Release 12.2 requires an Oracle database block

More information

Installation Guide. Version Last updated: November. tryfoexnow.com 1 of 3

Installation Guide. Version Last updated: November. tryfoexnow.com 1 of 3 Installation Guide Version 3.1.0 @FOEXplugins Last updated: November tryfoexnow.com 1 of 3 FOEX Installation Guide, version 3.1.0 Copyright 2017, FOEX GmbH. All rights reserved. Authors: Peter Raganitsch,

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.)

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) Volume: 183 Questions Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) A. The user cannot set privileges on persistent lightweight jobs. B. The use

More information

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle Database 11g: Administration Workshop I Duration: 5 Days What you will learn This course is designed to give students a firm foundation in basic administration of Oracle Database 11g. In this class,

More information

HOW TO GUIDE. Pcounter for Windows Upgrade to version 3.02 with SQL Express. For Support Click here

HOW TO GUIDE. Pcounter for Windows Upgrade to version 3.02 with SQL Express. For Support Click here INTRODUCTION This document details how to upgrade Pcounter for Windows. Upgrading Pcounter for Windows is a quick and easy job, requiring almost no down time. A restart of the Pcounter services is the

More information

Oracle ILM Assistant Installation Guide Version 1.4

Oracle ILM Assistant Installation Guide Version 1.4 Oracle ILM Assistant Installation Guide Version 1.4 This document provides instructions for installing and running Oracle Information Lifecycle Management (ILM) Assistant. Version: 1.4 Oracle Corporation

More information

Oracle Way To Grant Schema Privileges All Tables

Oracle Way To Grant Schema Privileges All Tables Oracle Way To Grant Schema Privileges All Tables Here in this article we will discuss on how to grant access to all tables in a schema in oracle database as well as we will focus on schema owners. From

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

01/02/2016 gowtham informatica reference.blogspot.in/2013/05/informatica server installation and.html

01/02/2016 gowtham informatica reference.blogspot.in/2013/05/informatica server installation and.html Informatica PowerCenter 9.x. This includes the installation of server components and Repository configuration. Before you start Informatica PowerCenter Server Tool Installation, you should create 2 database

More information

Rapid SQL 7.5 Evaluation Guide. Published: September 28, 2007

Rapid SQL 7.5 Evaluation Guide. Published: September 28, 2007 Rapid SQL 7.5 Evaluation Guide Published: September 28, 2007 Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. This is a preliminary document and may be changed

More information

Informatica Cloud Data Integration Winter 2017 December. What's New

Informatica Cloud Data Integration Winter 2017 December. What's New Informatica Cloud Data Integration Winter 2017 December What's New Informatica Cloud Data Integration What's New Winter 2017 December January 2018 Copyright Informatica LLC 2016, 2018 This software and

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Oracle Database 10g: New Features for Release 2 Overview Seminar

Oracle Database 10g: New Features for Release 2 Overview Seminar Oracle Database 10g: New Features for Release 2 Overview Seminar Student Guide D22139GC10 Edition 1.0 November 2005 D22563 Authors Christine Jeal Jean-Francois Verrier Technical Contributors and Reviewers

More information

Configuring and Integrating Oracle

Configuring and Integrating Oracle Configuring and Integrating Oracle The Basics of Oracle 3 Configuring SAM to Monitor an Oracle Database Server 4 This document includes basic information about Oracle and its role with SolarWinds SAM Adding

More information

MDCStore High Content Data Management Solution Database Schema

MDCStore High Content Data Management Solution Database Schema MDCStore High Content Data Management Solution Database Schema Version 2.3 Installation and Update Guide 0112-0144 I March 2013 This document is provided to customers who have purchased Molecular Devices,

More information

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

More information

Installation Guide. Version Last updated: August tryfoexnow.com 1 of 3

Installation Guide. Version Last updated: August tryfoexnow.com 1 of 3 Installation Guide Version 4.0.1 @FOEXplugins Last updated: August 2018 tryfoexnow.com 1 of 3 FOEX Installation Guide, version 4.0.1 Copyright 2018, FOEX GmbH. All rights reserved. Authors: Peter Raganitsch,

More information

Analytics Installation and Configuration Guide

Analytics Installation and Configuration Guide Analytics Installation and Configuration Guide 16 R2 October 2016 Contents About This Guide... 5 About Primavera Analytics... 5 About the Primavera Data Warehouse... 7 Primavera Data Warehouse and Primavera

More information

Using Standard Generation Rules to Generate Test Data

Using Standard Generation Rules to Generate Test Data Using Standard Generation Rules to Generate Test Data 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

DefendX Software Control-Audit for Hitachi Installation Guide

DefendX Software Control-Audit for Hitachi Installation Guide DefendX Software Control-Audit for Hitachi Installation Guide Version 4.1 This guide details the method for the installation and initial configuration of DefendX Software Control-Audit for NAS, Hitachi

More information

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

More information

CHAPTER. Oracle Database 11g Architecture Options

CHAPTER. Oracle Database 11g Architecture Options CHAPTER 1 Oracle Database 11g Architecture Options 3 4 Part I: Critical Database Concepts Oracle Database 11g is a significant upgrade from prior releases of Oracle. New features give developers, database

More information

MySQL for Database Administrators Ed 4

MySQL for Database Administrators Ed 4 Oracle University Contact Us: (09) 5494 1551 MySQL for Database Administrators Ed 4 Duration: 5 Days What you will learn The MySQL for Database Administrators course teaches DBAs and other database professionals

More information

Oracle Database 12C: Advanced Administration - 1Z0-063

Oracle Database 12C: Advanced Administration - 1Z0-063 Oracle Database 12C: Advanced Administration - 1Z0-063 Backup and Recovery Explain Oracle backup and recovery solutions o Describe types of database failures o Describe the tools available for backup and

More information

Oracle Database Creation for Perceptive Process Design & Enterprise

Oracle Database Creation for Perceptive Process Design & Enterprise Oracle Database Creation for Perceptive Process Design & Enterprise 2013 Lexmark International Technology S.A. Date: 4/9/2013 Version: 3.0 Perceptive Software is a trademark of Lexmark International Technology

More information

SQL Server DBA Course Content

SQL Server DBA Course Content 1 SQL Server DBA Course Content SQL Server Versions and Editions Features of SQL Server Differentiate the SQL Server and Oracle Services of SQL Server Tools of SQL server SQL Server Installation SQL server

More information

Oracle Exam 1z0-062 Oracle Database 12c: Installation and Administration Version: 6.0 [ Total Questions: 166 ]

Oracle Exam 1z0-062 Oracle Database 12c: Installation and Administration Version: 6.0 [ Total Questions: 166 ] s@lm@n Oracle Exam 1z0-062 Oracle Database 12c: Installation and Administration Version: 6.0 [ Total Questions: 166 ] Question No : 1 Examine the parameters for your database instance: NAMETYPE VALUE --------------------------

More information

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle 1z0-052 Oracle Database 11g: Administration I Version: 7.0 Topic 1, Volume A Oracle 1z0-052 Exam QUESTION NO: 1 You notice that the performance of the database has degraded because of frequent checkpoints.

More information

ER/Studio Enterprise Portal 1.1 Installation Guide

ER/Studio Enterprise Portal 1.1 Installation Guide ER/Studio Enterprise Portal 1.1 Installation Guide 2nd Edition, April 16/2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

Course: Oracle Database 12c R2: Administration Workshop Ed 3

Course: Oracle Database 12c R2: Administration Workshop Ed 3 Course: Oracle Database 12c R2: Administration Workshop Ed 3 The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation in administration of an Oracle

More information

Oracle Database 10g: New Manageability Features

Oracle Database 10g: New Manageability Features Oracle Database 10g: New Manageability Features Student Guide D17030GC10 Edition 1.0 September 2003 D38639 Author Lex de Haan Technical Contributors and Reviewers Jean-Francois Verrier Christine Jeal Martin

More information

Oracle Database 10g: Implement and Administer a Data Warehouse

Oracle Database 10g: Implement and Administer a Data Warehouse Oracle Database 10g: Implement and Administer a Data Warehouse Student Guide Volume 1 D18957GC10 Edition 1.0 November 2005 D22685 Authors Donna Keesling Jean Francois Verrier Jim Womack Technical Contributors

More information

Oracle Database 12c: Administration Workshop

Oracle Database 12c: Administration Workshop Oracle Database 12c: Administration Workshop Student Guide Volume I D78846GC10 Edition 1.0 July 2013 D82566 Authors Donna K. Keesling James L. Spiller Technical Contributors and Reviewers Darryl Balaski

More information

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009 Product Documentation ER/Studio Portal Installation Guide Version 1.5 Published October 8, 2009 2nd Edition Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California

More information

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

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Enterprise Manager 12c Compliance Management Part 1 Overview 2 3 Agenda Compliance Overview Understanding Compliance Results Understanding Compliance Score Calculation Compliance Related Roles and Privileges

More information

Oracle Database 12c R2: Administration Workshop Ed 3 NEW

Oracle Database 12c R2: Administration Workshop Ed 3 NEW Oracle Database 12c R2: Administration Workshop Ed 3 NEW Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Oracle 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version :

Oracle 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version : Oracle 1Z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-034 QUESTION: 142 You executed the following query: SELECT oldest_flashback_scn,

More information

Configuring a Sybase PowerDesigner Resource in Metadata Manager 9.0

Configuring a Sybase PowerDesigner Resource in Metadata Manager 9.0 Configuring a Sybase PowerDesigner Resource in Metadata Manager 9.0 2010 Informatica Abstract This article shows how to create and configure a Sybase PowerDesigner resource in Metadata Manager 9.0 to extract

More information

Space Manager with LiveReorg 8.5. Installation Guide

Space Manager with LiveReorg 8.5. Installation Guide Space Manager with LiveReorg 8.5 Installation Guide Copyright 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

More information

Oracle Enterprise Manager. Description. Versions Supported. System Monitoring Plug-in Installation Guide for EMC CLARiiON System Release 5 (

Oracle Enterprise Manager. Description. Versions Supported. System Monitoring Plug-in Installation Guide for EMC CLARiiON System Release 5 ( Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for EMC System Release 5 (1.0.3.0.0) E10505-01 August 2007 This document provides a brief description about the Oracle System Monitoring

More information

Oracle User Administration

Oracle User Administration Oracle User Administration Creating user accounts User accounts consist of two components. These are: 1. User name - The name of the account. 2. Password - The password associated with the user account.

More information

Guide to installing Oracle 10G Enterprise Edition Server (and creating databases) on Windows, for Controller 8.2

Guide to installing Oracle 10G Enterprise Edition Server (and creating databases) on Windows, for Controller 8.2 Overview Guide to installing Oracle 10G Enterprise Edition Server (and creating databases) on Windows, for Controller 8.2 Controller 8.2 is the first release that supports databases stored on an Oracle

More information

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version :

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version : Oracle 1Z0-030 Oracle 9i: New Features for Administrators Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-030 QUESTION: 204 Which two statements regarding an external table are

More information

Oracle Database 12c R2: Administration Workshop Ed 3

Oracle Database 12c R2: Administration Workshop Ed 3 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: Administration Workshop Ed 3 Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course

More information

Oracle DBA Course Content

Oracle DBA Course Content 1 Oracle DBA Course Content Database Architecture: Introduction to Instance and Database How user connects to database How SQL statement process in the database Oracle data dictionary and its role Memory

More information

Oracle Database 10g: Administration I. Course Outline. Oracle Database 10g: Administration I. 20 Jul 2018

Oracle Database 10g: Administration I. Course Outline. Oracle Database 10g: Administration I.  20 Jul 2018 Course Outline Oracle Database 10g: Administration I 20 Jul 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led

More information

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4)

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) Oracle Application Server Portal Technical Note SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) November 2005 INTRODUCTION This Technical Note describes how to setup up and configure Oracle

More information

Upgrading the Procura Database

Upgrading the Procura Database Procura Health Management Systems Contact Procura Corporate Office 600-1112 Fort Street, Victoria, BC, Canada V8V 3K8 Phone: 1.877.776.2872 FAX: 250.380.1866 support@goprocura.com Software version Procura

More information

Micro Focus Enterprise Analyzer 3.4. Installation Guide

Micro Focus Enterprise Analyzer 3.4. Installation Guide Micro Focus Enterprise Analyzer 3.4 Installation Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2013. All rights reserved.

More information

Creating a Subset of Production Data

Creating a Subset of Production Data Creating a Subset of Production Data 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Installing the Oracle Database Softwar

Installing the Oracle Database Softwar Contents chapter 1:Architecture Oracle Database Architecture Database Structures Oracle Memory Structures Process Structures Oracle Instance Management Server Process and Database Buffer Cache Physical

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

More information

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Contents Managing Database Storage Structures Using Enterprise Manager Database Express... 1 Overview... 2 Configuring

More information

Publishing and Subscribing to Cloud Applications with Data Integration Hub

Publishing and Subscribing to Cloud Applications with Data Integration Hub Publishing and Subscribing to Cloud Applications with Data Integration Hub 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database OVERVIEW About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the

More information

NTP Software File Auditor for Hitachi

NTP Software File Auditor for Hitachi NTP Software File Auditor for Hitachi Installation Guide Version 3.3 This guide details the method for the installation and initial configuration of NTP Software File Auditor for NAS, Hitachi Edition,

More information

PowerCenter Repository Maintenance

PowerCenter Repository Maintenance PowerCenter Repository Maintenance 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

Configuring an ERwin Resource in Metadata Manager 8.5 and 8.6

Configuring an ERwin Resource in Metadata Manager 8.5 and 8.6 Configuring an ERwin Resource in Metadata 8.5 and 8.6 2009 Informatica Corporation Abstract This article shows how to create and configure an ERwin resource in Metadata 8.5, 8.5.1, 8.6, and 8.6.1 to extract

More information

PASS4TEST 専門 IT 認証試験問題集提供者

PASS4TEST 専門 IT 認証試験問題集提供者 PASS4TEST 専門 IT 認証試験問題集提供者 http://www.pass4test.jp 1 年で無料進級することに提供する Exam : 1z0-052 Title : Oracle Database 11g: Administration I Vendor : Oracle Version : DEMO Get Latest & Valid 1Z0-052 Exam's Question

More information

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II CONTEÚDO PROGRAMÁTICO Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting

More information

Configuring a JDBC Resource for IBM DB2/ iseries in Metadata Manager HotFix 2

Configuring a JDBC Resource for IBM DB2/ iseries in Metadata Manager HotFix 2 Configuring a JDBC Resource for IBM DB2/ iseries in Metadata Manager 9.5.1 HotFix 2 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

SAS Decision Manager 2.2

SAS Decision Manager 2.2 SAS Decision Manager 2.2 Administrator s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Decision Manager 2.2: Administrator's Guide.

More information

Call: Oracle 11g DBA Course Content:35-40hours Course Outline

Call: Oracle 11g DBA Course Content:35-40hours Course Outline Oracle 11g DBA Course Content:35-40hours Course Outline INTRODUCTION TO ORACLE DBA What is DBA? Why a Company needs a DBA? Roles & Responsibilities of DBA Oracle Architecture Physical and Logical Phase

More information

This document contains information on fixed and known limitations for Test Data Management.

This document contains information on fixed and known limitations for Test Data Management. Informatica LLC Test Data Management Version 10.1.0 Release Notes December 2016 Copyright Informatica LLC 2003, 2016 Contents Installation and Upgrade... 1 Emergency Bug Fixes in 10.1.0... 1 10.1.0 Fixed

More information

Oracle 1Z Oracle Database 12c - Installation and Administration. Download Full version :

Oracle 1Z Oracle Database 12c - Installation and Administration. Download Full version : Oracle 1Z0-062 Oracle Database 12c - Installation and Administration Download Full version : http://killexams.com/pass4sure/exam-detail/1z0-062 QUESTION: 170 What is the effect of setting the STATISTICS_LEVEL

More information

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator System Administration Guide Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator, Version 5.1 This manual, and the accompanying software and other documentation,

More information

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5.

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5. Course Outline: Oracle Database 11g: Administration II Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: In this course, the concepts and architecture that support

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008

More information

Administrator's Guide

Administrator's Guide Administrator's Guide EPMWARE Version 1.0 EPMWARE, Inc. Published: July, 2015 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless

More information