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

风流意气都作罢 提交于 2019-12-05 05:04:13

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!