在安装的数据库目录中找到oracleproduct9.2bin 中的sqlplus程序,运行:./sqlplus system/manager@ora9i用system用户创建自己的用户、权限;sql语句如下:1、创建用户:create user username identified by pwd default tablespace users Temporary TABLESPACE Temp;2、用户授权grant connect,resource,dba to business;3、提交commit;
eg::::
create user wlq identified by newtouchone default tablespace wlq;grant dba,connect,resource to wlq; Oracle用户创建、权限分配