Initial Oracle Deep Data Security lab kit
This commit is contained in:
16
scenarios/01-ai-prompt-injection/sql/01_seed_data.sql
Normal file
16
scenarios/01-ai-prompt-injection/sql/01_seed_data.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user