The syntax is exactly what Oracle uses as far as i can tell, and I think that we need 'using index' in there, because it's the index that's in a tablespace, NOT the constraint itself.
Includes docs.
eg:
create table test (a integer primary key index tablespace loc);
create table test (a integer unique index tablespace loc);
create table test (a integer); alter table test add primary key(a) index tablespace loc;
create table test (a integer); alter table test add unique(a) index tablespace loc;
Chris
conspc.txt.gz
Description: GNU Zip compressed data---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]