Overriding the Default Tablespace Type (79)
The SYSTEM and SYSAUX tablespaces are always created with the default tablespace
type. However, you can explicitly override the default tablespace type for the UNDO
and DEFAULT TEMPORARY tablespace during the CREATE DATABASE operation.
For example, you can create a bigfile UNDO tablespace in a database with the default
tablespace type of smallfile as follows:
CREATE DATABASE rbdb1
...
BIGFILE UNDO TABLESPACE undotbs
DATAFILE '/u01/oracle/oradata/mynewdb/undotbs01.dbf'
SIZE 200M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED;
You can create a smallfile DEFAULT TEMPORARY tablespace in a database with the
default tablespace type of bigfile as follows:
CREATE DATABASE rbdb1
SET DEFAULT BIGFILE TABLSPACE
...
SMALLFILE DEFAULT TEMPORARY TABLESPACE tempts1
TEMPFILE '/u01/oracle/oradata/mynewdb/temp01.dbf'
SIZE 20M REUSE
...
覆蓋預設的臨時表空間檔案型別
1. 可為UNDO和DEFAULT TEMPORARY顯示的指定表空間檔案型別 ,
以此來覆蓋預設的表空間檔案型別
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-995743/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-30012 undo tablespace 'UNDOTBS3' does not exist or of wrong typeS3
- Oracle OCP(48):UNDO TABLESPACEOracle
- MySQL 5.7 InnoDB Tablespace EncryptionMySql
- Tablespace表空間刪除
- offline tablespace 的幾種方式 (轉)
- Oracle default usersOracle
- mysql5.7 General tablespace使用說明MySql
- alter tablespace ts_name autoextend_clause
- 【TABLESPACE】Oracle表空間最佳實踐Oracle
- cannot convert (type interface {}) to type int: need type assertion
- SpringBoot專案maven pom.xml警告Overriding managed version問題解決Spring BootMavenXML
- 2.4.1.1 Default Services in a CDB
- 2.6.8.2 UNDO_TABLESPACE 初始化引數
- unlimited tablespace許可權的授予和回收MIT
- 【TABLESPACE】Oracle 表空間結構說明Oracle
- Unable to locate factory with name [default]
- @Builder.Default 及@BuilderUI
- 79. 單詞搜尋
- ac79啟動流程
- HITSC_4_Data Type and Type Checking
- [20200327]ORA-46267 Insufficient space in 'USERS' tablespace.txt
- ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
- SCSS !default預設變數CSS變數
- Apache2 Ubuntu Default PageApacheUbuntu
- oracle: default role 詳解(轉)Oracle
- export 和 export default 區別Export
- CSS :default與:checked 區別CSS
- bug solved | export 'default' was not found in 'xxx'Export
- 79 不用加減乘除做加法
- spring boot 服務啟動時no active profile set, falling back to default profiles: default的問題Spring Boot
- JavaScript中的export、export default、exports和module.exports(export、export default、exports使用詳細)JavaScriptExport
- export和export default的區別Export
- 1364 - Field did doesnt have a default value
- Renaming the default branch from master to main on GithubASTAIGithub
- 升級 dubbo 小心 default.version
- 【BUG】Oracle12c tablespace io statistics missing from awr reportOracle
- 11g-Reduce Transportable Tablespace Downtime using XTTS (Doc ID 1389592.1)TTS
- PostgreSQL DBA(79) - Locks(pg_blocking_pids)SQLBloC
- JavaScript select typeJavaScript