Answer Posted / s. senthil kumar
HOW TO CREATE TABLE FOR IMAGE FILE?
create table image_table (
file_id number,
file_desc varchar2(30),
file_loc bfile,
file_type varchar2(4));
HOW TO INSERT IMAGE FILE IN TABLE?
INSERT INTO image_table
VALUES(1,'Senthil
photo',bfilename('c:\photos','Kanneer.jpg'),'JPEG');
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
State the difference between a primary key and foreign key?
How to create additional tablespaces for an new database?
How would you edit your CRONTAB to schedule the running of /test/test.sh to run every other day at 2PM?
Explain the function of optimizer in oracle?
How many types of table in Oracle?
How to use subqueries with the in operator using oracle?
How to rebuild an index in oracle?
Is oracle a language?
Where is the export dump file located?
How to load excel data sheet to oracle database
Use of an integrity constraint is better to validate data. Explain
What is the difference between count (*), count (expression), count (distinct expression)?
What happens if the update subquery returns multiple rows?
What is the usage of save points in oracle database?
How to create an oracle database?