Hi I have scenario like this

s/r table T/r table
ename,sal empno,ename,sal
vijay,2000 1 , vijay, 2000
kumar,3000 2 ,kumar , 3000
ravi ,4000 3 ,ravi , 4000

How can i get target table like that without using
Transformer stage?

Answers were Sorted based on User's Feedback



Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / pavan

Hi This is pavan u use surrogate key generator.

Is This Answer Correct ?    8 Yes 1 No

Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / ramachandra rao

first of all question is not clear

ok fine

if u take source as sequential file there is one option is
there i.e rownumcolumn use this option it will create
sequnce number.

2.use columngenerator also we used



Thanks
chandu-09538627859

Is This Answer Correct ?    7 Yes 1 No

Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / surya

you can generate surrogate key in the transformer itself.
right click on the stage variables. tre you can find surrrogate key.

Is This Answer Correct ?    3 Yes 0 No

Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / krishna evsg

Hi Vijay

Actually I don't Know Transformer stage, But we can do the
above scnario in SQLSERVER2005. In SQLSERVER2005 we have a
built in function for Row_Number().


create table Source_Tab
(
ename varchar(max)
,sal money
)
GO


create table Target_Tab
(
eno int
,ename varchar(max)
,sal money
)
GO

insert into Source_Tab values('vijay',2000)
GO
insert into Source_Tab values('kumar ',3000)
GO
insert into Source_Tab values('ravi ',4000)
GO


insert into Target_Tab
(
eno
,ename
,sal
)

select ROW_NUMBER() OVER (ORDER BY ename)
AS 'RowNumber',ename,sal from source_Tab



SELECT * FROM Target_Tab
GO

SELECT * FROM source_Tab
GO

Is This Answer Correct ?    1 Yes 0 No

Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / d

d

Is This Answer Correct ?    1 Yes 0 No

Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / srinivasu

This is an optional property. It adds an extra column of type unsigned BigInt to the output of the stage, containing the row number. You must also add the column to the columns tab, unless runtime column propagation is enabled.

Is This Answer Correct ?    0 Yes 0 No

Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / sindhu

row number column in sequential file

Is This Answer Correct ?    0 Yes 0 No

Hi I have scenario like this s/r table T/r table ename,sal ..

Answer / kiran

ok well vijay.ur quetion not proper k.

see u can use s_key,column genaretor stage.
and u can define user define query in source level and
populated to target like dbl click on source and set read
method is user deine and write query=select
rownum,ename,sal from emp(s/r table name).k

Thanks&Regards
kiran
9393363309

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More Data Stage Interview Questions

Differentiate between data file and descriptor file?

0 Answers  


What is datastage?

0 Answers  


source has 2 fields like COMPANY LOCATION IBM HYD TCS BAN IBM CHE HCL HYD TCS CHE IBM BAN HCL BAN HCL CHE LIKE THIS....... AND I WILL GET THE OUTPUT LIKE THIS.... Company loc count TCS HYD 3 BAN CHE IBM HYD 3 BAN CHE HCL HYD 3 BAN CHE PLZ SEND ME ANSWER FOR THIS QUESTION..........

3 Answers   Patni,


What is developer responsibilities in UAT (user acceptance testing and Post implementation phase?

0 Answers  


how to define satge variables in transformer stage

2 Answers  






How do you get log info into a file?

1 Answers  


Hi dude, i/p eno ename date edate deptno 1 x 10thjuly 30july A 2 y 10th aug 30 aug B 1 x 1aug ------ A 3 z 1jan ------ c 2 y 1sep ------ B o/p is eno ename date edate deptno 1 x 1aug ------ A 2 y 1sep ------ B 3 z 1jan ------ c Here edate is System generates we don't know that value. Please design the job by using SCD stage and Sql query. If any body know this answer please tel me. Tanks.

1 Answers   Amdocs,


input like 2 7 8 9 5 1 7 3 6 output:2 5 6 how to find out this plz explain?

2 Answers   HSBC,


Define repository tables in datastage?

0 Answers  


What is the difference between odbc and drs stage?

0 Answers  


If we take 2 tables(like emp and dept),we use join stage and how to improve the performance?

0 Answers  


What is a ds designer?

0 Answers  


Categories