当前位置:网站首页>5. Oracle TABLESPACE
5. Oracle TABLESPACE
2022-07-05 06:22:00 【Feuilles froides flottantes】
- Créer un espace de table auto - partitionné géré localementUSERTBS1,Le fichier de données correspondant est20m
create tablespace usertbs1 datafile 'D:\app\Snakewood\oradata\orcl\usertbs1.dbf' size 20m;
- Créer un espace de table géré localementUSERTBS2,La taille de chaque partition est512K
create tablespace usertbs2 datafile 'D:\app\Snakewood\oradata\mydba\usertbs2.dbf' size 20m extent management local uniform size 512k;
- ModifierUSERTBS1Taille de l'espace de table,Changez le fichier de données de cet espace de table en mode d'extension automatique,Max.100M
alter database datafile 'D:\app\Snakewood\oradata\mydba\usertbs1.dbf' autoextend on next 5m maxsize 100m;
- PourUSERTBS2 Espace de table ajouter un fichier de données ,Taille20M
alter tablespace usertbs2 add datafile 'D:\app\Snakewood\oradata\mydba\usertbs2_1.dbf' size 20m;
- Créer un espace de table temporaire TEMPTBS1, Et défini comme l'espace de table temporaire par défaut pour la base de données
create temporary tablespace temptbs1 tempfile 'D:\app\Snakewood\oradata\mydba\ temptbs1_1.dbf' size 20m extent management local uniform size 16m;
alter database default temporary tablespace temptbs1;
- UtiliserSQLOrdre correctUSERTBS1 TABLESPACE pour les transitions d'état en ligne et hors ligne
Alter tablespace USERTBS1 offline;
Alter tablespace USERTBS1 online;
- Créer unSCTableau(SNO,CNO,GRADE),Ajoutertablespace usersPhrases,Et ensuite,USERS L'espace de table est défini en lecture seule ,Essayez deSCAjouter un enregistrement au tableau
create table SC (
SNO varchar2(20) primary key,
CNO varchar2(20) not null,
GRADE number(3) not null
)
tablespace users;
alter tablespace users read only;
insert into SC values (‘B201801’,’C0101’,98);
- Créer un espace de table ROLLBACK UNDOTBS2, Et comme espace de table Undo pour la base de données
create undo tablespace UNDOTBS2 datafile ‘D:\app\Snakewood\oradata\mydba\ UNDOTBS2_1.DBF’ size 20m;
- Oui.USERTBS1 Renommer l'espace de table en USERTBS01
alter tablespace USERTBS1 rename to USERTBS01;
- Supprimer l'espace de tableUSERTBS2, Supprimer à la fois le contenu et les fichiers de données de cet espace de table
drop tablespace USERTBS2 including contents and datafiles;
边栏推荐
- Traditional databases are gradually "difficult to adapt", and cloud native databases stand out
- 11-gorm-v2-02-create data
- Leetcode backtracking method
- 高斯消元 AcWing 884. 高斯消元解异或线性方程组
- 博弈论 AcWing 891. Nim游戏
- Leetcode recursion
- Leetcode array operation
- 1.15 - input and output system
- Gauss Cancellation acwing 884. Solution d'un système d'équations Xor linéaires par élimination gaussienne
- 求组合数 AcWing 887. 求组合数 III
猜你喜欢
LeetCode-61
2021apmcm post game Summary - edge detection
liunx启动redis
Quickly use Amazon memorydb and build your own redis memory database
SQLMAP使用教程(二)实战技巧一
Single chip computer engineering experience - layered idea
Sqlmap tutorial (1)
高斯消元 AcWing 884. 高斯消元解异或線性方程組
Gaussian elimination acwing 884 Gauss elimination for solving XOR linear equations
Alibaba established the enterprise digital intelligence service company "Lingyang" to focus on enterprise digital growth
随机推荐
LeetCode 1200. Minimum absolute difference
MPLS experiment
MySQL advanced part 1: stored procedures and functions
MIT-6874-Deep Learning in the Life Sciences Week 7
SPI details
liunx启动redis
Nested method, calculation attribute is not applicable, use methods
Alibaba's new member "Lingyang" officially appeared, led by Peng Xinyu, Alibaba's vice president, and assembled a number of core department technical teams
Sum of three terms (construction)
SQL三种连接:内连接、外连接、交叉连接
Chart. JS - Format Y axis - chart js - Formatting Y axis
Introduction to LVS [unfinished (semi-finished products)]
4.Oracle-重做日志文件管理
2048项目实现
4. 对象映射 - Mapping.Mapster
[BMZCTF-pwn] ectf-2014 seddit
Network security skills competition in Secondary Vocational Schools -- a tutorial article on middleware penetration testing in Guangxi regional competition
20220213-CTF MISC-a_ good_ Idea (use of stegsolve tool) -2017_ Dating_ in_ Singapore
高斯消元 AcWing 884. 高斯消元解异或線性方程組
[rust notes] 16 input and output (Part 1)