要使用命令行登錄Oracle數(shù)據(jù)庫,您可以按照以下步驟操作:
打開命令行窗口(如Windows的CMD或Linux的Terminal)。
輸入以下命令來登錄到Oracle數(shù)據(jù)庫:
sqlplus username/password@hostname:port/servicename
其中:
username
是您的Oracle數(shù)據(jù)庫用戶名。password
是您的Oracle數(shù)據(jù)庫密碼。hostname
是Oracle數(shù)據(jù)庫的主機名或IP地址。port
是Oracle數(shù)據(jù)庫的端口號,默認(rèn)為1521。servicename
是Oracle數(shù)據(jù)庫的服務(wù)名。例如,如果您的用戶名是scott
,密碼是tiger
,主機名是localhost
,端口號是1521
,服務(wù)名是orcl
,則命令應(yīng)該是:
sqlplus scott/tiger@localhost:1521/orcl
按下Enter鍵后,您將被提示輸入密碼。輸入密碼后按Enter鍵即可登錄到Oracle數(shù)據(jù)庫。
如果登錄成功,您將看到類似以下的提示信息:
Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
現(xiàn)在您已經(jīng)成功登錄到Oracle數(shù)據(jù)庫,可以執(zhí)行SQL查詢和其他操作了。