我正在尝试设置utPLSQL来为PLSQL项目编写单元测试。 我在安装时遇到错误。 我没有得到如何安装它。 任何人都可以一步一步地安装utPLSQL吗?
由于
答案 0 :(得分:1)
来自http://utplsql.sourceforge.net/Doc/fourstep.html
看起来很简单,但您必须以SYSTEM
身份连接到sqlplus - 数据库中的高级用户才能创建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