Skip to content

Commit 7393559

Browse files
committed
Fixed privileged for UT3_OWNER.
1 parent e249cb5 commit 7393559

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/userguide/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The installation user/schema must have the following Oracle system permissions d
2424

2525
In addition it must be granted execute to the following system packages.
2626

27-
- DBMS_PIPE
27+
- DBMS_LOCK
2828

2929
# Installation Procedure
3030

source/create_utplsql_owner.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ create user &ut3_user identified by &ut3_password default tablespace &ut3_tables
1313

1414
grant create session, create sequence, create procedure, create type, create table, create synonym to &ut3_user;
1515

16-
grant execute on dbms_pipe to &ut3_user;
16+
grant execute on dbms_lock to &ut3_user;
1717

1818
grant alter session to &ut3_user;
1919

source/install.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ column error_count noprint new_value error_count
202202
prompt Validating installation
203203
select name, type, sequence, line, position, text, count(1) over() error_count
204204
from all_errors
205-
where owner = '&&ut3_owner'
205+
where owner = upper('&&ut3_owner')
206206
and name not like 'BIN$%' --not recycled
207207
and (name = 'UT' or name like 'UT\_%' escape '\')
208208
-- errors only. ignore warnings

0 commit comments

Comments
 (0)