Files
oracle-deep-data-security-lab/scenarios/03-pii-row-column-cell/sql/04_test_queries.sql
Rodrigo 07390ff902
Some checks failed
Repo Quality / structure (push) Has been cancelled
Fix PII lab persona tests
2026-05-18 12:02:13 -03:00

9 lines
197 B
SQL
Executable File

SET PAGESIZE 100
SET LINESIZE 200
ALTER SESSION SET CURRENT_SCHEMA = ADMIN;
SELECT employee_id, first_name, last_name, email, manager, ssn, salary, phone
FROM dds_employees
ORDER BY employee_id;