Files
oracle-deep-data-security-lab/scenarios/01-ai-prompt-injection/sql/01_seed_data.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

17 lines
761 B
SQL

WHENEVER SQLERROR EXIT SQL.SQLCODE
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
VALUES ('Acme Brasil', 'LATAM', 'alice', 'HIGH', 'BR-111-222', 1250000);
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
VALUES ('Andes Retail', 'LATAM', 'alice', 'MEDIUM', 'CL-333-444', 820000);
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
VALUES ('Northwind US', 'NA', 'natalie', 'HIGH', 'US-555-666', 2200000);
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
VALUES ('Euro Health', 'EMEA', 'erik', 'HIGH', 'DE-777-888', 3100000);
COMMIT;