hello.There's a very interesting feature in oracle. You can specify
the table space you'd like
to use for data or index of a Table
for example :

I use one table space for the data and another for the index

sample for TABLE syntaxe
Create table toto
( xx          VARCHAR2(3),
   xxx       VARCHAR2(20) )
tablespace MY_TABLE_SPACE_FOR_DATA

sameple for index syntaxe
Create Index IDX_XXX ON Table Tablespace MY_TABLE_SPACE_FOR_INDEX

is there a way to specify the table space you want to use in the table
definition of slqAlchemy ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to