Hi all,
This is my first post in oraclepassport,thanks for giving me the opportunity to share my problems with you all.
I am currently doing a project where i need to write a stored procedure which will be doing the following-
i)it will retrieve multiple columns from multiple tables in a single database(through join) based on certain conditions
II)then it will store the entire data in a certain field(File_data) of staging table
inside file_data a header and a trailer will be present with the records.also the field values will be pipe separated and a new record will start in a new line.
So,the data inside the file_data of staging table will look like this-
H|v1000
transdate|ordnmb|deposite_amt|order_status....
12-nov-09|123456|23.8|C...
4-dec-07|234567|67.7|R...
..........
7-jan-04|567890|54.7|x.....
T|234(record count)
I am new to oracle(new to IT industry as well

i just have graduated),i did this formatting using java, but my project leader wants me to do the formatting using SP,and wants me to use staging table, so please help.