-
Convert Column Data into Row Data
Solve in Datastage
Input:
col1, col2, col3
----------------
a, b, c
d, e, f
Output like
Col
---
a
b
c
d
e
f
-
How to achieve this?
My input data:
Field_Name Value
Customer_ID 100
Customer_Name ABC
Customer_City Delhi
Customer_ID 200
Customer_Name BCD
Customer_City Mumbai
My output should look like
Customer_ID Customer_Name Customer_City
100 ABC Delhi
200 ... -
Change Partition to Auto in Join stage
What will happen if we will change the partition to Auto in Join stage?
-
Identify Normal and Sparse Lookup Datastage Job
By seeing a Datastage job how you will identify which one is Normal lookup and which one is Sparse Lookup?
-
Single Column Source Data
Source have single column data, How can I get Target like row 1 goes to target 1, row 2 goes to target 2.
src :-
column_id
1
2
3
4
.
.
.
1000 ,
Target :-
Target1(1)
Target2(2)
Target3(3),
Target4(4)
.
.
Target1000(1000)
How can you achieve this scenario? -
-
-
Dimensional modelling is again sub divided into 2 types.
a)Star Schema - Simple & Much Faster. Denormalized form. b)Snowflake Schema - Complex with more Granularity. More normalized form.
-
-
-
What are Sequencers?
Sequencers are job control programs that execute other jobs with preset Job parameters.
-
-
-
-
Remove Duplicates
How to remove duplicates in datastage?
-
-
SRC records
SRC has 1 record I want 10records in target how is it possible ? plz explain me ?
-
Datastage scenario Question
A Sequences is calling activity 1, activity 2 and activity 3.while running, activity 1 and 2 got finished but 3 got aborted. How can I design a sequence such that the sequence has to run from activity 2 when I restart the sequences?
-
Convert multiple rows into columns in datastage
hi
i have sourse like
name,city
johny,newyork
johny,mumbai
johny,del
want output like
name,city1,city2,city3
johny,nework,mumbai,delhi
thanks in advance..
-
Multiple files and output
I have two files target 3 files
file no1:
1
2
3
4
file2
3
4
5
6
output like first file 1,2 first file 3,4 second file 5 ,6 3rd file target how to achieve this
DataStage Interview Questions
Ans