Step 8: Create Additional Tablespaces (66)
To make the database functional, you need to create additional files and tablespaces
for users. The following sample script creates some additional tablespaces:
CONNECT SYS/password AS SYSDBA
-- create a user tablespace to be assigned as the default tablespace for users
CREATE TABLESPACE users LOGGING
DATAFILE '/u01/oracle/oradata/mynewdb/users01.dbf'
SIZE 25M REUSE AUTOEXTEND ON NEXT 1280K MAXSIZE UNLIMITED
EXTENT MANAGEMENT LOCAL;
-- create a tablespace for indexes, separate from user tablespace
CREATE TABLESPACE indx LOGGING
DATAFILE '/u01/oracle/oradata/mynewdb/indx01.dbf'
SIZE 25M REUSE AUTOEXTEND ON NEXT 1280K MAXSIZE UNLIMITED
EXTENT MANAGEMENT LOCAL;
第八步 : 建立另外的表空間
[@more@]來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-995590/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Step 10: Run Scripts to Install Additional Options (Optional) (68)
- Step by Step Guide on How to Create Logical Standby [ID 738643.1]GUIIDE
- Step 3: Create the Initialization Parameter File (61)
- Step 7: Issue the CREATE DATABASE Statement (65)Database
- Step By Step Guide To Create Physical Standby Database Using RMAN [ID 469493.1]GUIIDEDatabase
- Step 5: Create a Server Parameter File (Recommended) (63)Server
- Step-By-Step Guide To Create Physical Standby On Normal File System For ASM Primary using RMANGUIIDEORMASM
- MM-step to create a new material type/valuation cloass//account category referenceGo
- Oracle Encrypted TablespacesOracle
- Overview of Tablespaces (38)View
- Additional Data Tab in Sales Order
- React Step by StepReact
- 【OCP最新題庫解析(052)--題8】Which two are true about undo tablespaces?
- Oracle Transporting TablespacesOracle
- oracle bigfile tablespacesOracle
- 66
- mysql additional pool 指的是什麼?MySql
- Command 模式 Step by Step模式
- BAPI Step by step GuidanceAPIGUI
- Step by Step TimesTen --- ttIsqlSQL
- 實現 VUE 中 MVVM – step8 – 優化EventVueMVVM優化
- How to Move Tablespaces Across Platforms Using Transportable Tablespaces With RMAN [ID 371556.1]ROSPlatform
- Using Multiple Tablespaces (46)
- Transport of Tablespaces Between Databases (59)Database
- Sales Order Form · Additional Line InformationORM
- Promise的實現(step by step)Promise
- Learn c++ step by step (轉)C++
- Linux Software RAID step by stepLinuxAI
- Git Step by Step (3):Git物件模型Git物件模型
- Oracle高階複製Step by StepOracle
- 安裝linux(step by step)(轉)Linux
- Learn C++ step by step(2) (轉)C++
- 2.5 Overview of Tablespaces and Database Files in a CDBViewDatabase
- Temporary tablespaces in RAC ? Oracle databas...Oracle
- 單步除錯 step into/step out/step over 區別詳解除錯
- ABP應用開發(Step by Step)-下篇
- ABP應用開發(Step by Step)-上篇
- TIDB DM資料同步step by stepTiDB