Files
oracle-deep-data-security-lab/scenarios/04-view-bypass-mac/sql/04_test_queries.sql
Rodrigo Pace 5cd8752a90
Some checks failed
Repo Quality / structure (push) Has been cancelled
Terraform Validate / validate (push) Has been cancelled
Initial Oracle Deep Data Security lab kit
2026-05-08 12:08:05 -03:00

14 lines
292 B
SQL

SET PAGESIZE 100
SET LINESIZE 200
PROMPT Query base table
SELECT account_id, account_name, owner_name, region, balance
FROM dds_mac_accounts
ORDER BY account_id;
PROMPT Query view
SELECT account_id, account_name, owner_name, region, balance
FROM dds_mac_accounts_view
ORDER BY account_id;