Hello All
I have set of 10 tables whose data I want to export in a csv file. One option is to use UTL_FILE and extract data. In some of the tables data is around 500 million rows, which I am planning to extract in chunks of 20 - 30 million records per file. Is UTL_FILE good option to take an export for tables with 500 million rows?
Secondly, can we use expdp to just export but selective set of records every time? For example, lets say table "TEST1" contain a column load_date which has dates. Is it possible to just export using EXPDP only those records where load_date = <<input parameter>>. Since, this is a recurring activity, as a result the data input has to be parameterized.
Anything suggestions would be really helpful.
Thanks
J