INSERT INTO PERSON (pID, pStatus) VALUES (1, 4); 
-- Create a generic user, only for debugging purposes, before we identify users!

-----------------------------------------------------------------------------
--- Okay, set up pain doctors, other anaesthetists (examples only, for now)
-- Status of 2 = anaesthetist, 6=pain team anaesthetist, 4=member but not anaesthetist.
-- wE WILL SIMPLY set up 30 generic anaesthetists, each with their own observation PROCESS,
-- and then each with observations of gender, first name, and surname!

INSERT INTO PERSON (pID, pStatus) VALUES (40, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (41, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (42, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (43, 4); 
INSERT INTO PERSON (pID, pStatus) VALUES (44, 4); 
INSERT INTO PERSON (pID, pStatus) VALUES (45, 4); 
INSERT INTO PERSON (pID, pStatus) VALUES (46, 4); 
INSERT INTO PERSON (pID, pStatus) VALUES (47, 2); 
-- INSERT INTO PERSON (pID, pStatus) VALUES (48, 2); 
-- INSERT INTO PERSON (pID, pStatus) VALUES (49, 2); 
-- temporarily put all above '6'es to '2's
 
INSERT INTO PERSON (pID, pStatus) VALUES (50, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (51, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (52, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (53, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (54, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (55, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (56, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (57, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (58, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (59, 2); 

INSERT INTO PERSON (pID, pStatus) VALUES (60, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (61, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (62, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (63, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (64, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (65, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (66, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (67, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (68, 2); 
INSERT INTO PERSON (pID, pStatus) VALUES (69, 2); 

INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (40, 6, 40, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (41, 6, 41, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (42, 6, 42, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (43, 6, 43, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (44, 6, 44, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (45, 6, 45, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (46, 6, 46, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (47, 6, 47, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
-- INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
--              VALUES (48, 6, 48, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
-- INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
--              VALUES (49, 6, 49, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);

INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (50, 6, 50, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (51, 6, 51, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (52, 6, 52, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (53, 6, 53, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (54, 6, 54, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (55, 6, 55, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (56, 6, 56, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (57, 6, 57, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (58, 6, 58, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (59, 6, 59, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);

INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (60, 6, 60, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (61, 6, 61, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (62, 6, 62, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (63, 6, 63, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (64, 6, 64, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (65, 6, 65, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (66, 6, 66, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (67, 6, 67, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (68, 6, 68, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);
INSERT INTO PROCESS (rID, rNature, rPatient, rStart, rCreated, rPlanner)
             VALUES (69, 6, 69, TIMESTAMP '2004-5-2 00:00:00', TIMESTAMP '2004-5-2 00:00:00', 1);

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (40, TIMESTAMP '2004-5-2 00:00:00', 1, 40, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (41, TIMESTAMP '2004-5-2 00:00:00', 1, 41, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (42, TIMESTAMP '2004-5-2 00:00:00', 1, 42, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (43, TIMESTAMP '2004-5-2 00:00:00', 1, 43, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (44, TIMESTAMP '2004-5-2 00:00:00', 1, 44, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (45, TIMESTAMP '2004-5-2 00:00:00', 1, 45, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (46, TIMESTAMP '2004-5-2 00:00:00', 1, 46, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (47, TIMESTAMP '2004-5-2 00:00:00', 1, 47, 1, 'M');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (48, TIMESTAMP '2004-5-2 00:00:00', 1, 48, 1, 'F');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (49, TIMESTAMP '2004-5-2 00:00:00', 1, 49, 1, 'F');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (50, TIMESTAMP '2004-5-2 00:00:00', 1, 50, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (51, TIMESTAMP '2004-5-2 00:00:00', 1, 51, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (52, TIMESTAMP '2004-5-2 00:00:00', 1, 52, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (53, TIMESTAMP '2004-5-2 00:00:00', 1, 53, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (54, TIMESTAMP '2004-5-2 00:00:00', 1, 54, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (55, TIMESTAMP '2004-5-2 00:00:00', 1, 55, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (56, TIMESTAMP '2004-5-2 00:00:00', 1, 56, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (57, TIMESTAMP '2004-5-2 00:00:00', 1, 57, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (58, TIMESTAMP '2004-5-2 00:00:00', 1, 58, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (59, TIMESTAMP '2004-5-2 00:00:00', 1, 59, 1, 'M');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (60, TIMESTAMP '2004-5-2 00:00:00', 1, 60, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (61, TIMESTAMP '2004-5-2 00:00:00', 1, 61, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (62, TIMESTAMP '2004-5-2 00:00:00', 1, 62, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (63, TIMESTAMP '2004-5-2 00:00:00', 1, 63, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (64, TIMESTAMP '2004-5-2 00:00:00', 1, 64, 1, 'F');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (65, TIMESTAMP '2004-5-2 00:00:00', 1, 65, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (66, TIMESTAMP '2004-5-2 00:00:00', 1, 66, 1, 'M');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (67, TIMESTAMP '2004-5-2 00:00:00', 1, 67, 1, 'M');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (68, TIMESTAMP '2004-5-2 00:00:00', 1, 68, 1, 'F');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (69, TIMESTAMP '2004-5-2 00:00:00', 1, 69, 1, 'F');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (140, TIMESTAMP '2004-5-2 00:00:00', 1, 40, 2, 'Aaa');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (141, TIMESTAMP '2004-5-2 00:00:00', 1, 41, 2, 'Bbb');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (142, TIMESTAMP '2004-5-2 00:00:00', 1, 42, 2, 'Ccc');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (143, TIMESTAMP '2004-5-2 00:00:00', 1, 43, 2, 'Ddd');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (144, TIMESTAMP '2004-5-2 00:00:00', 1, 44, 2, 'Eee');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (145, TIMESTAMP '2004-5-2 00:00:00', 1, 45, 2, 'Fff');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (146, TIMESTAMP '2004-5-2 00:00:00', 1, 46, 2, 'Ggg');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (147, TIMESTAMP '2004-5-2 00:00:00', 1, 47, 2, 'Hhh');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (148, TIMESTAMP '2004-5-2 00:00:00', 1, 48, 2, '');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (149, TIMESTAMP '2004-5-2 00:00:00', 1, 49, 2, '');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (150, TIMESTAMP '2004-5-2 00:00:00', 1, 50, 2, 'Iiii');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (151, TIMESTAMP '2004-5-2 00:00:00', 1, 51, 2, 'Jjj');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (152, TIMESTAMP '2004-5-2 00:00:00', 1, 52, 2, 'Kkk');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (153, TIMESTAMP '2004-5-2 00:00:00', 1, 53, 2, 'Lll');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (154, TIMESTAMP '2004-5-2 00:00:00', 1, 54, 2, 'Mmm');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (155, TIMESTAMP '2004-5-2 00:00:00', 1, 55, 2, 'Nnn');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (156, TIMESTAMP '2004-5-2 00:00:00', 1, 56, 2, 'Ooo');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (157, TIMESTAMP '2004-5-2 00:00:00', 1, 57, 2, 'Ppp');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (158, TIMESTAMP '2004-5-2 00:00:00', 1, 58, 2, 'Qqq');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (159, TIMESTAMP '2004-5-2 00:00:00', 1, 59, 2, 'Rrr');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (160, TIMESTAMP '2004-5-2 00:00:00', 1, 60, 2, 'Sss');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (161, TIMESTAMP '2004-5-2 00:00:00', 1, 61, 2, 'Ttt');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (162, TIMESTAMP '2004-5-2 00:00:00', 1, 62, 2, 'Uuu');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (163, TIMESTAMP '2004-5-2 00:00:00', 1, 63, 2, 'Vvv');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (164, TIMESTAMP '2004-5-2 00:00:00', 1, 64, 2, 'Www');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (165, TIMESTAMP '2004-5-2 00:00:00', 1, 65, 2, 'Xxx');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (166, TIMESTAMP '2004-5-2 00:00:00', 1, 66, 2, 'Yyy');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (167, TIMESTAMP '2004-5-2 00:00:00', 1, 67, 2, 'Zzz');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (168, TIMESTAMP '2004-5-2 00:00:00', 1, 68, 2, 'Baa');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (169, TIMESTAMP '2004-5-2 00:00:00', 1, 69, 2, 'Bcc');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (240, TIMESTAMP '2004-5-2 00:00:00', 1, 40, 3, 'Xaa');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (241, TIMESTAMP '2004-5-2 00:00:00', 1, 41, 3, 'Xbb');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (242, TIMESTAMP '2004-5-2 00:00:00', 1, 42, 3, 'Xcc');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (243, TIMESTAMP '2004-5-2 00:00:00', 1, 43, 3, 'Xdd');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (244, TIMESTAMP '2004-5-2 00:00:00', 1, 44, 3, 'Xee');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (245, TIMESTAMP '2004-5-2 00:00:00', 1, 45, 3, 'Xff');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (246, TIMESTAMP '2004-5-2 00:00:00', 1, 46, 3, 'Xgg');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (247, TIMESTAMP '2004-5-2 00:00:00', 1, 47, 3, 'Xhh');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (248, TIMESTAMP '2004-5-2 00:00:00', 1, 48, 3, '');
-- INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
--        VALUES (249, TIMESTAMP '2004-5-2 00:00:00', 1, 49, 3, '');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (250, TIMESTAMP '2004-5-2 00:00:00', 1, 50, 3, 'Xii');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (251, TIMESTAMP '2004-5-2 00:00:00', 1, 51, 3, 'Xjj');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (252, TIMESTAMP '2004-5-2 00:00:00', 1, 52, 3, 'Xkk');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (253, TIMESTAMP '2004-5-2 00:00:00', 1, 53, 3, 'Xll');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (254, TIMESTAMP '2004-5-2 00:00:00', 1, 54, 3, 'Xmm');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (255, TIMESTAMP '2004-5-2 00:00:00', 1, 55, 3, 'Xnn');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (256, TIMESTAMP '2004-5-2 00:00:00', 1, 56, 3, 'Xoo');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (257, TIMESTAMP '2004-5-2 00:00:00', 1, 57, 3, 'Xpp');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (258, TIMESTAMP '2004-5-2 00:00:00', 1, 58, 3, 'Xqq');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (259, TIMESTAMP '2004-5-2 00:00:00', 1, 59, 3, 'Xrr');

INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (260, TIMESTAMP '2004-5-2 00:00:00', 1, 60, 3, 'Xss');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (261, TIMESTAMP '2004-5-2 00:00:00', 1, 61, 3, 'Xtt');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (262, TIMESTAMP '2004-5-2 00:00:00', 1, 62, 3, 'Xuu');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (263, TIMESTAMP '2004-5-2 00:00:00', 1, 63, 3, 'Xvv');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (264, TIMESTAMP '2004-5-2 00:00:00', 1, 64, 3, 'Xww');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (265, TIMESTAMP '2004-5-2 00:00:00', 1, 65, 3, 'Xyy');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (266, TIMESTAMP '2004-5-2 00:00:00', 1, 66, 3, 'Xzz');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (267, TIMESTAMP '2004-5-2 00:00:00', 1, 67, 3, 'Yaa');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (268, TIMESTAMP '2004-5-2 00:00:00', 1, 68, 3, 'Ybb');
INSERT INTO OBS (oID, oMade, oObserver, oProcess, oWhat,  oParam)
       VALUES (269, TIMESTAMP '2004-5-2 00:00:00', 1, 69, 3, 'Ycc');
*
----------------------------------------------------------------------------------------
