Home > Database > Mysql Tutorial > Oracle创建用户表空间和用户

Oracle创建用户表空间和用户

WBOY
Release: 2016-06-07 17:31:04
Original
1279 people have browsed it

--创建数据表空间 t_space1 为数据表空间名 datafile为数据文件路径 create tablespace t_space1 datafile

Linux公社

首页 → 数据库技术

背景:

阅读新闻

Oracle创建用户表空间和用户

[日期:2013-08-10] 来源:Linux公社  作者:Linux [字体:]

--创建数据表空间      t_space1 为数据表空间名 datafile为数据文件路径

create tablespace t_space1 datafile 'E:\OracleTableSpace\space_1\t_space1.dbf' size 5M autoextend on next 5M maxsize 20M extent management local ;
--删除数据表空间
drop tablespace t_space1 including contents and datafiles;

--创建临时表空间
create temporary tablespace temp_space1 tempfile 'E:\OracleTableSpace\space_1\temp_space1.dbf' size 5M autoextend  on next 5M maxsize 10M extent management local;
--删除临时表空间
drop temporary tablespace temp_space1 including contents and datafiles;

--创建用户并指定表空间
create user tdy identified by tdy
default tablespace t_space1
temporary tablespace temp_space1;

--授予权限

grant resource,connect to tdy;

--删除用户命
drop user tdy cascade;

推荐阅读:

[Oracle] 在没有备份的情况下undo损坏怎么办?

UNDO表空间失败的处理方法

undo表空间故障和ORA-01548处理

RAC下丢失undo表空间的恢复

UNDO表空间备份恢复

linux

  • 0
  • 利用XtrabBackup工具备份及恢复

    Oracle用户信息查询操作语句

    相关资讯       Oracle创建表空间 

  • Linux下和Windows下创建Oracle用户  (10/25/2013 19:14:52)
  • Oracle创建命名空间和新用户  (11/07/2012 06:36:55)
  • 图片资讯      

  • Linux下和Windows下创建Oracle用户和表空间

    Linux下和Windows下创
  • 本文评论   查看全部评论 (0)

    评论声明

    最新资讯

    本周热门

    Linux公社简介 - 广告服务 - 网站地图 - 帮助信息 - 联系我们
    本站(LinuxIDC)所刊载文章不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。


    Copyright © 2006-2014 Linux公社 All rights reserved 浙ICP备06018118号

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template