informatica-powercenter

Informatica: Write data into multiple files based on State name

ぐ巨炮叔叔 提交于 2019-12-08 07:32:56
问题 I have table with a column called State. My requirement is to read data from the table and write it into multiple files based on State name. I'm using Informatica PowerCenter as ETL tool 回答1: Create a mapping as below: Source --> SQ (sort data state name)--> Expression --> Transaction Control --> Target Expression: Create a variable port to store previous value of state and a output port flag. flag = IIF(state = var_state,0,1) var_state = state In Transaction Control Transformation, use TC

Database driver error when loading data with Informatica into Oracle XE 10 g

十年热恋 提交于 2019-12-08 04:02:24
问题 I'm trying to load within an Oracle XE 10g database. When I run an Informatica PowerCenter Workflow, I get a following error: CMN_1022 Database driver error... CMN_1022 [Database driver event... Error occurred loading library [pmora8.dll]. System error encountered is 193. Error text is %1 is not a valid Win32 application. .] Any ideas what might be causing this error? My environment is as follows: Windows Server 2008 R2 Informatica PowerCenter 9.5 Oracle XE 10 G Powercenter repository is on

Database driver error when loading data with Informatica into Oracle XE 10 g

孤街浪徒 提交于 2019-12-06 15:41:28
I'm trying to load within an Oracle XE 10g database. When I run an Informatica PowerCenter Workflow, I get a following error: CMN_1022 Database driver error... CMN_1022 [Database driver event... Error occurred loading library [pmora8.dll]. System error encountered is 193. Error text is %1 is not a valid Win32 application. .] Any ideas what might be causing this error? My environment is as follows: Windows Server 2008 R2 Informatica PowerCenter 9.5 Oracle XE 10 G Powercenter repository is on SQL Server 2012. Well, there are a few variables that need to be set before your informatica runtime

Informatica: Write data into multiple files based on State name

狂风中的少年 提交于 2019-12-06 14:39:32
I have table with a column called State. My requirement is to read data from the table and write it into multiple files based on State name. I'm using Informatica PowerCenter as ETL tool Create a mapping as below: Source --> SQ (sort data state name)--> Expression --> Transaction Control --> Target Expression: Create a variable port to store previous value of state and a output port flag. flag = IIF(state = var_state,0,1) var_state = state In Transaction Control Transformation, use TC_COMMIT_BEFORE when Flag = 1 Add Filename port to Target and map state name as filename. You can also do this

informatica powercenter vs custom perl ETL job?

╄→гoц情女王★ 提交于 2019-12-05 20:41:05
Most of my company uses powercenter informatica for Extract-Transform-Load type data move jobs between databases. However project I am on has a big custom Perl job with some Java thrown in for good measure to move data and trigger some other updates. There is talk of rewriting the thing to use powercenter instead, what are people's experiences on such a project, does it make sense? Seems like you trade lot of flexibility in going to such a "off the shelf" solution, but do the ETL tools buy you much in terms of productivity for example? Informatica is good for an operations team. It allows a

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

风流意气都作罢 提交于 2019-12-05 05:04:13
Oracle Details:- Oracle 10g Enterprise Edition Host running XP x32 I use scott tiger for logging with SQL* Plus . I dont provide any HOST STRING . How can i setup Oracle to accept Host String ? i am asking this because i guess the problem is related to this IP : 192.168.17.132 , Hostname : vmxp1 tnsnames.ora file:- GLOBALDB = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = vmxp1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = globaldb) ) ) EXTPROC_CONNECTION_DATA = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC)) ) (CONNECT_DATA = (SID =

Case Statements/Decode Function in Informatica

余生颓废 提交于 2019-12-05 02:52:35
Could anyone help me with writing case statements in Informatica PowerCenter Designer? I am fairly new to Informatica, and based on my limited experience I feel case statements aren't supported. There is a decode function with similar functionality, but I am unable to find any good examples on the syntax. I would really appreciate if anyone could give me some specific examples on how to use case statements/decode function in Informatica. Thanks much for your help! You're right - there is no CASE statement, but you can use DECODE to simulate it: DECODE( TRUE , DECIMAL_PORT > 0, 'positive value'

Informatica writes rejected rows into a bad file, how to avoid that?

吃可爱长大的小学妹 提交于 2019-12-04 14:43:57
I have developed an Informatica PowerDesigner 9.1 ETL Job which uses lookup and an update transform to detect if the target table has the the incoming rows from the source or not. I have set for the Update transform a condition IIF(ISNULL(target_table_surrogate_id), DD_INSERT, DD_REJECT) Now, when the incoming row is already in the target table, the row is rejected. Informatica writes these rejected rows into a .bad file. How to prevent this? Is there a way to determine that the rejected rows are not written into a .bad file? Or should I use e.g. a router insted of an update transform to

SSIS and Informatica

允我心安 提交于 2019-12-03 21:58:16
SQL SERVER 2014 SSIS has been released,we have already got lot of facilities in SQL SERVER 2012 SSIS.Can anybody compare SSIS 2014/SSIS2012 with Informatica Power center ? What are the additional fetures are there in the Informatica new version than SSIS 2012/2014? Or are there functions in SSIS 2014/20122 ,which are not available in Informatica. I still can not understand why clients are investing in very expensive tools like Informatica,If we have reliable and effective tool like ssis. Experts Please have a discussion on this This would take some time to name all the differences. These

How to pivot data using Informatica when you have variable amount of pivot rows?

冷暖自知 提交于 2019-12-02 06:45:59
问题 Based on my earlier questions, how can I pivot data using Informatica PowerCenter Designer when I have variable amount of Addresses in my data. I would like to Pivot e.g four addresses from my data. This is the structure of the source data file: +---------+--------------+-----------------+ | ADDR_ID | NAME | ADDRESS | +---------+--------------+-----------------+ | 1 | John Smith | JohnsAddress1 | | 1 | John Smith | JohnsAddress2 | | 1 | John Smith | JohnsAddress3 | | 2 | Adrian Smith |