zoukankan      html  css  js  c++  java
  • oracle 常用语句

    ----- 创建表空间
    create tablespace data_TABLESPACE
    logging  
    datafile 'D:APPADMINISTRATORORADATAWEAIRSDATA.DBF' 
    size 50m  
    autoextend on  
    next 50m maxsize 20480m  
    extent management local;

    ---创建用户

    create user test identified by test default tablespace data_TABLESPACE;

    ---赋值权限

    grant sysdba to test;

    grant connect,resource,dba to test;

    grant all privileges to test

    grant all privileges to zr_da_gz

    imp test/test@tool file=d:data.dmp fromuser=test touser=test log=d:imp.log tablespaces=data_TABLESPACE

    exp test/test@TestDB file=E:/test20.dmp owner=test log=d:exp.log

  • 相关阅读:
    CPU使用率终极计算
    elementui
    spring security oauth2
    maven bom
    vue jsx
    [spring cloud] feign声明
    加分项
    JAVA日报
    JAVA日报
    JAVA日报
  • 原文地址:https://www.cnblogs.com/cicada/p/12689498.html
Copyright © 2011-2022 走看看