要使用Oracle SQL*Plus連接到數(shù)據(jù)庫,請(qǐng)按照以下步驟操作:
打開命令提示符(Windows)或終端(Linux/macOS)。
輸入以下命令以啟動(dòng)SQL*Plus:
sqlplus
CONNECT username/password@hostname:port/servicename
其中:
username
是你的數(shù)據(jù)庫用戶名。password
是你的數(shù)據(jù)庫密碼。hostname
是數(shù)據(jù)庫服務(wù)器的主機(jī)名或IP地址。port
是數(shù)據(jù)庫監(jiān)聽的端口號(hào)(通常為1521)。servicename
是數(shù)據(jù)庫實(shí)例的服務(wù)名。例如,如果你的用戶名是scott
,密碼是tiger
,數(shù)據(jù)庫服務(wù)器的IP地址是192.168.1.100
,端口號(hào)是1521
,服務(wù)名是orcl
,則輸入以下命令:
CONNECT scott/tiger@192.168.1.100:1521/orcl
Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.3.0.0.0
現(xiàn)在你已經(jīng)成功連接到了Oracle數(shù)據(jù)庫,可以開始執(zhí)行SQL語句和操作數(shù)據(jù)庫了。