Hi,
Is there a mechanism to load files using tpt operator, and have row number for each row of a file in order. In case i have a file
abc.txt where i have 10 rows. Then in the DB i can have rownumber for each row in order from 1 to 10.
Eg.
File:abc.txt
name id salary
abc 123 10000
bcd 234 3000
rfg 356 2000
total salary 15000
IN Database
locking row for access select * from emp.emp_sal ;
rownum emp_name emp_id emp_salary
1 name id sal
2 abc 123 10000
3 bcd 234 3000
4 rfg 356 2000
5 total salary:15000
↧