Solved

Refreshing Security Cache

  • 3 August 2022
  • 3 replies
  • 201 views

Badge +6

Cześć,
Szukam procedury, która odświeży zabezpieczenia z poziomu plsql. Niestety poniższy wpis dodaje lub edytuje wiersz w tabeli cache_management_tab.

BEGIN
    CACHE_MANAGEMENT_API.Refresh_Cache('Security');
END;

 

 

icon

Best answer by maurycy.gawlik 3 August 2022, 11:48

View original

3 replies

Badge +6

Hi,
I am looking for a procedure that will refresh the plsql security. Unfortunately, the following entry adds or edits a row in the cache_management_tab table.

Begin
     CACHE_MANAGEMENT_API.Refresh_Cache ('Security');
END;

Userlevel 7
Badge +19

You can use this: Security_SYS.Refresh_Active_List__(1);

Badge +6

Thank you very much. That was exactly what it was about.

Reply