Can you explain how to insert an image in table in oracle?

Can you explain how to insert an image in table in oracle?

Insert image into a table:
Create the following table:
create table pics_table
(bfile_id number,
bfile_desc varchar2(30),
bfile_loc bfile,
bfile_type varchar2(4))
TABLESPACE appl_data
storage (initial 1m next 1m pctincrease 0)

Insert Query:
INSERT INTO pics_table
VALUES(4,'test image',bfilename('GIF_FILES','Test.JPG'),'JPEG');
How to find out second largest value in the table? - oracle
Second largest value in the table - SELECT * FROM EMP WHERE SAL IN (SELECT MAX(SAL) FROM EMP...
Disadvantage of user defind function in oracle
Disadvantage of user defind function in oracle - Disadvantage of UDF in Oracle: Oracle does not support calling UDFs with Boolean parameters or return types...
Significance of cluster table or non cluster table - oracle
Cluster table or non cluster table - A Cluster provides an alternate method of storing table data. It is made up of a group of tables that share the same data...
Post your comment