Hi All,
i am trying to bulk load data from view to table.I have 1 record in source view.but i want to insert records into set of 10K.
for example:
insert into target_table
select col1,
col1,
col2
from view limit 10000;
but above code is not working.
I want to insert set of 10000 records 10 times.
Please share your suggestions.Thanks in advance.