zoukankan      html  css  js  c++  java
  • 【考试】用户管理

    1)创建一个用户名称为user1并授予权限至少能够访问hr.employees(不能授予dba权限)
    SYS@ORA11GR2>create user user1 identified by user1;
    
    User created.
    SYS@ORA11GR2>grant create session,create table,create sequence,create view to user1;
    
    2)用user1用户创建表students(学号 数值类型 主键约束stud_sno_pk,班级 字符类型外键参照班级表的班级列,姓名 字符类型 非空);
    USER1@ORA11GR2>create table students
      2  (sno number constraint stud_sno_pk primary key,
      3  scno number(20),
      4  sname varchar2(20),
      5  constraint stud_scl_fk foreign key (scno) references classes (cno));
    
    Table created.
    
    3)用user1用户创建表classes(班级 数值类型 主键约束);
    USER1@ORA11GR2>create table classes
      2  (cno number(5) constraint pk_cno primary key using index);
    
    Table created.
    4)模拟向以上两个表中插入数据,并且在数据字典中查询两个表的约束信息并显示。
    USER1@ORA11GR2>insert into classes values(01);
    
    1 row created.
    
    USER1@ORA11GR2>insert into classes values(02);
    
    1 row created.
    
    USER1@ORA11GR2>insert into students values(1,01,'zhangsan');
    
    1 row created.
    
    USER1@ORA11GR2>insert into students values(2,02,'lisi');
    
    1 row created.
    
    USER1@ORA11GR2>select constraint_name,constraint_type,table_name
      2  from user_constraints
      3  where table_name=upper('students');
    USER1@ORA11GR2>select constraint_name,constraint_type,table_name
      2  from user_constraints
      3  where table_name=upper('classes');
  • 相关阅读:
    python调用函数
    python递归函数的执行过程
    linux rwx 权限说明
    linux ssh scp免密码
    linux的bash特性
    python3常用的内置函数
    linux清理系统缓存
    vim常用命令
    公司项目安装禅道
    jquery 自定义动画
  • 原文地址:https://www.cnblogs.com/tomatoes-/p/6087196.html
Copyright © 2011-2022 走看看