i have source as
Column1
101 a 101 b 101 c
so i want to load target as
column1 ---> 101 abc
Answers were Sorted based on User's Feedback
SQ - Exp - Target
In exp transformation
newport1 - SUBSTR(column1,1,3)
newport2 - LTRIM(RTRIM(column1))
newport3 - REPLACECHR(1,newport2,'101','')
newport4 - newport1 || ' ' || newport3
pass newport4 to target
anyone pls confirm if it is wrong
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / dilip ingole
using SQL
SELECT SUBSTR('101 a 101 b 101 c',1,4) ID ,REPLACE(TRANSLATE('101 a 101 b 101 c','1234567890',' '),' ','') DATA FROM DUAL;
| Is This Answer Correct ? | 0 Yes | 0 No |
what is tha tracesing level? and difference betweentrace in normal and verbose and nonverbose?
What are mapplets? How is it different from a Reusable Transformation?
How identifying bottlenecks in various components of informatica and resolving them?
What are the types of metadata that stores in repository?
Source is a flat file and want to load unique and duplicate records separately into two separate targets; right??
i have 2 session s1 execute s2 load first session fail what is the reason?
What are the issues that you have faced while moving your project from the Test Environment to the Production Environment?
What is mapping debugger?
where to select code page option?
What are Business Components in Informatica?
What is sq transformation?
What is difference between stored procedure transformation and external procedure transformation?