创建新的用户:如user1/pass1,赋予connect,resource权限。 SQL> grant connect,resource to user1 identified by pass1;
Oracle数据库的实例名,本例:oradb Oracle用户名,本例:user1
SQL> conn user1/pass1 SQL> create table test(a number,b char(10)); SQL> insert into test values(1,'一'); SQL> insert into test values(2,'二'); SQL> insert into test values(3,'三'); SQL> commit; SQL> select * from test;