Fix PII lab persona tests
Some checks failed
Repo Quality / structure (push) Has been cancelled

This commit is contained in:
2026-05-18 12:02:13 -03:00
parent 2188ea8e58
commit 07390ff902
6 changed files with 53 additions and 21 deletions

View File

@@ -0,0 +1,17 @@
SET PAGESIZE 100
SET LINESIZE 200
ALTER SESSION SET CURRENT_SCHEMA = ADMIN;
PROMPT Employee self-service update: change own phone number.
UPDATE dds_employees
SET phone = '555-9999'
WHERE UPPER(email) = ORA_END_USER_CONTEXT.username;
COMMIT;
SELECT employee_id, first_name, last_name, email, phone
FROM dds_employees
WHERE UPPER(email) = ORA_END_USER_CONTEXT.username
ORDER BY employee_id;