我已经在MacOSX上安装了SQL Plus和Instantclient,并且一直在尝试使用给定的客户端连接到服务器,但是,我尝试使用的所有默认密码组合都无法使用。如果有人使用它,可以请您分享默认的用户名/密码吗?
答案 0 :(得分:0)
启动SQL Plus时,用户和要求输入的密码是连接到数据库的凭据,对于远程连接,可以使用以下命令进行操作:
SQL> create or replace procedure p_test (p_deptno in number) --> here
2 is
3 begin
4 insert into test (deptno, ename)
5 select deptno, ename
6 from emp
7 where deptno = p_deptno; --> here
8 end;
9 /
Procedure created.
SQL> truncate table test;
Table truncated.
SQL> exec p_test (10);
PL/SQL procedure successfully completed.
SQL> select * From test;
DEPTNO ENAME
---------- ----------
10 CLARK
10 KING
10 MILLER
SQL>