SQL> CREATE TABLE myBFile 2 (id NUMBER PRIMARY KEY, 3 bfile_data BFILE); Table created. SQL> SQL> INSERT INTO myBFile VALUES (1,null); 1 row created. SQL> SQL> SQL> drop table myBFile; Table dropped. SQL>