informatica powercenter 9.x Installation and Configuration graphics detailed tutorial (for Windows)

Published: 2017-09-27 17:16:00 Author: Anonymous I want to comment
informatica powercenter is a very widely used data integration platform (ETL tool), this article is for those who do not know how to install and configure informatica powercenter 9.x program. The informatica powercenter 9.x installation and configuration tutorial is illustrated in detail, and the download location is included

informatica powercenter 9.x is a very easy to use and powerful data integration platform, mainly to facilitate users to manage all kinds of database operations, can be said to be a very widely used ETL tool (Note: ETL is used to describe the process of extracting, transforming, and loading data from the source end, which is often referred to as the data warehouse in the industry, and of course the object is not limited to the data warehouse. Mainly used for database, read, conversion and other operations, this article is mainly for you to describe in detail the informatica powercenter 9.x installation and configuration steps under Windows, interested friends to understand it.

ETL implementation method

● Install the Oracle server

● Create a new user under the database to manage the database, which is used to store source tables and target tables.

● Install the Oracle client

● Install the ETL server

● Install the ETL client

informatica powercenter Installation preparations: Database support is required

Install the Oracle 11g Server

● Create database

● Create database users: Before installing Informatica PowerCenter, you need to create a user under the database to manage the database. (Note the character set Settings)

● Used to create source tables and target tables, and store data. (Data warehouses and databases are usually separated by two instances.)

Note: 11G is not compatible with Windows Server 2012

Step 1 Install only the database software

All the way to the next installation is complete

informatica powercenter 9 安装与配置教程

Step 2 Create a database

Start the Database Configuration Assistant

Select Create database

informatica powercenter 9 安装与配置教程

Select custom database

informatica powercenter 9 安装与配置教程

The global database name is the instance name

informatica powercenter 9 安装与配置教程

Remove the check box for configuring Enterprise Manager

informatica powercenter 9 安装与配置教程

Storage type and file location

informatica powercenter 9 安装与配置教程

The database component selects only the Enterprise Manager archive

informatica powercenter 9 安装与配置教程

Click all initialization parameters button, click Advanced parameters, modify nls_date_format

informatica powercenter 9 安装与配置教程

After installation, our database directory is as follows

CTL indicates the control file, REDO indicates the log file, and DBF indicates the database file

informatica powercenter 9 安装与配置教程

Install the Oracle 11g Client

Note Install the 32-bit version

● Configure net manager and define the service name

● Create a database user to ensure the installation of the ETL server below

● Easy use of enterprise Manager to manage Oracle servers

Select administrator

informatica powercenter 9 安装与配置教程

All the way to the next installation is complete

Oracle Database Configuration

Step1 First create a listener for the server

Without configuration, our database server would not be connected

Open Net Manager in the server directory,

1. Click Listener and then click the plus sign to create

informatica powercenter 9 安装与配置教程

2. Click Add Address

Usually the IP address is written on the host

informatica powercenter 9 安装与配置教程

3. Click Save Network configuration

informatica powercenter 9 安装与配置教程

Step 2 Start the listening service

Command line Enter a command to start the listener

lsnrctl start

informatica powercenter 9 安装与配置教程

Step 3 Configure the client

Click Net Manager in the client directory

Click on the name of the service, click on the plus sign, the name of the network service is arbitrary

informatica powercenter 9 安装与配置教程

Click Next, select Tcp/Ip then click Next, and enter the host name or IP address

informatica powercenter 9 安装与配置教程

Then type the service name with the instance name that was taken when the database was created

informatica powercenter 9 安装与配置教程

Click Next, click Test

informatica powercenter 9 安装与配置教程

The above login denied prompt has actually been successful.

After the entire configuration is complete, click Save Network configuration again

informatica powercenter 9 安装与配置教程

Create database user

Install PLSQL Developer and connect to the server for configuration. PLSQL uses the Oracle Client and supports only 32Bit

1. Run PLSQL and log in as the sys user. Select SYSDBA for Connect as

informatica powercenter 9 安装与配置教程

2. Create users for Informatica to use

Open the command line window, enter the following command, and run it

informatica powercenter 9 安装与配置教程

CREATE USER INFA IDENTIFIED BY INFA DEFAULT TABLESPACE SYSTEM TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK;

GRANT CONNECT TO INFA;

GRANT RESOURCE TO INFA;

GRANT CREATE VIEW TO INFA;

GRANT UNLIMITED TABLESPACE TO INFA;

GRANT SELECT ANY TABLE TO INFA;

ALTER USER INFA DEFAULT ROLE ALL;

COMMIT;

-- The following statement depends on the permissions you have

select * from dba_role_privs;

select * from dba_sys_privs;

3. Check whether the user is created successfully

Click on the menu Session - > Login

informatica powercenter 9 安装与配置教程

The entire database environment is set up with Informatica installed.

informatica powercenter installation tutorial

Server installation

Notice By default, the listener service does not start automatically after 11g is installed. You can set the listener to start automatically when you enter Services. Otherwise Informatica cannot access the database

When installing INFORMATICA, check 'Run the preinstallation check tool' when prompted to modify the open_cursors.

Modify the code as follows:

show parameter open_cursors; -- Displays parameter values

alter system set open_cursors = 1000; -- -- Change the value of the parameter to 1000

commit; ---- submit

Install all the way to the next step, because this is the first installation choose to create a domain

informatica powercenter 9 安装与配置教程

Configuration information. Write in the previous Oracle environment information

informatica powercenter 9 安装与配置教程

informatica powercenter 9 安装与配置教程

Deselect other accounts

informatica powercenter 9 安装与配置教程

Installation complete

informatica powercenter 9 安装与配置教程

Client installation

Select only PowerCenter Client

informatica powercenter 9 安装与配置教程

INFORMATICA Data source Configuration

● ODBC configuration operation

● Database tnsnames file configuration

● WORK FLOW configuration

ODBC

1. Start the Net Configuration Assistant in the server software directory

Select the local network service name configuration

informatica powercenter 9 安装与配置教程

Type the instance name

informatica powercenter 9 安装与配置教程

informatica powercenter 9 安装与配置教程

Enter the host name or IP address

informatica powercenter 9 安装与配置教程

2. Select the Oracle11G driver. The client reports an error when selecting the driver. Unknown cause

informatica powercenter 9 安装与配置教程

Here's a test to see if it works. The User ID is not very important here, because you will use a different ID when importing later

informatica powercenter 9 安装与配置教程

tnsnames file

The tnsnames.ora file in this installation path actually corresponds to the 'service name' we created earlier with Net Manager.

C: \ \ Administrator \ product \ app 11.2.0 \ client_2 \ NETWORK \ ADMIN \ tnsnames ora

Workflow configuration

Open the Informatica Administrator Home Page in the server directory, right-click Domain -> New ->PowerCenter Repository Service

informatica powercenter 9 安装与配置教程

informatica powercenter 9 安装与配置教程

informatica powercenter 9 安装与配置教程

In addition, the operation mode in the property is changed to 'normal'.

informatica powercenter 9 安装与配置教程

After the configuration is complete, open Informatica PowerCenter Workflow Manager (several other components can also be used, and all have the same configuration).

Click 'Repository' -> 'Configure Domain', click 'Add New domain' button, enter the configuration information when installing the server.

informatica powercenter 9 安装与配置教程

Click the Connect button, noting that the username is case sensitive.

informatica powercenter 9 安装与配置教程

Click Relational

informatica powercenter 9 安装与配置教程

Create a database connection.

informatica powercenter 9 安装与配置教程

Step1 Open the Repository Manager and create a new folder

informatica powercenter 9 安装与配置教程

Step2 Open PowerCenter Designer

Connect to the repository, and the folder you just created will be displayed

informatica powercenter 9 安装与配置教程

The installation process is now complete.

The above is the informatica powercenter 9.x installation and configuration tutorial organized by the script home. I hope it can help you. If you have questions, you can leave us a message in the comment box below. We will do our best to answer your questions. Thank you for your continued support, and please stay tuned for future tutorials and software from Script House.

  • Tag: powercenter informatica Installation and configuration

Related article

Latest comments