Add legacy AI, RAG vector and Data Safe audit scenarios
Some checks failed
Repo Quality / structure (push) Has been cancelled
Some checks failed
Repo Quality / structure (push) Has been cancelled
This commit is contained in:
13
scenarios/07-audit-evidence-data-safe/sql/01_seed_data.sql
Normal file
13
scenarios/07-audit-evidence-data-safe/sql/01_seed_data.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
WHENEVER SQLERROR EXIT SQL.SQLCODE
|
||||
|
||||
INSERT INTO dds_audit_payments (customer_name, country, payment_amount, card_token, risk_flag)
|
||||
VALUES ('Acme Brasil', 'Brazil', 15000, 'tok_live_001', 'HIGH');
|
||||
|
||||
INSERT INTO dds_audit_payments (customer_name, country, payment_amount, card_token, risk_flag)
|
||||
VALUES ('Varejo Sol', 'Brazil', 3500, 'tok_live_002', 'LOW');
|
||||
|
||||
INSERT INTO dds_audit_payments (customer_name, country, payment_amount, card_token, risk_flag)
|
||||
VALUES ('Northwind US', 'USA', 48000, 'tok_live_003', 'HIGH');
|
||||
|
||||
COMMIT;
|
||||
|
||||
Reference in New Issue
Block a user