oracle创建表空间-大悟县灿优商贸网站建设

关于灿优商贸

多方位宣传企业产品与服务 突出企业形象

公司简介 公司的服务 荣誉资质 新闻动态 联系我们

oracle创建表空间

drop tablespace qb including contents and datafiles;
DROP TABLESPACE TJLGL INCLUDING CONTENTS AND DATAFILES;
drop user qb cascade
create tablespace qb 
logging
datafile 'E:\app\landa6\oradata\qb.DBF' --(表空间路径)
 size 32m 
  autoextend on 
   next 32m  
   extent management local; 
   
    create user qb identified by qb default tablespace qb 
     grant dba to qb;--(分配权限给用户) 
   SELECT 'DELETE FROM '|| table_name || ';' FROM USER_TABLES ORDER BY TABLE_NAME;

当前文章:oracle创建表空间
本文网址:http://www.apyobr.com/article/gcodjp.html

其他资讯