码迷,mamicode.com
首页 > 数据库 > 详细

Oracle角色,权限,表空间基础语句

时间:2018-10-23 21:15:37      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:oracle角色   角色   技术   seq   分享   incr   bubuko   sele   source   

控制台:

-sqlplus         -----连接数据库

-conn sys/123456@orcl as sysdba        -----登录sys

-create tablespace lpf_tablespace datafile ‘D:\mywork\Oracle\oradata\orcl\LPFTABLESPACE.DBF‘ size 100m autoextend on next 32m maxsize unlimited;        -----创建表空间

-create user lpf identified by 123456 default tablespace lpf_tablespace;        -----创建用户

-gtant connect,resource to lpf;        -----赋予用户角色(包含相关系统权限)

 

plsql:

-技术分享图片        -----建表

-技术分享图片        -----设置主键

-创建主键的自增:

 create sequence cust_seq1 start with 1 increment by 1 minvalue 1 nomaxvalue cache 10;         -------创建自增序列

 create or replace trigger cust_insert before insert on cst_customer for each row when(new.cust_id is null) begin select cust_seq.nextval into:new.cust_id from dual; end;   ------创建触发器

 insert into cst_customer (cust_name) values (‘123‘);    ------测试

 技术分享图片

 

Oracle角色,权限,表空间基础语句

标签:oracle角色   角色   技术   seq   分享   incr   bubuko   sele   source   

原文地址:https://www.cnblogs.com/Radcat/p/9835112.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!