2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
-- -----------------------------------------------------------------------------------
-- File Name : https://oracle-base.com/dba/12c/priv_captures.sql
-- Author : Tim Hall
-- Description : Displays privilege capture policies.
-- Requirements : Access to the DBA views.
-- Call Syntax : @priv_captures.sql
-- Last Modified: 22-APR-2014
-- -----------------------------------------------------------------------------------
COLUMN name FORMAT A15
COLUMN description FORMAT A30
COLUMN roles FORMAT A20
COLUMN context FORMAT A30
SET LINESIZE 200
SELECT name,
description,
type,
enabled,
roles,
context
FROM dba_priv_captures
ORDER BY name;