标签:
使用Oracle数据库,如果想创建一个用户账号怎么办?由于这个比较容易忘记,在此记录一下:
最后生成的SQL脚本语句是:
-- Create the user
create user SA
default tablespace USERS
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to SA;
grant resource to SA;
这样一个创建普通的Oracle账号就可以了
标签:
原文地址:http://www.cnblogs.com/codeinspiremyselft/p/4383581.html