cust id,cust quty like 1,101;1,102;1,103 i want output like
cust id,cust quty 1 101,102,103 in oracle please write a
query in oracle
Answers were Sorted based on User's Feedback
Answer / srinu
select translate('1,101;1,102;1,103','1,101;1,102;1,103',1
101,102,103) from dual;
| Is This Answer Correct ? | 3 Yes | 9 No |
if we take 2 tables(like emp and dept), we use join stage and how to improve the performance?
i have a scenario with i/p as ID,salary with values 1,1000 2,2000 and 3,4000 i need an extra column in the o/p named amount with values 2000,4000 and NULL. how can i get it?
I/P --- ID Value 1 AB 2 ABC 3 ADE 4 A O/p --- ID Value 1 A 1 B 2 A 2 B 2 C 3 A 3 D 3 E 4 A
What are stage variables?
how can we create a Sorrogate key in transformer stage? I want it in parallel mode
how many rows sorted in sort stage by default in server jobs
Main Function of the Staging area in DWH ?
What are the various kinds of the hash file?
How did you reconcile source with target?
Can you explain engine tier in information server?
I/p : F1 table have A,B,C,D,E and F2 table having C,E,V i need output 0utput1: ABD output2: V any one suggest me this
i have flat file and using unix how can i generate sequence number into targer?