oracle新建使用者,表空間,並授權

这都没什么發表於2024-05-10
create user 【name】 identified by 【password】
create tablespace 【namespace】 datafile '/home/oracle/data/xxx.dbf' size 1000M autoextend on next 500m;

alter user 【name】 quota unlimited on 【namespace】;

相關文章