oracle11g Create, delete, tablespace statements __oracle

Source: Internet
Author: User
Remove tablespace
drop tablespace POSP including CONTENTS and datafiles;

/divided into four steps/

/* 1th step: Create temporary table space  * *
temporary tablespace posp_temp 
tempfile ' F:\oracle\oracle-data\posp_temp.dbf ' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;    
/* 2nd step: Create datasheet Space  * *
tablespace POSP
logging  
datafile ' F:\oracle\oracle-data\posp_data.dbf ' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
/* 3rd step: Create user and specify table space */create username
Posp identified by Posp
default tablespace posp
Temporary Tablespace posp_temp;
/* Step 4th: Grant permissions to the user/grant
connect,resource,dba to Posp

Reference:
Create tablespace:
https://www.cnblogs.com/wangsaiming/p/3555994.html
Processing of ora-01119 and ora-27040 when creating tablespaces:
https://www.cnblogs.com/gaojian/p/3612845.html
Oracle deletes users and tablespaces:
http://blog.csdn.net/oscar999/article/ details/7468153

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.