Oracle创建表空间语句

    xiaoxiao2021-03-25  79

    1,创建表空间

    create tablespace XXX

    logging

    datafile ‘D:\app\Administrator\oradata\orcl\XXX.dbf’ (datafile目录)

    size 50m

    autoextend on

    next 50m maxsize 20480m ;

    2.创建用户 create user User identified by User default tablespace XXX temporary tablespace temp; (用默认的临时表空间就行)

    3.授权 grant connect,resource,dba to ULTRABPP_TK;

    转载请注明原文地址: https://ju.6miu.com/read-16026.html

    最新回复(0)