Hello
I'm using data pump export in an application where it is required to determine the number of dump files got created for that table export.
I'm using filesize parameter in a data pump export,
dbms_datapump.add_file(
handle => l_dp_handle,
filename => 'tab_12345_part_%U.dmp',
directory => 'DPUMP_DIR',
filesize => '10M');
After export is completed, how can I get the number of files got created in this export job.?
Is data pump has any parameter which indicates the number of dump file is got created for that job ?
Can anybody please help me on this ?
Thanks
T