Oracle CREATE TABLE Space __oracle

Source: Internet
Author: User

Oracle Create Tablespace

Url:http://www.cnblogs.com/netsql/articles/1745978.html


/* is divided into four steps *
///////* 1th: Create temporary table Space  * * *
temporary tablespace user_temp  
tempfile ' D:\oracle\oradata\ ORACLE9I\USER_TEMP.DBF ' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/* 2nd step: Create datasheet Space  * *
tablespace user_data  
logging  
datafile ' D:\oracle\oradata\Oracle9i\user _DATA.DBF ' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/* 3rd step: Create user and specify table space */create username
username identified by password  
default tablespace user_data  
Temporary tablespace user_temp;  
 
/* 4th step: Give the user permission  * * Grant
CONNECT,RESOURCE,DBA to username;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.