第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

Oracle創(chuàng)建用戶和表空間

標(biāo)簽:
Oracle


  1. 在system下创建表空间:

    create tablespace CASETABLE
    datafile 'D:\app\CASETABLE.dbf' size 1024M --存储地址 初始大小1G
    autoextend on next 1024M maxsize unlimited   --每次扩展1G,无限制扩展
    EXTENT MANAGEMENT local  autoallocate
    segment space management auto;

  2. 在system下创建用户

    -- 创建用户
      create user ONECASE
      default tablespace CASETABLE
      temporary tablespace TEMP
      IDENTIFIED BY 123
      profile DEFAULT;

    -- 给用户授权
    -- Grant/Revoke role privileges
      grant connect to ONECASE;
      grant dba to ONECASE;
    -- Grant/Revoke system privileges
       grant create database link to ONECASE;
       grant unlimited tablespace to ONECASE;

  3. 在ONECASE用户下创建用户信息表

    -- Create table
    create table case_user
    (
      username VARCHAR2(32) not null,
      password  VARCHAR2(32) not null
    )
    tablespace CASETABLE
      pctfree 10
      initrans 1
      maxtrans 255
      storage
      (
        initial 64
        next 1
        minextents 1
        maxextents unlimited
      );
    -- Add comments to the table
    comment on table case_user
      is '用户登入信息表';
    -- Add comments to the columns
    comment on column case_user.username
      is '用户名';
    comment on column case_user.password
      is '密码';
    -- Create/Recreate primary, unique and foreign key constraints
    alter table case_user
      add constraint PK_LAS_CAMERABARCODE primary key (username)
      using index
      tablespace CASETABLE
      pctfree 10
      initrans 2
      maxtrans 255
      storage
      (
        initial 64K
        next 1M
        minextents 1
        maxextents unlimited
      );

點擊查看更多內(nèi)容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評論
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學(xué)

大額優(yōu)惠券免費領(lǐng)

立即參與 放棄機會
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報

0/150
提交
取消