要连接到指定的数据库,可以使用以下命令:
sqlplus username/password@hostname:port/service_name
其中,username
是数据库用户的用户名,password
是用户的密码,hostname
是数据库服务器的主机名或IP地址,port
是数据库服务器的监听端口号,service_name
是数据库的服务名。
例如,要连接到数据库用户scott
的密码tiger
,位于主机localhost
,监听端口1521
,服务名为ORCL
的数据库,可以使用以下命令:
sqlplus scott/tiger@localhost:1521/ORCL
注意:如果没有指定监听端口号,默认使用的是Oracle数据库的默认端口号1521。