utPLSQL的安装过程

时间:2016-06-22 19:37:32

标签: oracle unit-testing plsql utplsql

我正在尝试设置utPLSQL来为PLSQL项目编写单元测试。 我在安装时遇到错误。 我没有得到如何安装它。 任何人都可以一步一步地安装utPLSQL吗?

由于

1 个答案:

答案 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