oracle创建新用户,给予表空间以及基本权限

    xiaoxiao2021-04-13  29

    create temporary tablespace temp_1 tempfile 'E:\temp_1.dbf' size 20M autoextend on;//在E盘创建20M的表空间 create tablespace ts_1 datafile 'E:\ts_1.dbf' size 20M autoextend on; create user user1 identified by 111111 default tablespace ts_1 temporary tablespace temp_1; grant resource,connect,dba to user1;
    转载请注明原文地址: https://ju.6miu.com/read-668825.html

    最新回复(0)