aBs0lut3z33r0
aBs0lut3z33r0

Reputation: 95

Configuring Informatica Repository with Oracle 10g [Oracle not connecting]

Oracle Details:-

Informatica details:

http://img88.imageshack.us/img88/655/imagest.png

http://img163.imageshack.us/img163/2152/262926281d2dcd78baa445d.png

tried different things in the host string field . also tried system account.

How to configure Oracle database for inf repository service.

Upvotes: 7

Views: 8742

Answers (1)

Voislav Sauca
Voislav Sauca

Reputation: 3075

That happens because you need at least two database accounts to host this repository :

Power_Repository for the repository DB -

Power_Domain for the domain Configuration DB -

For Oracle, you MUST perform the following instruction:

Connect to DB:

Go to Start-> Run-> Type 'cmd'->Then put the same steps listed below:

Microsoft Windows XP [Versión 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\Voislav>cd\

C:\>sqlplus

SQL*Plus: Release 10.2.0.1.0 - Production on Dom Jul 10 23:50:07 2011

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

Introduzca el nombre de usuario: system
Introduzca la contrase±a:

Conectado a:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

SQL> CREATE USER Power_Repository IDENTIFIED BY Power_Repository
  2  DEFAULT tablespace users
  3  TEMPORARY tablespace temp
  4  quota unlimited ON users;

Usuario creado.

Then confirm the connection:

GRANT CONNECT, resource, CREATE VIEW TO Power_Repository;

Now the same steps for Power_Domain., and is done.

Upvotes: 2

Related Questions