Oracle blob jpg photo extract
How to extract Oracle blob jpg photo for different modules and forms? I am preparing lecture for my new employees.
How to extract Oracle blob jpg photo for different modules and forms? I am preparing lecture for my new employees.
Hey Daniel,
To extract Oracle blob jpg, do the following –
I have to export table with lob column (3 GB is the size of lob segment) and then drop that lob column from table. Table has about 350k rows.
1. Make a new table space
2. Copy the table with CTAS being a new table space
3. Change it to NOLOGGING
4. Use APPEND hint to insert all rows.
5. Use transport table space feature to extract the rows.
6. Drop previously created table space
That should do it.
Hello Daniel,
You have to make a new table space => copy the table with CTAS being a new table space => change it to NOLOGGING => use APPEND hint to insert all rows => use transport table space feature in order to extract the rows => and finally drop the previous created table space.