Oracle用Sqlplus建立scoot為什麼不成功呢?求幫助

時間 2022-08-10 16:55:11

1樓:匿名使用者

估計你的指令碼有問題,或者你的路徑有問題。

你直接連線:

如果是本地:

sql>connect scott/tiger --密碼預設為tiger,你自己寫實際的

如果是遠端伺服器:

sql>connect scott/tiger@orcl --假設orcl為遠端伺服器在你機器上的本地net服務名

2樓:匿名使用者

你只是執行了建立scott的指令碼而已,還沒有連線scott使用者你可以先查詢一下目前資料庫是否有scott使用者conn / as sysdba

select username,account_status from dba_users where username like '%scott%';

account欄位如果是locked那麼就需要解鎖使用者alter user scott account unlock identified by tiger;

然後conn scott/tiger

oracle建立使用者語句,用oracle裡的sql語言建立使用者

建立使用者 create user 使用者名稱 identified by 密碼,當然建立完使用者後,你要給最基本的connect和resource角色,否則無法登入的。查詢許可權 grant select on 該表使用者名稱.gecs law to 新加使用者名稱 建立使用者 create us...

select into怎麼用,oracle 中select into是什麼意思

龍之喵喵豬 elect into語句從一個表中選取資料,然後把資料插入另一個表中。把所有的列插入新表 select into new table name from old tablename select into 語句可用於建立表的備份復件。學習,是指通過閱讀 聽講 思考 研究 實踐等途徑獲得知...

oracle資料庫dblink怎麼用

select from 表名 dblink名 建立公開資料庫連結 create public database link 資料庫連結別名 connect to 登陸使用者 identified by 登陸密碼 using description address list address protoc...