alter user scott account unlock;
alter user scott identified by tiger;
1.首先我们可以用system用户以sysdba的身份登录oracle.
sqlplus system/123456 as sysdba;
2.然后我就可以来创建用户了.
create user test1 identified by test;
3.修改用户的密码.(密码:123456)
alter user test1 identified by 123456;
4.创建一个表空间.(我在这里创建的空间名为test_test,指定了文件路径为:‘D:\Oracle\zs_zs.dbf’)
create tablespace test_test datafile 'C:\Oracle\zs_zs.dbf' size 200M;
(上面创建的表空间不要误删除!!!!误操作)
5.创建好表空间,还需要将表空间分配给用户.
alter user test1 default tablespace test_test ;
6.给用户分配了表空间,用户还不能登陆(没有登录权限),因此还需要为用户分配权限
grant create session,create table,create view,create sequence,unlimited tablespace to test1;
grant dba to tony;
第 1 行出现错误:
ORA-01119: 创建数据库文件 ‘C:\Oracle\zs_zs.dbf’ 时出错
ORA-27040: 文件创建错误, 无法创建文件
OSD-04002: 无法打开文件
O/S-Error: (OS 3) 系统找不到指定的路径。
SQL> create tablespace test_test datafile 'C:\Oracle\zs_zs.dbf' size 200M;
表空间已创建。
SQL> alter user test1 default tablespace test_test ;
用户已更改。
SQL> grant dba to test;
授权成功。