Informatica 9.6.1+ORACLE11G+WIN10 installation process

insert image description here



foreword

Informatica 9.x is an easy-to-use and powerful data integration platform, which mainly manages various databases. It is a widely used ETL tool (Note: ETL is used to describe the process of extracting data from the source (extract), transform (transform), load (load) to the destination end). This article mainly introduces the installation and configuration steps of informatica powercenter 9.6.1 under Windows 10 in detail with pictures and texts.


1. Preparation before installation

1. Database configuration

First of all, install the database. The process of installing the database can refer to the " linux5 installation oracle 11g (11.2.0.4) experiment"

written by me, because I installed it directly in my win10 system for the convenience of learning and testing.

The general operation of the database is:
create a new database, the instance name is win10, netca configures monitoring and tns, then creates an informatica user, then grants permissions, and then modifies the cursor parameters.
The local database and the system environment where the database is located are:

database version 11.2.0.4
system win10
instance name win10

Next, execute the relevant commands in the database according to the steps described above:

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;

show parameter open_cursors;   ---显示参数值
alter system set open_cursors = 1000;   ---修改参数值为1000
commit;   ----提交

2. Install Informatica

1. Download media

I have prepared the download medium here (please leave a message or private message if the resource expires):
link: network disk link
extraction code: lial

insert image description here


2. Unzip

Select all the compressed packages and select the decompression directory. The decompression directory here is: D:\informatica. After decompression, there is still a compressed package in the result. Decompress which compressed package again
, and then the installation package about key, server and client will come out , and then decompress the compressed package of the server again (because the server is installed first), the results are as follows:

insert image description here


3. Install Informatica

3.1. Install Server

Go into 961_Server_Installer_winem-64t and double-click install.bat to install.
The process is as follows:
insert image description here

insert image description here

insert image description here

insert image description here

insert image description here
The following is the default interface, follow the prompts to fill in your own database information, the user name is infa created before

如果是12C的数据库,要先在sqlnet加入:
SQLNET.ALLOWED_LOGON_VERSION=8
然后lsnrctl reload 
然后再重新在Oracle中alter 修改infa密码

insert image description here
insert image description here
insert image description here
insert image description here

insert image description here
insert image description here
uncheck
insert image description here

insert image description here
http://desktop-7sct2tv:6008/

3.2, Workflow configuration

Open the Informatica Administrator Home Page of the server directory, right-click Domain -> New -> PowerCenter Repository Service
insert image description here
insert image description here
insert image description here
insert image description here
on the following page. Regarding the code page, it must be set to be compatible with the database character set:
I query the character set in my database as:

SQL>  select userenv('language') from dual;

USERENV('LANGUAGE')
----------------------------------------------------
SIMPLIFIED CHINESE_CHINA.ZHS16GBK

So I chose Simplified Chinese below. The
insert image description here
insert image description here
repository is created successfully, and then the integration service (that is, int1 above) is created:

3.3. Create an integration service

Change the res_int below to int1 and change the
insert image description here
repository name res1 below to tes1

insert image description here

3.4. Install the client

Next, install the client, or go back and unzip the compressed package

insert image description here
Unzip and go in:

insert image description here
Double click to install

insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here

3.5. Client testing

After the installation is complete, go to the client for configuration testing:

Configure PowerCenter Client Repository
Click PowerCenter Repository Manager in the start menu
insert image description here

Click Add to Repository
insert image description here
Enter repository name: RESP_01 and user name: Administrator and click OK (note:
the first letter of Administrator must be capitalized) (similarly, test1 is still changed to tes1)
insert image description here
right click on test1, and then Select the configuration domain, click the Add Domain button, and then
enter the domain name in Add Domain: Domain_DESKTOP-7SCT2TV, Gateway Host: 127.0.0.1, Gateway Port: 6005, and finally click OK

insert image description here
insert image description here

insert image description here

insert image description here
At this point, a tes1 repository icon will appear on the right, click OK again,
then right-click test1 and select Connect, enter the user name: Administrator password: 1qazXSW@, and then click Connect to
insert image description here
create a folder:

insert image description here
Click the button marked

insert image description here
The interface is as follows. Then you can design:

insert image description here
Just test it out:

insert image description here
ODBC data source configuration:
Click the ... button, and then select Add in the user dsn:

insert image description here
insert image description here
Then click Finish and the following interface will appear:

insert image description here
After completing the filling, click Test and enter the user name and password to test:

insert image description here
insert image description here
The test is successful, and then it has been confirmed. When you come back to this interface, you can choose your own data source

insert image description here
I choose the win10 I created, and then enter the user name and password scott/tiger and click the link, and all the tables under scott will appear, and then I can choose what I need, here I choose emp, dept.

insert image description here
test was successful. This is the end of the installation test.


Summarize

The article ends here. I installed a set of win10 in the virtual machine and then tested the installed software on this basis, because work and study should be separated hahaha. During this period, I forgot to capture some pictures, so I created a new screenshot, so some places have to be renamed. I hope it can help you. If it is not easy to create, please leave a follow + like + bookmark! ! ! ! ! !

Guess you like

Origin blog.csdn.net/qq_28356739/article/details/128751132