[E-Bussiness Suite] Query get all attachment file size in oracle db
in
E-Bussiness Suite,
Query
- on 10:21:00 AM
- No comments
Deskripsi
FND_LOBS table is one of the largest objects in an E-Business Suite instance. FND_LOBS table contains all the attachments which were attached by users in all the modules of EBS. the attachment go into fnd_lobs table as large objects. Not stored in Unix box or other.
Howto
get data file size every attachment :
select file_id
,file_name
,upload_date
,dbms_lob.getlength(file_data) size_In_byte
,file_content_type
,file_format
,language
,oracle_charset
from fnd_lobs;
get total size all attachment
select count(dbms_lob.getlength(file_data))
from fnd_lobs;
*tested, works
Post a Comment
Harap gunakan bahasa yang baik dan sopan, terima kasih