Project

Profile

Help

Maintenance: Planio will be observing a scheduled maintenance window this Sunday, November 10, 2024 from 20:00 UTC until 21:00 UTC to perform important network maintenance in our primary data center. Your Planio account will be unavailable for a few minutes during this maintenance window.

Bug #5747 » SQL_TEST.SQL

DB table for testing - Herbert Brückner, 2022-11-27 13:39

 
CREATE TABLE SQL_TEST
(
KEY VARCHAR2(50 BYTE),
VALUE VARCHAR2(50 BYTE)
);

SET DEFINE OFF;
Insert into DATASTORE.SQL_TEST
(KEY, VALUE)
Values
('key 1', 'now wanted');
Insert into DATASTORE.SQL_TEST
(KEY, VALUE)
Values
('key 2', 'now wanted');
COMMIT;
(2-2/3)