Home » RDBMS Server » Performance Tuning » Locally Managed Table syntax
Locally Managed Table syntax [message #123950] |
Wed, 15 June 2005 12:11  |
livetaurean19
Messages: 4 Registered: June 2005
|
Junior Member |
|
|
Hi,
I already have LOCALLY MANAGED TABLESPACE, but I need to include LOCALLY MANAGED in the CREATE TABLE syntax as well.
I have no clue as to how to include this in the CREATE TABLE.
If anyone knows how to do this..pls reply ASAP..
Any help would be appreciated..
|
|
|
|
Re: Locally Managed Table syntax [message #123953 is a reply to message #123952] |
Wed, 15 June 2005 12:20   |
livetaurean19
Messages: 4 Registered: June 2005
|
Junior Member |
|
|
Hi ,
My these 2 tablespace(s)
-A_TRAN_512K_INDX
- A_MSTR_512K_DATA
are already LOCALLY MANAGED tablespace(s).
and I've even included their names in the CREATE TABLE syntax.
But still I've been asked to include the LOCALLY MANAGED syntax in the create tables script.
Pls refer to my create table script pasted below.
Pls advice, how do I write the create statements also as 'locally managed'.
CREATE TABLE TEST_LMT (
NBR_ID NUMBER(22) CONSTRAINT XPKLDS_TEST_LMT primary key USING INDEX
STORAGE(INITIAL 200K NEXT 200K PCTINCREASE 0 MAXEXTENTS 50)TABLESPACE A_TRAN_512K_INDX,
NBR_NM VARCHAR2 (50) NOT NULL
)
TABLESPACE A_MSTR_512K_DATA LOGGING
PCTFREE 10
PCTUSED 40
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 65536
MINEXTENTS 1
MAXEXTENTS 2147483645
FREELISTS 1 FREELIST GROUPS 1 )
NOCACHE;
[Updated on: Wed, 15 June 2005 12:21] Report message to a moderator
|
|
|
|
|
|
|
|
|
Goto Forum:
Current Time: Thu May 01 11:27:01 CDT 2025
|