13 lines
522 B
SQL
Executable File
13 lines
522 B
SQL
Executable File
WHENEVER SQLERROR EXIT SQL.SQLCODE
|
|
|
|
INSERT INTO dds_audit_payments (customer_name, country, payment_amount, card_token, risk_flag)
|
|
VALUES ('Acme Brazil', 'Brazil', 15000, 'tok_live_001', 'HIGH');
|
|
|
|
INSERT INTO dds_audit_payments (customer_name, country, payment_amount, card_token, risk_flag)
|
|
VALUES ('Sun Retail', '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;
|