Currently, by default, create table and index DDLs will place tables in MYDB_DATA_TABLE_SPACE
, I would like to specify a different default table space for indexes from table data, so I should not always explicitly indicate that in my creation index DDL, is this possible?
Current:
Table -> MYDB_DATA_TABLE_SPACE
It is required:
Table -> MYDB_DATA_TABLE_SPACE Index -> MYDB_INDX_TABLE_SPACE
source share