Reputation: 87
I need to check file size before inserting on oracle table with oracle apex, that user can not be able attach a big size file for uploading.
Thanks
Upvotes: 1
Views: 4334
Reputation: 3841
How about
dbms_lob.getlength(Upload_blob);
Also take a look at this example: How to upload an image (file) into a table (BLOB)
Upvotes: 4