From c61f954db45406a71cce469fa5343099671e73d3 Mon Sep 17 00:00:00 2001 From: abasharin Date: Fri, 20 Sep 2019 16:00:31 -0400 Subject: [PATCH] Corrected rebuild_annotation_cache parameter --- docs/userguide/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userguide/install.md b/docs/userguide/install.md index 14d532d5d..0cbcd7a6a 100644 --- a/docs/userguide/install.md +++ b/docs/userguide/install.md @@ -141,7 +141,7 @@ sqlplus sys/sys_pass@db as sysdba @install_headless_with_trigger.sql utp3 my_ver **Note:** >When installing utPLSQL into database with existing unit test packages, utPLSQL will not be able to already-existing unit test packages. When utPSLQL was installed with DDL trigger, you have to do one of: >- Recompile existing Unit Test packages to make utPLSQL aware of their existence ->- Invoke `exec ut_runner.rebuild_annotation_cache(a_schema_name=> ... );` for every schema containing unit tests in your database +>- Invoke `exec ut_runner.rebuild_annotation_cache(a_object_owner=> ... );` for every schema containing unit tests in your database > > Steps above are required to assure annotation cache is populated properly from existing objects. Rebuilding annotation cache might be faster than code recompilation.