Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8e8f69d

Browse files
Merge branch 'develop' into allow_multi_before_after_procedures
2 parents 76dab88 + c5bc73e commit 8e8f69d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/userguide/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ cd source
7070
sqlplus sys/sys_pass@db as sysdba @install_headless.sql utp3 my_verySecret_password utp3_tablespace
7171
```
7272

73-
The script needs to be executed by SYSDBA, in order to grant access to DBMS_LOCK system package.
73+
The script needs to be executed by `SYSDBA`, in order to grant access to `DBMS_LOCK` and `DBMS_CRYPTO` system packages.
7474

7575

7676
# Recommended Schema
@@ -88,7 +88,7 @@ If the installation and utPLSQL owner user is one and the same, the user must ha
8888
- CREATE SYNONYM
8989
- ALTER SESSION
9090

91-
In addition the user must be granted the execute privilege on `DBMS_LOCK` package.
91+
In addition the user must be granted the execute privilege on `DBMS_LOCK` and `DBMS_CRYPTO` packages.
9292

9393
utPLSQL is using [DBMS_PROFILER tables](https://docs.oracle.com/cd/E18283_01/appdev.112/e16760/d_profil.htm#i999476) for code coverage. The tables required by DBMS_PROFILER will be created in the installation schema unless they already exist.
9494
The uninstall process will **not** drop profiler tables, as they can potentially be shared and reused for profiling PLSQL code.

source/core/ut_utils.pks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ create or replace package ut_utils authid definer is
2121
*
2222
*/
2323

24-
gc_version constant varchar2(50) := 'v3.1.2.1959-develop';
24+
gc_version constant varchar2(50) := 'v3.1.2.1964-develop';
2525

2626
/* Constants: Event names */
2727
subtype t_event_name is varchar2(30);

0 commit comments

Comments
 (0)