2016-06-22 30 views
0

我想爲PLSQL項目編寫一個單元測試來設置utPLSQL。 我在安裝時遇到錯誤。 我沒有得到如何安裝它。 任何人都可以一步步安裝utPLSQL?utPLSQL的安裝過程

感謝

+0

文檔看起來相當透徹。您是否看到Readme.txt和Getting Started網頁(started.html)? –

+0

是的,我做到了。 ut_i_do安裝不起作用 – Priyanka

+0

您看到的錯誤消息或錯誤行爲是什麼? –

回答

1

http://utplsql.sourceforge.net/Doc/fourstep.html

這看起來很簡單,但你必須連接到SYSTEM - 你的數據庫的超級用戶將能夠創建UTP用戶。

SQL> connect system/< the system's password > 

SQL> create user utp identified by utp default tablespace 
     users temporary tablespace temp; 

SQL> grant create session, create table, create procedure, 
     create sequence, create view, create public synonym, drop public synonym to utp; 

SQL> alter user utp quota unlimited on users; 

然後只運行

SQL> ut_i_do install