This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
forked from informix/informix-server-dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
informix_iot_db.sql
81 lines (58 loc) · 1.7 KB
/
informix_iot_db.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
DATABASE SYSADMIN;
DROP DATABASE if exists iot ;
CREATE DATABASE iot with log;
DATABASE iot;
--
-- Cleanup: Drop any existing tables
--
DROP TABLE IF EXISTS iot_data_v;
DROP TABLE IF EXISTS iot_data_ts;
--
-- Cleanup: Drop any existing sequences
--
DROP SEQUENCE IF EXISTS iot_data_seq;
CREATE SEQUENCE iot_data_seq
INCREMENT BY 1 START WITH 1;
--
-- Drop and create the row types which are required for the result
-- time series
--
drop row type if exists one_result_t restrict;
drop row type if exists two_result_t restrict;
create row type one_result_t (
ts datetime year to fraction(5),
value1 FLOAT);
create row type two_result_t (
ts datetime year to fraction(5),
value1 FLOAT,
value2 FLOAT);
--
-- Drop and create the row types for the structured Informix time series
-- based on native Informix data types
--
drop row type if exists iot_data_t restrict;
create row type iot_data_t (
ts datetime year to fraction(5),
reading BSON);
--
-- Destroy and (re-)create the Informix time series containers
--
EXECUTE PROCEDURE TSContainerDestroy('iot_data_cont');
execute procedure TSContainerCreate ( 'iot_data_cont', 'rootdbs', 'iot_data_t', 2048, 2048);
--
-- Create the Informix time series base tables
--
create table iot_data_ts (
id INT8,
desc VARCHAR(128),
readings TIMESERIES(iot_data_t),
PRIMARY KEY (id) )
lock mode row;
--
-- Create the virtual table (relational) views based on the time series
-- base tables. Those views doen't require any storage.
--
execute procedure TSCreateVirtualTab (
'iot_data_v',
'iot_data_ts',
'origin(2017-07-01 00:00:00.00000),calendar(ts_1min),container(iot_data_cont),threshold(0),irregular',0,'readings');