Oracle 測試資料安裝是否成功

2021-04-24 08:58:09 字數 562 閱讀 9966

要測試資料安裝是否成功,可按順序執行以下兩個步驟:

測試步驟

1:請執行作業系統級的命令:tnsping orcl

上述命令假定全域性資料庫名是 orcl。以下是命令執行後的示例:

ok(50 毫秒)

其中,結果ok至關重要。

上述結果如果正確,表明偵聽器配置無誤。

測試步驟 2:請執行作業系統級的命令:sqlplus system/password@orcl

上述命令假定 system 使用者對應的口令是 password,假定全域性資料庫名是 orcl。

以下是命令執行後的示例(請手工輸入紅色部分文字):

select 1+2+3+4 測試結果 from dual;

測試結果

----------

10上述結果如果正確,表明資料庫例程安裝和啟動正常。

Oracle迴圈插入測試資料

declare maxrecords constant int 1000 i int 1 begin for i in 1.maxrecords loop insert into userinfo userid,login,password,firstname,lastname,isadminist...

構造測試資料 對比測試資料

正確 include using namespace std typedef long long ll const int max n 1e6 10 intmain return0 author max n date 2019 10 04 15.03.21 description 正確 錯誤 inc...

Oracle批量生成測試資料方法

一 test windos方式 declare maxrecords constant int 1000 i int 1 begin for i in 1.maxrecords loop insert into test2 id,name values test2 seq.nextval,to ch...