Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Using Multiple BLOB Columns

Re: Using Multiple BLOB Columns

From: JMecc <jmecc_at_telus.net>
Date: 17 Sep 2006 15:34:48 -0700
Message-ID: <1158532488.408555.37540@d34g2000cwd.googlegroups.com>


I've got it working now, by taking out that glob_store part:

create table multiblob (

LastName	char(20),
FirstName	char(20),
Age		integer,
Pic1		BLOB,
Pic2		BLOB,

PRIMARY KEY (LastName, FirstName))
LOB (Pic1, Pic2) STORE AS (
STORAGE (INITIAL 6M NEXT 6M PCTINCREASE 0) );

Jo Received on Sun Sep 17 2006 - 17:34:48 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US