Question { 9086 }
Source Like
department_no, employee_name
----------------------------
20, R
10, A
10, D
20, P
10, B
10, C
20, Q
20, S
and Output should be like this
department_no, employee_list
--------------------------------
10, A
10, A,B
10, A,B,C
10, A,B,C,D
20, A,B,C,D,P
20, A,B,C,D,P,Q
20, A,B,C,D,P,Q,R
20, A,B,C,D,P,Q,R,S
Answer
Is This Answer Correct ? | 5 Yes | 1 No |
Question { 5300 }
Is there no issue when you try to convert a NOt null column
in nullable and vice versa in aggregator styage and
transformer stage? When I tried i got the warnings but in a
running code I can see such type of scenarios. Please
explain
Answer
Is This Answer Correct ? | 2 Yes | 0 No |
Input Data is:
Emp_Id, EmpInd
100, 0
100, 0
100, 0
101, 1
101, 1
102, 0
102, 0
102, 1
103, 1
103, 1
I want Output
100, 0
100, 0
100, 0
101, 1
101, 1
Means Indicator should either all ZEROs or all ONEs per
EmpId.
Impliment this using SQL and DataStage both.
Answer
Is This Answer Correct ? | 11 Yes | 0 No |
How to remove ctrl M or(^M) characters in file using Sequential File stage?
Answer
Is This Answer Correct ? | 3 Yes | 0 No |
INPUT file 'A' contains:
1
2
3
4
5
6
7
8
9
10
input file 'B' contains:
6
7
8
9
10
11
12
13
14
15
Output file 'X' contains:
1
2
3
4
5
Output file 'Y' contains:
6
7
8
9
10
Output file 'Z' contains:
11
12
13
14
15
How can we implement this in a single ds job?
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
Difference between the Sequence and Sequencer in DS?
Answer
Is This Answer Correct ? | 8 Yes | 0 No |
Hi every one, I am Suneel.
I/p o/p
--- -----
suneel suneel
suneel
suneel
suneel
suneel
how it will get.
Please design job with explain.
Thanks.
Answer
Is This Answer Correct ? | 11 Yes | 0 No |
in sequtial file 2 columns avaliable, i want only one column
load the target. for this we can do by modify and copy
stage. But here when using modify stage (in property drop
column1) until it is ok. if target is data set How to view
the data. with out using data management. what is the reason
for this. if any body know this answer plz tel me.
thanks.
Answer
Is This Answer Correct ? | 6 Yes | 0 No |
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.
Answer
Is This Answer Correct ? | 3 Yes | 2 No |
I have 5 different sources i want same records in 5 different
targets Can you any body send me this question answer
rathdsetl@gmail.com
Answer
Is This Answer Correct ? | 3 Yes | 0 No |
6) my sorce
d1
d2
d1
d2
d1
d3
d2
d1
my target
tartget
1 d1
2 d1
3 d1
4 d1
target2
1 d2
2 d2
3 d3
Target 3
1 d3
Can any body send me answer this is argent requierment
Answer
Is This Answer Correct ? | 11 Yes | 0 No |
Question { 4514 }
4)
source target
c1 c1 c2 c3
c2 c4 c4 c5
c3 c6 c7
c4
c5
c6
c7
please send me answer this question my mail
Answer
Is This Answer Correct ? | 6 Yes | 0 No |
Question
4)
source target
c1 c1 c2 c3
c2 c4 c4 c5
c3 c6 c7
c4
c5
c6
c7
Singal Source and Singal Target only subash,
Answer
Is This Answer Correct ? | 6 Yes | 1 No |
I want capture UnMatched records from Primary source and secondary source in JOIN stage?
Answer
Is This Answer Correct ? | 3 Yes | 0 No |
Unix Qn asked in datastage interview:
I have diff type(.txt, .tmp, .bat etc) of file in 4 diff directories, I want move all '.txt' file from 4 directories to other folder.
And need to delete all the files except which are created TODAY?
Answer
Is This Answer Correct ? | 4 Yes | 0 No |