I have requirement such as
follow are the steps
step 1 : From java process I will create a temp table(# table ).
step 2 : Insert some data to that temp table(# table ) after parsing a csv file.
Step 3 : Will call a Procedure which will access that temp table(# table )
and do some processing and insert the data from temp table
to a parmanent table, and return error if present
Step 4 : Drop the temp table
ORM Tool : mybatis
Database server : SYBASE ASE 15.0
Programming Language : Java,Tsql
Please help
EDIT : Found out the answer, I have to use global temptable (## temp table) :)