Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (6.1k points)

I am doing a PLSQL project and for that I want to set up utPLSQL to write a unit test. But error is coming while installation. Please guide me how to do it.

1 Answer

0 votes
by (11.7k points)

FIrst of all it is necessary to connect to sqlplus as SYSTEM - a power user on your database which will create a UTP user.

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;

Then only run

SQL> ut_i_do install 

If you want to get more insights into SQL, checkout this SQL Course from Intellipaat.

Browse Categories

...