oracle 创建大数据空间

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
create BIGFILE tablespace YCDBA 
logging
datafile '/home/oracle/yc/YCDBA'
size 512m
autoextend on
next 512m maxsize unlimited
extent management local;

create temporary tablespace TEMP_YCDBA
tempfile 'TEMP_YCDBA.dbf' size 5m autoextend on;


create BIGFILE tablespace YCDATA
logging
datafile '/home/oracle/yc/YCDATA'
size 512m
autoextend on
next 512m maxsize unlimited
extent management local;

create temporary tablespace TEMP_YCDATA
tempfile 'TEMP_YCDATA.dbf' size 5m autoextend on;


create user YCDBA identified by YCDBA
default tablespace YCDBA
temporary tablespace TEMP_YCDBA;

create user YCDATA identified by password
default tablespace YCDATA
temporary tablespace TEMP_YCDATA;
Related post
Comment
Share
  • oracle management

    oracle 常用管理命令环境变量12345export ORACLE_HOME=/opt/oracle/product/11.2.0/dbhome_1export ORACLE_SID=orcl#export NLS_LANG=AM...

    oracle management
  • oracle-install-linux

    linux oracle数据库无图形界面安装1 准备安装路径和用户12345678910111213141516/usr/sbin/groupadd oinstall/usr/sbin/groupadd dba/usr/sbin/us...

    oracle-install-linux
  • oracle_xe

    oracle xeOracle Database 11g Express Edition (Oracle Database XE) is an entry-level, small-footprint database based o...

    oracle_xe
  • Hello World

    Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using ...

    Hello World
  • install elasticsearch on linux

    Linux安装elasticsearch配置参考下载http://172.16.60.100/tools/elasticsearch/ 配置好JAVA_HOME需要jkd1.7以上版本, 配置好JAVA_HOME ES 5.3yum安...

    install elasticsearch on linux
  • flowchat

    $$E=mc^2$$ $$\sum_{i=1}^n a_i=0$$$$\sum ^ {j-1}{k=0}{\widehat{\gamma} {kj} z k } $$ $$\Gamma(z) = \int_0^\infty t^...

    flowchat
  • linux-common-comand

    linux 一些命令工具nginx basic 认证文件生成12yum install httpd-toolshtpasswd -c 生成的认证文件名 用户名 字符串搜索12grep -Ril '搜索内容' ./...

    linux-common-comand
  • cabot install

    cabot 安装环境 centos6.5 64 python: 2.7 python2.7 安装参考graphite-install-on-centos cabot安装参考https://gist.github.com/Gromph...

    cabot install
  • luigi install

    luigi 安装官方文档: http://luigi.readthedocs.io/en/latest/中文: https://github.com/17zuoye/luiti/blob/master/README.zh_CN.mar...

    luigi install
  • centos repo

    公司centos源centos源列表(翻墙): https://www.centos.org/download/mirrors/epel源列表(翻墙): https://fedoraproject.org/wiki/EPEL163源:...

    centos repo
Please check the comment setting in config.yml of hexo-theme-Annie!