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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381
|
CREATE TABLE role (
roleid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
type number(10) DEFAULT '0' NOT NULL,
readonly number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (roleid)
);
CREATE UNIQUE INDEX role_1 ON role (name);
CREATE TABLE users (
userid number(20) NOT NULL,
username nvarchar2(100) DEFAULT '' ,
name nvarchar2(100) DEFAULT '' ,
surname nvarchar2(100) DEFAULT '' ,
passwd nvarchar2(60) DEFAULT '' ,
url nvarchar2(2048) DEFAULT '' ,
autologin number(10) DEFAULT '0' NOT NULL,
autologout nvarchar2(32) DEFAULT '15m' ,
lang nvarchar2(7) DEFAULT 'default' ,
refresh nvarchar2(32) DEFAULT '30s' ,
theme nvarchar2(128) DEFAULT 'default' ,
attempt_failed number(10) DEFAULT 0 NOT NULL,
attempt_ip nvarchar2(39) DEFAULT '' ,
attempt_clock number(10) DEFAULT 0 NOT NULL,
rows_per_page number(10) DEFAULT 50 NOT NULL,
timezone nvarchar2(50) DEFAULT 'default' ,
roleid number(20) NOT NULL,
PRIMARY KEY (userid)
);
CREATE UNIQUE INDEX users_1 ON users (username);
CREATE TABLE maintenances (
maintenanceid number(20) NOT NULL,
name nvarchar2(128) DEFAULT '' ,
maintenance_type number(10) DEFAULT '0' NOT NULL,
description nvarchar2(2048) DEFAULT '' ,
active_since number(10) DEFAULT '0' NOT NULL,
active_till number(10) DEFAULT '0' NOT NULL,
tags_evaltype number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (maintenanceid)
);
CREATE INDEX maintenances_1 ON maintenances (active_since,active_till);
CREATE UNIQUE INDEX maintenances_2 ON maintenances (name);
CREATE TABLE hosts (
hostid number(20) NOT NULL,
proxy_hostid number(20) NULL,
host nvarchar2(128) DEFAULT '' ,
status number(10) DEFAULT '0' NOT NULL,
lastaccess number(10) DEFAULT '0' NOT NULL,
ipmi_authtype number(10) DEFAULT '-1' NOT NULL,
ipmi_privilege number(10) DEFAULT '2' NOT NULL,
ipmi_username nvarchar2(16) DEFAULT '' ,
ipmi_password nvarchar2(20) DEFAULT '' ,
maintenanceid number(20) NULL,
maintenance_status number(10) DEFAULT '0' NOT NULL,
maintenance_type number(10) DEFAULT '0' NOT NULL,
maintenance_from number(10) DEFAULT '0' NOT NULL,
name nvarchar2(128) DEFAULT '' ,
flags number(10) DEFAULT '0' NOT NULL,
templateid number(20) NULL,
description nvarchar2(2048) DEFAULT '' ,
tls_connect number(10) DEFAULT '1' NOT NULL,
tls_accept number(10) DEFAULT '1' NOT NULL,
tls_issuer nvarchar2(1024) DEFAULT '' ,
tls_subject nvarchar2(1024) DEFAULT '' ,
tls_psk_identity nvarchar2(128) DEFAULT '' ,
tls_psk nvarchar2(512) DEFAULT '' ,
proxy_address nvarchar2(255) DEFAULT '' ,
auto_compress number(10) DEFAULT '1' NOT NULL,
discover number(10) DEFAULT '0' NOT NULL,
custom_interfaces number(10) DEFAULT '0' NOT NULL,
uuid nvarchar2(32) DEFAULT '' ,
name_upper nvarchar2(128) DEFAULT '' ,
PRIMARY KEY (hostid)
);
CREATE INDEX hosts_1 ON hosts (host);
CREATE INDEX hosts_2 ON hosts (status);
CREATE INDEX hosts_3 ON hosts (proxy_hostid);
CREATE INDEX hosts_4 ON hosts (name);
CREATE INDEX hosts_5 ON hosts (maintenanceid);
CREATE INDEX hosts_6 ON hosts (name_upper);
CREATE TABLE hstgrp (
groupid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
internal number(10) DEFAULT '0' NOT NULL,
flags number(10) DEFAULT '0' NOT NULL,
uuid nvarchar2(32) DEFAULT '' ,
PRIMARY KEY (groupid)
);
CREATE INDEX hstgrp_1 ON hstgrp (name);
CREATE TABLE group_prototype (
group_prototypeid number(20) NOT NULL,
hostid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
groupid number(20) NULL,
templateid number(20) NULL,
PRIMARY KEY (group_prototypeid)
);
CREATE INDEX group_prototype_1 ON group_prototype (hostid);
CREATE TABLE group_discovery (
groupid number(20) NOT NULL,
parent_group_prototypeid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
lastcheck number(10) DEFAULT '0' NOT NULL,
ts_delete number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (groupid)
);
CREATE TABLE drules (
druleid number(20) NOT NULL,
proxy_hostid number(20) NULL,
name nvarchar2(255) DEFAULT '' ,
iprange nvarchar2(2048) DEFAULT '' ,
delay nvarchar2(255) DEFAULT '1h' ,
nextcheck number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (druleid)
);
CREATE INDEX drules_1 ON drules (proxy_hostid);
CREATE UNIQUE INDEX drules_2 ON drules (name);
CREATE TABLE dchecks (
dcheckid number(20) NOT NULL,
druleid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
key_ nvarchar2(2048) DEFAULT '' ,
snmp_community nvarchar2(255) DEFAULT '' ,
ports nvarchar2(255) DEFAULT '0' ,
snmpv3_securityname nvarchar2(64) DEFAULT '' ,
snmpv3_securitylevel number(10) DEFAULT '0' NOT NULL,
snmpv3_authpassphrase nvarchar2(64) DEFAULT '' ,
snmpv3_privpassphrase nvarchar2(64) DEFAULT '' ,
uniq number(10) DEFAULT '0' NOT NULL,
snmpv3_authprotocol number(10) DEFAULT '0' NOT NULL,
snmpv3_privprotocol number(10) DEFAULT '0' NOT NULL,
snmpv3_contextname nvarchar2(255) DEFAULT '' ,
host_source number(10) DEFAULT '1' NOT NULL,
name_source number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (dcheckid)
);
CREATE INDEX dchecks_1 ON dchecks (druleid,host_source,name_source);
CREATE TABLE httptest (
httptestid number(20) NOT NULL,
name nvarchar2(64) DEFAULT '' ,
nextcheck number(10) DEFAULT '0' NOT NULL,
delay nvarchar2(255) DEFAULT '1m' ,
status number(10) DEFAULT '0' NOT NULL,
agent nvarchar2(255) DEFAULT 'Zabbix' ,
authentication number(10) DEFAULT '0' NOT NULL,
http_user nvarchar2(64) DEFAULT '' ,
http_password nvarchar2(64) DEFAULT '' ,
hostid number(20) NOT NULL,
templateid number(20) NULL,
http_proxy nvarchar2(255) DEFAULT '' ,
retries number(10) DEFAULT '1' NOT NULL,
ssl_cert_file nvarchar2(255) DEFAULT '' ,
ssl_key_file nvarchar2(255) DEFAULT '' ,
ssl_key_password nvarchar2(64) DEFAULT '' ,
verify_peer number(10) DEFAULT '0' NOT NULL,
verify_host number(10) DEFAULT '0' NOT NULL,
uuid nvarchar2(32) DEFAULT '' ,
PRIMARY KEY (httptestid)
);
CREATE UNIQUE INDEX httptest_2 ON httptest (hostid,name);
CREATE INDEX httptest_3 ON httptest (status);
CREATE INDEX httptest_4 ON httptest (templateid);
CREATE TABLE httpstep (
httpstepid number(20) NOT NULL,
httptestid number(20) NOT NULL,
name nvarchar2(64) DEFAULT '' ,
no number(10) DEFAULT '0' NOT NULL,
url nvarchar2(2048) DEFAULT '' ,
timeout nvarchar2(255) DEFAULT '15s' ,
posts nvarchar2(2048) DEFAULT '' ,
required nvarchar2(255) DEFAULT '' ,
status_codes nvarchar2(255) DEFAULT '' ,
follow_redirects number(10) DEFAULT '1' NOT NULL,
retrieve_mode number(10) DEFAULT '0' NOT NULL,
post_type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (httpstepid)
);
CREATE INDEX httpstep_1 ON httpstep (httptestid);
CREATE TABLE interface (
interfaceid number(20) NOT NULL,
hostid number(20) NOT NULL,
main number(10) DEFAULT '0' NOT NULL,
type number(10) DEFAULT '1' NOT NULL,
useip number(10) DEFAULT '1' NOT NULL,
ip nvarchar2(64) DEFAULT '127.0.0.1' ,
dns nvarchar2(255) DEFAULT '' ,
port nvarchar2(64) DEFAULT '10050' ,
available number(10) DEFAULT '0' NOT NULL,
error nvarchar2(2048) DEFAULT '' ,
errors_from number(10) DEFAULT '0' NOT NULL,
disable_until number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (interfaceid)
);
CREATE INDEX interface_1 ON interface (hostid,type);
CREATE INDEX interface_2 ON interface (ip,dns);
CREATE INDEX interface_3 ON interface (available);
CREATE TABLE valuemap (
valuemapid number(20) NOT NULL,
hostid number(20) NOT NULL,
name nvarchar2(64) DEFAULT '' ,
uuid nvarchar2(32) DEFAULT '' ,
PRIMARY KEY (valuemapid)
);
CREATE UNIQUE INDEX valuemap_1 ON valuemap (hostid,name);
CREATE TABLE items (
itemid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
snmp_oid nvarchar2(512) DEFAULT '' ,
hostid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
key_ nvarchar2(2048) DEFAULT '' ,
delay nvarchar2(1024) DEFAULT '0' ,
history nvarchar2(255) DEFAULT '90d' ,
trends nvarchar2(255) DEFAULT '365d' ,
status number(10) DEFAULT '0' NOT NULL,
value_type number(10) DEFAULT '0' NOT NULL,
trapper_hosts nvarchar2(255) DEFAULT '' ,
units nvarchar2(255) DEFAULT '' ,
formula nvarchar2(255) DEFAULT '' ,
logtimefmt nvarchar2(64) DEFAULT '' ,
templateid number(20) NULL,
valuemapid number(20) NULL,
params nclob DEFAULT '' ,
ipmi_sensor nvarchar2(128) DEFAULT '' ,
authtype number(10) DEFAULT '0' NOT NULL,
username nvarchar2(64) DEFAULT '' ,
password nvarchar2(64) DEFAULT '' ,
publickey nvarchar2(64) DEFAULT '' ,
privatekey nvarchar2(64) DEFAULT '' ,
flags number(10) DEFAULT '0' NOT NULL,
interfaceid number(20) NULL,
description nclob DEFAULT '' ,
inventory_link number(10) DEFAULT '0' NOT NULL,
lifetime nvarchar2(255) DEFAULT '30d' ,
evaltype number(10) DEFAULT '0' NOT NULL,
jmx_endpoint nvarchar2(255) DEFAULT '' ,
master_itemid number(20) NULL,
timeout nvarchar2(255) DEFAULT '3s' ,
url nvarchar2(2048) DEFAULT '' ,
query_fields nvarchar2(2048) DEFAULT '' ,
posts nclob DEFAULT '' ,
status_codes nvarchar2(255) DEFAULT '200' ,
follow_redirects number(10) DEFAULT '1' NOT NULL,
post_type number(10) DEFAULT '0' NOT NULL,
http_proxy nvarchar2(255) DEFAULT '' ,
headers nclob DEFAULT '' ,
retrieve_mode number(10) DEFAULT '0' NOT NULL,
request_method number(10) DEFAULT '0' NOT NULL,
output_format number(10) DEFAULT '0' NOT NULL,
ssl_cert_file nvarchar2(255) DEFAULT '' ,
ssl_key_file nvarchar2(255) DEFAULT '' ,
ssl_key_password nvarchar2(64) DEFAULT '' ,
verify_peer number(10) DEFAULT '0' NOT NULL,
verify_host number(10) DEFAULT '0' NOT NULL,
allow_traps number(10) DEFAULT '0' NOT NULL,
discover number(10) DEFAULT '0' NOT NULL,
uuid nvarchar2(32) DEFAULT '' ,
name_upper nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (itemid)
);
CREATE INDEX items_1 ON items (hostid,key_);
CREATE INDEX items_3 ON items (status);
CREATE INDEX items_4 ON items (templateid);
CREATE INDEX items_5 ON items (valuemapid);
CREATE INDEX items_6 ON items (interfaceid);
CREATE INDEX items_7 ON items (master_itemid);
CREATE INDEX items_8 ON items (key_);
CREATE INDEX items_9 ON items (hostid,name_upper);
CREATE TABLE httpstepitem (
httpstepitemid number(20) NOT NULL,
httpstepid number(20) NOT NULL,
itemid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (httpstepitemid)
);
CREATE UNIQUE INDEX httpstepitem_1 ON httpstepitem (httpstepid,itemid);
CREATE INDEX httpstepitem_2 ON httpstepitem (itemid);
CREATE TABLE httptestitem (
httptestitemid number(20) NOT NULL,
httptestid number(20) NOT NULL,
itemid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (httptestitemid)
);
CREATE UNIQUE INDEX httptestitem_1 ON httptestitem (httptestid,itemid);
CREATE INDEX httptestitem_2 ON httptestitem (itemid);
CREATE TABLE media_type (
mediatypeid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
name nvarchar2(100) DEFAULT '' ,
smtp_server nvarchar2(255) DEFAULT '' ,
smtp_helo nvarchar2(255) DEFAULT '' ,
smtp_email nvarchar2(255) DEFAULT '' ,
exec_path nvarchar2(255) DEFAULT '' ,
gsm_modem nvarchar2(255) DEFAULT '' ,
username nvarchar2(255) DEFAULT '' ,
passwd nvarchar2(255) DEFAULT '' ,
status number(10) DEFAULT '0' NOT NULL,
smtp_port number(10) DEFAULT '25' NOT NULL,
smtp_security number(10) DEFAULT '0' NOT NULL,
smtp_verify_peer number(10) DEFAULT '0' NOT NULL,
smtp_verify_host number(10) DEFAULT '0' NOT NULL,
smtp_authentication number(10) DEFAULT '0' NOT NULL,
exec_params nvarchar2(255) DEFAULT '' ,
maxsessions number(10) DEFAULT '1' NOT NULL,
maxattempts number(10) DEFAULT '3' NOT NULL,
attempt_interval nvarchar2(32) DEFAULT '10s' ,
content_type number(10) DEFAULT '1' NOT NULL,
script nclob DEFAULT '' ,
timeout nvarchar2(32) DEFAULT '30s' ,
process_tags number(10) DEFAULT '0' NOT NULL,
show_event_menu number(10) DEFAULT '0' NOT NULL,
event_menu_url nvarchar2(2048) DEFAULT '' ,
event_menu_name nvarchar2(255) DEFAULT '' ,
description nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (mediatypeid)
);
CREATE UNIQUE INDEX media_type_1 ON media_type (name);
CREATE TABLE media_type_param (
mediatype_paramid number(20) NOT NULL,
mediatypeid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (mediatype_paramid)
);
CREATE INDEX media_type_param_1 ON media_type_param (mediatypeid);
CREATE TABLE media_type_message (
mediatype_messageid number(20) NOT NULL,
mediatypeid number(20) NOT NULL,
eventsource number(10) NOT NULL,
recovery number(10) NOT NULL,
subject nvarchar2(255) DEFAULT '' ,
message nclob DEFAULT '' ,
PRIMARY KEY (mediatype_messageid)
);
CREATE UNIQUE INDEX media_type_message_1 ON media_type_message (mediatypeid,eventsource,recovery);
CREATE TABLE usrgrp (
usrgrpid number(20) NOT NULL,
name nvarchar2(64) DEFAULT '' ,
gui_access number(10) DEFAULT '0' NOT NULL,
users_status number(10) DEFAULT '0' NOT NULL,
debug_mode number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (usrgrpid)
);
CREATE UNIQUE INDEX usrgrp_1 ON usrgrp (name);
CREATE TABLE users_groups (
id number(20) NOT NULL,
usrgrpid number(20) NOT NULL,
userid number(20) NOT NULL,
PRIMARY KEY (id)
);
CREATE UNIQUE INDEX users_groups_1 ON users_groups (usrgrpid,userid);
CREATE INDEX users_groups_2 ON users_groups (userid);
CREATE TABLE scripts (
scriptid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
command nclob DEFAULT '' ,
host_access number(10) DEFAULT '2' NOT NULL,
usrgrpid number(20) NULL,
groupid number(20) NULL,
description nvarchar2(2048) DEFAULT '' ,
confirmation nvarchar2(255) DEFAULT '' ,
type number(10) DEFAULT '5' NOT NULL,
execute_on number(10) DEFAULT '2' NOT NULL,
timeout nvarchar2(32) DEFAULT '30s' ,
scope number(10) DEFAULT '1' NOT NULL,
port nvarchar2(64) DEFAULT '' ,
authtype number(10) DEFAULT '0' NOT NULL,
username nvarchar2(64) DEFAULT '' ,
password nvarchar2(64) DEFAULT '' ,
publickey nvarchar2(64) DEFAULT '' ,
privatekey nvarchar2(64) DEFAULT '' ,
menu_path nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (scriptid)
);
CREATE INDEX scripts_1 ON scripts (usrgrpid);
CREATE INDEX scripts_2 ON scripts (groupid);
CREATE UNIQUE INDEX scripts_3 ON scripts (name);
CREATE TABLE script_param (
script_paramid number(20) NOT NULL,
scriptid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (script_paramid)
);
CREATE UNIQUE INDEX script_param_1 ON script_param (scriptid,name);
CREATE TABLE actions (
actionid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
eventsource number(10) DEFAULT '0' NOT NULL,
evaltype number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
esc_period nvarchar2(255) DEFAULT '1h' ,
formula nvarchar2(1024) DEFAULT '' ,
pause_suppressed number(10) DEFAULT '1' NOT NULL,
notify_if_canceled number(10) DEFAULT '1' NOT NULL,
PRIMARY KEY (actionid)
);
CREATE INDEX actions_1 ON actions (eventsource,status);
CREATE UNIQUE INDEX actions_2 ON actions (name);
CREATE TABLE operations (
operationid number(20) NOT NULL,
actionid number(20) NOT NULL,
operationtype number(10) DEFAULT '0' NOT NULL,
esc_period nvarchar2(255) DEFAULT '0' ,
esc_step_from number(10) DEFAULT '1' NOT NULL,
esc_step_to number(10) DEFAULT '1' NOT NULL,
evaltype number(10) DEFAULT '0' NOT NULL,
recovery number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (operationid)
);
CREATE INDEX operations_1 ON operations (actionid);
CREATE TABLE opmessage (
operationid number(20) NOT NULL,
default_msg number(10) DEFAULT '1' NOT NULL,
subject nvarchar2(255) DEFAULT '' ,
message nvarchar2(2048) DEFAULT '' ,
mediatypeid number(20) NULL,
PRIMARY KEY (operationid)
);
CREATE INDEX opmessage_1 ON opmessage (mediatypeid);
CREATE TABLE opmessage_grp (
opmessage_grpid number(20) NOT NULL,
operationid number(20) NOT NULL,
usrgrpid number(20) NOT NULL,
PRIMARY KEY (opmessage_grpid)
);
CREATE UNIQUE INDEX opmessage_grp_1 ON opmessage_grp (operationid,usrgrpid);
CREATE INDEX opmessage_grp_2 ON opmessage_grp (usrgrpid);
CREATE TABLE opmessage_usr (
opmessage_usrid number(20) NOT NULL,
operationid number(20) NOT NULL,
userid number(20) NOT NULL,
PRIMARY KEY (opmessage_usrid)
);
CREATE UNIQUE INDEX opmessage_usr_1 ON opmessage_usr (operationid,userid);
CREATE INDEX opmessage_usr_2 ON opmessage_usr (userid);
CREATE TABLE opcommand (
operationid number(20) NOT NULL,
scriptid number(20) NOT NULL,
PRIMARY KEY (operationid)
);
CREATE INDEX opcommand_1 ON opcommand (scriptid);
CREATE TABLE opcommand_hst (
opcommand_hstid number(20) NOT NULL,
operationid number(20) NOT NULL,
hostid number(20) NULL,
PRIMARY KEY (opcommand_hstid)
);
CREATE INDEX opcommand_hst_1 ON opcommand_hst (operationid);
CREATE INDEX opcommand_hst_2 ON opcommand_hst (hostid);
CREATE TABLE opcommand_grp (
opcommand_grpid number(20) NOT NULL,
operationid number(20) NOT NULL,
groupid number(20) NOT NULL,
PRIMARY KEY (opcommand_grpid)
);
CREATE INDEX opcommand_grp_1 ON opcommand_grp (operationid);
CREATE INDEX opcommand_grp_2 ON opcommand_grp (groupid);
CREATE TABLE opgroup (
opgroupid number(20) NOT NULL,
operationid number(20) NOT NULL,
groupid number(20) NOT NULL,
PRIMARY KEY (opgroupid)
);
CREATE UNIQUE INDEX opgroup_1 ON opgroup (operationid,groupid);
CREATE INDEX opgroup_2 ON opgroup (groupid);
CREATE TABLE optemplate (
optemplateid number(20) NOT NULL,
operationid number(20) NOT NULL,
templateid number(20) NOT NULL,
PRIMARY KEY (optemplateid)
);
CREATE UNIQUE INDEX optemplate_1 ON optemplate (operationid,templateid);
CREATE INDEX optemplate_2 ON optemplate (templateid);
CREATE TABLE opconditions (
opconditionid number(20) NOT NULL,
operationid number(20) NOT NULL,
conditiontype number(10) DEFAULT '0' NOT NULL,
operator number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (opconditionid)
);
CREATE INDEX opconditions_1 ON opconditions (operationid);
CREATE TABLE conditions (
conditionid number(20) NOT NULL,
actionid number(20) NOT NULL,
conditiontype number(10) DEFAULT '0' NOT NULL,
operator number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
value2 nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (conditionid)
);
CREATE INDEX conditions_1 ON conditions (actionid);
CREATE TABLE config (
configid number(20) NOT NULL,
work_period nvarchar2(255) DEFAULT '1-5,09:00-18:00' ,
alert_usrgrpid number(20) NULL,
default_theme nvarchar2(128) DEFAULT 'blue-theme' ,
authentication_type number(10) DEFAULT '0' NOT NULL,
ldap_host nvarchar2(255) DEFAULT '' ,
ldap_port number(10) DEFAULT 389 NOT NULL,
ldap_base_dn nvarchar2(255) DEFAULT '' ,
ldap_bind_dn nvarchar2(255) DEFAULT '' ,
ldap_bind_password nvarchar2(128) DEFAULT '' ,
ldap_search_attribute nvarchar2(128) DEFAULT '' ,
discovery_groupid number(20) NOT NULL,
max_in_table number(10) DEFAULT '50' NOT NULL,
search_limit number(10) DEFAULT '1000' NOT NULL,
severity_color_0 nvarchar2(6) DEFAULT '97AAB3' ,
severity_color_1 nvarchar2(6) DEFAULT '7499FF' ,
severity_color_2 nvarchar2(6) DEFAULT 'FFC859' ,
severity_color_3 nvarchar2(6) DEFAULT 'FFA059' ,
severity_color_4 nvarchar2(6) DEFAULT 'E97659' ,
severity_color_5 nvarchar2(6) DEFAULT 'E45959' ,
severity_name_0 nvarchar2(32) DEFAULT 'Not classified' ,
severity_name_1 nvarchar2(32) DEFAULT 'Information' ,
severity_name_2 nvarchar2(32) DEFAULT 'Warning' ,
severity_name_3 nvarchar2(32) DEFAULT 'Average' ,
severity_name_4 nvarchar2(32) DEFAULT 'High' ,
severity_name_5 nvarchar2(32) DEFAULT 'Disaster' ,
ok_period nvarchar2(32) DEFAULT '5m' ,
blink_period nvarchar2(32) DEFAULT '2m' ,
problem_unack_color nvarchar2(6) DEFAULT 'CC0000' ,
problem_ack_color nvarchar2(6) DEFAULT 'CC0000' ,
ok_unack_color nvarchar2(6) DEFAULT '009900' ,
ok_ack_color nvarchar2(6) DEFAULT '009900' ,
problem_unack_style number(10) DEFAULT '1' NOT NULL,
problem_ack_style number(10) DEFAULT '1' NOT NULL,
ok_unack_style number(10) DEFAULT '1' NOT NULL,
ok_ack_style number(10) DEFAULT '1' NOT NULL,
snmptrap_logging number(10) DEFAULT '1' NOT NULL,
server_check_interval number(10) DEFAULT '10' NOT NULL,
hk_events_mode number(10) DEFAULT '1' NOT NULL,
hk_events_trigger nvarchar2(32) DEFAULT '365d' ,
hk_events_internal nvarchar2(32) DEFAULT '1d' ,
hk_events_discovery nvarchar2(32) DEFAULT '1d' ,
hk_events_autoreg nvarchar2(32) DEFAULT '1d' ,
hk_services_mode number(10) DEFAULT '1' NOT NULL,
hk_services nvarchar2(32) DEFAULT '365d' ,
hk_audit_mode number(10) DEFAULT '1' NOT NULL,
hk_audit nvarchar2(32) DEFAULT '365d' ,
hk_sessions_mode number(10) DEFAULT '1' NOT NULL,
hk_sessions nvarchar2(32) DEFAULT '365d' ,
hk_history_mode number(10) DEFAULT '1' NOT NULL,
hk_history_global number(10) DEFAULT '0' NOT NULL,
hk_history nvarchar2(32) DEFAULT '90d' ,
hk_trends_mode number(10) DEFAULT '1' NOT NULL,
hk_trends_global number(10) DEFAULT '0' NOT NULL,
hk_trends nvarchar2(32) DEFAULT '365d' ,
default_inventory_mode number(10) DEFAULT '-1' NOT NULL,
custom_color number(10) DEFAULT '0' NOT NULL,
http_auth_enabled number(10) DEFAULT '0' NOT NULL,
http_login_form number(10) DEFAULT '0' NOT NULL,
http_strip_domains nvarchar2(2048) DEFAULT '' ,
http_case_sensitive number(10) DEFAULT '1' NOT NULL,
ldap_configured number(10) DEFAULT '0' NOT NULL,
ldap_case_sensitive number(10) DEFAULT '1' NOT NULL,
db_extension nvarchar2(32) DEFAULT '' ,
autoreg_tls_accept number(10) DEFAULT '1' NOT NULL,
compression_status number(10) DEFAULT '0' NOT NULL,
compress_older nvarchar2(32) DEFAULT '7d' ,
instanceid nvarchar2(32) DEFAULT '' ,
saml_auth_enabled number(10) DEFAULT '0' NOT NULL,
saml_idp_entityid nvarchar2(1024) DEFAULT '' ,
saml_sso_url nvarchar2(2048) DEFAULT '' ,
saml_slo_url nvarchar2(2048) DEFAULT '' ,
saml_username_attribute nvarchar2(128) DEFAULT '' ,
saml_sp_entityid nvarchar2(1024) DEFAULT '' ,
saml_nameid_format nvarchar2(2048) DEFAULT '' ,
saml_sign_messages number(10) DEFAULT '0' NOT NULL,
saml_sign_assertions number(10) DEFAULT '0' NOT NULL,
saml_sign_authn_requests number(10) DEFAULT '0' NOT NULL,
saml_sign_logout_requests number(10) DEFAULT '0' NOT NULL,
saml_sign_logout_responses number(10) DEFAULT '0' NOT NULL,
saml_encrypt_nameid number(10) DEFAULT '0' NOT NULL,
saml_encrypt_assertions number(10) DEFAULT '0' NOT NULL,
saml_case_sensitive number(10) DEFAULT '0' NOT NULL,
default_lang nvarchar2(5) DEFAULT 'en_US' ,
default_timezone nvarchar2(50) DEFAULT 'system' ,
login_attempts number(10) DEFAULT '5' NOT NULL,
login_block nvarchar2(32) DEFAULT '30s' ,
show_technical_errors number(10) DEFAULT '0' NOT NULL,
validate_uri_schemes number(10) DEFAULT '1' NOT NULL,
uri_valid_schemes nvarchar2(255) DEFAULT 'http,https,ftp,file,mailto,tel,ssh' ,
x_frame_options nvarchar2(255) DEFAULT 'SAMEORIGIN' ,
iframe_sandboxing_enabled number(10) DEFAULT '1' NOT NULL,
iframe_sandboxing_exceptions nvarchar2(255) DEFAULT '' ,
max_overview_table_size number(10) DEFAULT '50' NOT NULL,
history_period nvarchar2(32) DEFAULT '24h' ,
period_default nvarchar2(32) DEFAULT '1h' ,
max_period nvarchar2(32) DEFAULT '2y' ,
socket_timeout nvarchar2(32) DEFAULT '3s' ,
connect_timeout nvarchar2(32) DEFAULT '3s' ,
media_type_test_timeout nvarchar2(32) DEFAULT '65s' ,
script_timeout nvarchar2(32) DEFAULT '60s' ,
item_test_timeout nvarchar2(32) DEFAULT '60s' ,
session_key nvarchar2(32) DEFAULT '' ,
url nvarchar2(255) DEFAULT '' ,
report_test_timeout nvarchar2(32) DEFAULT '60s' ,
dbversion_status nvarchar2(2048) DEFAULT '' ,
hk_events_service nvarchar2(32) DEFAULT '1d' ,
passwd_min_length number(10) DEFAULT '8' NOT NULL,
passwd_check_rules number(10) DEFAULT '8' NOT NULL,
auditlog_enabled number(10) DEFAULT '1' NOT NULL,
ha_failover_delay nvarchar2(32) DEFAULT '1m' ,
geomaps_tile_provider nvarchar2(255) DEFAULT '' ,
geomaps_tile_url nvarchar2(1024) DEFAULT '' ,
geomaps_max_zoom number(10) DEFAULT '0' NOT NULL,
geomaps_attribution nvarchar2(1024) DEFAULT '' ,
PRIMARY KEY (configid)
);
CREATE INDEX config_1 ON config (alert_usrgrpid);
CREATE INDEX config_2 ON config (discovery_groupid);
CREATE TABLE triggers (
triggerid number(20) NOT NULL,
expression nvarchar2(2048) DEFAULT '' ,
description nvarchar2(2048) DEFAULT '' ,
url nvarchar2(255) DEFAULT '' ,
status number(10) DEFAULT '0' NOT NULL,
value number(10) DEFAULT '0' NOT NULL,
priority number(10) DEFAULT '0' NOT NULL,
lastchange number(10) DEFAULT '0' NOT NULL,
comments nvarchar2(2048) DEFAULT '' ,
error nvarchar2(2048) DEFAULT '' ,
templateid number(20) NULL,
type number(10) DEFAULT '0' NOT NULL,
state number(10) DEFAULT '0' NOT NULL,
flags number(10) DEFAULT '0' NOT NULL,
recovery_mode number(10) DEFAULT '0' NOT NULL,
recovery_expression nvarchar2(2048) DEFAULT '' ,
correlation_mode number(10) DEFAULT '0' NOT NULL,
correlation_tag nvarchar2(255) DEFAULT '' ,
manual_close number(10) DEFAULT '0' NOT NULL,
opdata nvarchar2(255) DEFAULT '' ,
discover number(10) DEFAULT '0' NOT NULL,
event_name nvarchar2(2048) DEFAULT '' ,
uuid nvarchar2(32) DEFAULT '' ,
PRIMARY KEY (triggerid)
);
CREATE INDEX triggers_1 ON triggers (status);
CREATE INDEX triggers_2 ON triggers (value,lastchange);
CREATE INDEX triggers_3 ON triggers (templateid);
CREATE TABLE trigger_depends (
triggerdepid number(20) NOT NULL,
triggerid_down number(20) NOT NULL,
triggerid_up number(20) NOT NULL,
PRIMARY KEY (triggerdepid)
);
CREATE UNIQUE INDEX trigger_depends_1 ON trigger_depends (triggerid_down,triggerid_up);
CREATE INDEX trigger_depends_2 ON trigger_depends (triggerid_up);
CREATE TABLE functions (
functionid number(20) NOT NULL,
itemid number(20) NOT NULL,
triggerid number(20) NOT NULL,
name nvarchar2(12) DEFAULT '' ,
parameter nvarchar2(255) DEFAULT '0' ,
PRIMARY KEY (functionid)
);
CREATE INDEX functions_1 ON functions (triggerid);
CREATE INDEX functions_2 ON functions (itemid,name,parameter);
CREATE TABLE graphs (
graphid number(20) NOT NULL,
name nvarchar2(128) DEFAULT '' ,
width number(10) DEFAULT '900' NOT NULL,
height number(10) DEFAULT '200' NOT NULL,
yaxismin BINARY_DOUBLE DEFAULT '0' NOT NULL,
yaxismax BINARY_DOUBLE DEFAULT '100' NOT NULL,
templateid number(20) NULL,
show_work_period number(10) DEFAULT '1' NOT NULL,
show_triggers number(10) DEFAULT '1' NOT NULL,
graphtype number(10) DEFAULT '0' NOT NULL,
show_legend number(10) DEFAULT '1' NOT NULL,
show_3d number(10) DEFAULT '0' NOT NULL,
percent_left BINARY_DOUBLE DEFAULT '0' NOT NULL,
percent_right BINARY_DOUBLE DEFAULT '0' NOT NULL,
ymin_type number(10) DEFAULT '0' NOT NULL,
ymax_type number(10) DEFAULT '0' NOT NULL,
ymin_itemid number(20) NULL,
ymax_itemid number(20) NULL,
flags number(10) DEFAULT '0' NOT NULL,
discover number(10) DEFAULT '0' NOT NULL,
uuid nvarchar2(32) DEFAULT '' ,
PRIMARY KEY (graphid)
);
CREATE INDEX graphs_1 ON graphs (name);
CREATE INDEX graphs_2 ON graphs (templateid);
CREATE INDEX graphs_3 ON graphs (ymin_itemid);
CREATE INDEX graphs_4 ON graphs (ymax_itemid);
CREATE TABLE graphs_items (
gitemid number(20) NOT NULL,
graphid number(20) NOT NULL,
itemid number(20) NOT NULL,
drawtype number(10) DEFAULT '0' NOT NULL,
sortorder number(10) DEFAULT '0' NOT NULL,
color nvarchar2(6) DEFAULT '009600' ,
yaxisside number(10) DEFAULT '0' NOT NULL,
calc_fnc number(10) DEFAULT '2' NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (gitemid)
);
CREATE INDEX graphs_items_1 ON graphs_items (itemid);
CREATE INDEX graphs_items_2 ON graphs_items (graphid);
CREATE TABLE graph_theme (
graphthemeid number(20) NOT NULL,
theme nvarchar2(64) DEFAULT '' ,
backgroundcolor nvarchar2(6) DEFAULT '' ,
graphcolor nvarchar2(6) DEFAULT '' ,
gridcolor nvarchar2(6) DEFAULT '' ,
maingridcolor nvarchar2(6) DEFAULT '' ,
gridbordercolor nvarchar2(6) DEFAULT '' ,
textcolor nvarchar2(6) DEFAULT '' ,
highlightcolor nvarchar2(6) DEFAULT '' ,
leftpercentilecolor nvarchar2(6) DEFAULT '' ,
rightpercentilecolor nvarchar2(6) DEFAULT '' ,
nonworktimecolor nvarchar2(6) DEFAULT '' ,
colorpalette nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (graphthemeid)
);
CREATE UNIQUE INDEX graph_theme_1 ON graph_theme (theme);
CREATE TABLE globalmacro (
globalmacroid number(20) NOT NULL,
macro nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
description nvarchar2(2048) DEFAULT '' ,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (globalmacroid)
);
CREATE UNIQUE INDEX globalmacro_1 ON globalmacro (macro);
CREATE TABLE hostmacro (
hostmacroid number(20) NOT NULL,
hostid number(20) NOT NULL,
macro nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
description nvarchar2(2048) DEFAULT '' ,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (hostmacroid)
);
CREATE UNIQUE INDEX hostmacro_1 ON hostmacro (hostid,macro);
CREATE TABLE hosts_groups (
hostgroupid number(20) NOT NULL,
hostid number(20) NOT NULL,
groupid number(20) NOT NULL,
PRIMARY KEY (hostgroupid)
);
CREATE UNIQUE INDEX hosts_groups_1 ON hosts_groups (hostid,groupid);
CREATE INDEX hosts_groups_2 ON hosts_groups (groupid);
CREATE TABLE hosts_templates (
hosttemplateid number(20) NOT NULL,
hostid number(20) NOT NULL,
templateid number(20) NOT NULL,
PRIMARY KEY (hosttemplateid)
);
CREATE UNIQUE INDEX hosts_templates_1 ON hosts_templates (hostid,templateid);
CREATE INDEX hosts_templates_2 ON hosts_templates (templateid);
CREATE TABLE valuemap_mapping (
valuemap_mappingid number(20) NOT NULL,
valuemapid number(20) NOT NULL,
value nvarchar2(64) DEFAULT '' ,
newvalue nvarchar2(64) DEFAULT '' ,
type number(10) DEFAULT '0' NOT NULL,
sortorder number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (valuemap_mappingid)
);
CREATE UNIQUE INDEX valuemap_mapping_1 ON valuemap_mapping (valuemapid,value,type);
CREATE TABLE media (
mediaid number(20) NOT NULL,
userid number(20) NOT NULL,
mediatypeid number(20) NOT NULL,
sendto nvarchar2(1024) DEFAULT '' ,
active number(10) DEFAULT '0' NOT NULL,
severity number(10) DEFAULT '63' NOT NULL,
period nvarchar2(1024) DEFAULT '1-7,00:00-24:00' ,
PRIMARY KEY (mediaid)
);
CREATE INDEX media_1 ON media (userid);
CREATE INDEX media_2 ON media (mediatypeid);
CREATE TABLE rights (
rightid number(20) NOT NULL,
groupid number(20) NOT NULL,
permission number(10) DEFAULT '0' NOT NULL,
id number(20) NOT NULL,
PRIMARY KEY (rightid)
);
CREATE INDEX rights_1 ON rights (groupid);
CREATE INDEX rights_2 ON rights (id);
CREATE TABLE services (
serviceid number(20) NOT NULL,
name nvarchar2(128) DEFAULT '' ,
status number(10) DEFAULT '-1' NOT NULL,
algorithm number(10) DEFAULT '0' NOT NULL,
sortorder number(10) DEFAULT '0' NOT NULL,
weight number(10) DEFAULT '0' NOT NULL,
propagation_rule number(10) DEFAULT '0' NOT NULL,
propagation_value number(10) DEFAULT '0' NOT NULL,
description nvarchar2(2048) DEFAULT '' ,
uuid nvarchar2(32) DEFAULT '' ,
created_at number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (serviceid)
);
CREATE TABLE services_links (
linkid number(20) NOT NULL,
serviceupid number(20) NOT NULL,
servicedownid number(20) NOT NULL,
PRIMARY KEY (linkid)
);
CREATE INDEX services_links_1 ON services_links (servicedownid);
CREATE UNIQUE INDEX services_links_2 ON services_links (serviceupid,servicedownid);
CREATE TABLE icon_map (
iconmapid number(20) NOT NULL,
name nvarchar2(64) DEFAULT '' ,
default_iconid number(20) NOT NULL,
PRIMARY KEY (iconmapid)
);
CREATE UNIQUE INDEX icon_map_1 ON icon_map (name);
CREATE INDEX icon_map_2 ON icon_map (default_iconid);
CREATE TABLE icon_mapping (
iconmappingid number(20) NOT NULL,
iconmapid number(20) NOT NULL,
iconid number(20) NOT NULL,
inventory_link number(10) DEFAULT '0' NOT NULL,
expression nvarchar2(64) DEFAULT '' ,
sortorder number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (iconmappingid)
);
CREATE INDEX icon_mapping_1 ON icon_mapping (iconmapid);
CREATE INDEX icon_mapping_2 ON icon_mapping (iconid);
CREATE TABLE sysmaps (
sysmapid number(20) NOT NULL,
name nvarchar2(128) DEFAULT '' ,
width number(10) DEFAULT '600' NOT NULL,
height number(10) DEFAULT '400' NOT NULL,
backgroundid number(20) NULL,
label_type number(10) DEFAULT '2' NOT NULL,
label_location number(10) DEFAULT '0' NOT NULL,
highlight number(10) DEFAULT '1' NOT NULL,
expandproblem number(10) DEFAULT '1' NOT NULL,
markelements number(10) DEFAULT '0' NOT NULL,
show_unack number(10) DEFAULT '0' NOT NULL,
grid_size number(10) DEFAULT '50' NOT NULL,
grid_show number(10) DEFAULT '1' NOT NULL,
grid_align number(10) DEFAULT '1' NOT NULL,
label_format number(10) DEFAULT '0' NOT NULL,
label_type_host number(10) DEFAULT '2' NOT NULL,
label_type_hostgroup number(10) DEFAULT '2' NOT NULL,
label_type_trigger number(10) DEFAULT '2' NOT NULL,
label_type_map number(10) DEFAULT '2' NOT NULL,
label_type_image number(10) DEFAULT '2' NOT NULL,
label_string_host nvarchar2(255) DEFAULT '' ,
label_string_hostgroup nvarchar2(255) DEFAULT '' ,
label_string_trigger nvarchar2(255) DEFAULT '' ,
label_string_map nvarchar2(255) DEFAULT '' ,
label_string_image nvarchar2(255) DEFAULT '' ,
iconmapid number(20) NULL,
expand_macros number(10) DEFAULT '0' NOT NULL,
severity_min number(10) DEFAULT '0' NOT NULL,
userid number(20) NOT NULL,
private number(10) DEFAULT '1' NOT NULL,
show_suppressed number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (sysmapid)
);
CREATE UNIQUE INDEX sysmaps_1 ON sysmaps (name);
CREATE INDEX sysmaps_2 ON sysmaps (backgroundid);
CREATE INDEX sysmaps_3 ON sysmaps (iconmapid);
CREATE TABLE sysmaps_elements (
selementid number(20) NOT NULL,
sysmapid number(20) NOT NULL,
elementid number(20) DEFAULT '0' NOT NULL,
elementtype number(10) DEFAULT '0' NOT NULL,
iconid_off number(20) NULL,
iconid_on number(20) NULL,
label nvarchar2(2048) DEFAULT '' ,
label_location number(10) DEFAULT '-1' NOT NULL,
x number(10) DEFAULT '0' NOT NULL,
y number(10) DEFAULT '0' NOT NULL,
iconid_disabled number(20) NULL,
iconid_maintenance number(20) NULL,
elementsubtype number(10) DEFAULT '0' NOT NULL,
areatype number(10) DEFAULT '0' NOT NULL,
width number(10) DEFAULT '200' NOT NULL,
height number(10) DEFAULT '200' NOT NULL,
viewtype number(10) DEFAULT '0' NOT NULL,
use_iconmap number(10) DEFAULT '1' NOT NULL,
evaltype number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (selementid)
);
CREATE INDEX sysmaps_elements_1 ON sysmaps_elements (sysmapid);
CREATE INDEX sysmaps_elements_2 ON sysmaps_elements (iconid_off);
CREATE INDEX sysmaps_elements_3 ON sysmaps_elements (iconid_on);
CREATE INDEX sysmaps_elements_4 ON sysmaps_elements (iconid_disabled);
CREATE INDEX sysmaps_elements_5 ON sysmaps_elements (iconid_maintenance);
CREATE TABLE sysmaps_links (
linkid number(20) NOT NULL,
sysmapid number(20) NOT NULL,
selementid1 number(20) NOT NULL,
selementid2 number(20) NOT NULL,
drawtype number(10) DEFAULT '0' NOT NULL,
color nvarchar2(6) DEFAULT '000000' ,
label nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (linkid)
);
CREATE INDEX sysmaps_links_1 ON sysmaps_links (sysmapid);
CREATE INDEX sysmaps_links_2 ON sysmaps_links (selementid1);
CREATE INDEX sysmaps_links_3 ON sysmaps_links (selementid2);
CREATE TABLE sysmaps_link_triggers (
linktriggerid number(20) NOT NULL,
linkid number(20) NOT NULL,
triggerid number(20) NOT NULL,
drawtype number(10) DEFAULT '0' NOT NULL,
color nvarchar2(6) DEFAULT '000000' ,
PRIMARY KEY (linktriggerid)
);
CREATE UNIQUE INDEX sysmaps_link_triggers_1 ON sysmaps_link_triggers (linkid,triggerid);
CREATE INDEX sysmaps_link_triggers_2 ON sysmaps_link_triggers (triggerid);
CREATE TABLE sysmap_element_url (
sysmapelementurlid number(20) NOT NULL,
selementid number(20) NOT NULL,
name nvarchar2(255) ,
url nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (sysmapelementurlid)
);
CREATE UNIQUE INDEX sysmap_element_url_1 ON sysmap_element_url (selementid,name);
CREATE TABLE sysmap_url (
sysmapurlid number(20) NOT NULL,
sysmapid number(20) NOT NULL,
name nvarchar2(255) ,
url nvarchar2(255) DEFAULT '' ,
elementtype number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (sysmapurlid)
);
CREATE UNIQUE INDEX sysmap_url_1 ON sysmap_url (sysmapid,name);
CREATE TABLE sysmap_user (
sysmapuserid number(20) NOT NULL,
sysmapid number(20) NOT NULL,
userid number(20) NOT NULL,
permission number(10) DEFAULT '2' NOT NULL,
PRIMARY KEY (sysmapuserid)
);
CREATE UNIQUE INDEX sysmap_user_1 ON sysmap_user (sysmapid,userid);
CREATE TABLE sysmap_usrgrp (
sysmapusrgrpid number(20) NOT NULL,
sysmapid number(20) NOT NULL,
usrgrpid number(20) NOT NULL,
permission number(10) DEFAULT '2' NOT NULL,
PRIMARY KEY (sysmapusrgrpid)
);
CREATE UNIQUE INDEX sysmap_usrgrp_1 ON sysmap_usrgrp (sysmapid,usrgrpid);
CREATE TABLE maintenances_hosts (
maintenance_hostid number(20) NOT NULL,
maintenanceid number(20) NOT NULL,
hostid number(20) NOT NULL,
PRIMARY KEY (maintenance_hostid)
);
CREATE UNIQUE INDEX maintenances_hosts_1 ON maintenances_hosts (maintenanceid,hostid);
CREATE INDEX maintenances_hosts_2 ON maintenances_hosts (hostid);
CREATE TABLE maintenances_groups (
maintenance_groupid number(20) NOT NULL,
maintenanceid number(20) NOT NULL,
groupid number(20) NOT NULL,
PRIMARY KEY (maintenance_groupid)
);
CREATE UNIQUE INDEX maintenances_groups_1 ON maintenances_groups (maintenanceid,groupid);
CREATE INDEX maintenances_groups_2 ON maintenances_groups (groupid);
CREATE TABLE timeperiods (
timeperiodid number(20) NOT NULL,
timeperiod_type number(10) DEFAULT '0' NOT NULL,
every number(10) DEFAULT '1' NOT NULL,
month number(10) DEFAULT '0' NOT NULL,
dayofweek number(10) DEFAULT '0' NOT NULL,
day number(10) DEFAULT '0' NOT NULL,
start_time number(10) DEFAULT '0' NOT NULL,
period number(10) DEFAULT '0' NOT NULL,
start_date number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (timeperiodid)
);
CREATE TABLE maintenances_windows (
maintenance_timeperiodid number(20) NOT NULL,
maintenanceid number(20) NOT NULL,
timeperiodid number(20) NOT NULL,
PRIMARY KEY (maintenance_timeperiodid)
);
CREATE UNIQUE INDEX maintenances_windows_1 ON maintenances_windows (maintenanceid,timeperiodid);
CREATE INDEX maintenances_windows_2 ON maintenances_windows (timeperiodid);
CREATE TABLE regexps (
regexpid number(20) NOT NULL,
name nvarchar2(128) DEFAULT '' ,
test_string nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (regexpid)
);
CREATE UNIQUE INDEX regexps_1 ON regexps (name);
CREATE TABLE expressions (
expressionid number(20) NOT NULL,
regexpid number(20) NOT NULL,
expression nvarchar2(255) DEFAULT '' ,
expression_type number(10) DEFAULT '0' NOT NULL,
exp_delimiter nvarchar2(1) DEFAULT '' ,
case_sensitive number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (expressionid)
);
CREATE INDEX expressions_1 ON expressions (regexpid);
CREATE TABLE ids (
table_name nvarchar2(64) DEFAULT '' ,
field_name nvarchar2(64) DEFAULT '' ,
nextid number(20) NOT NULL,
PRIMARY KEY (table_name,field_name)
);
CREATE TABLE alerts (
alertid number(20) NOT NULL,
actionid number(20) NOT NULL,
eventid number(20) NOT NULL,
userid number(20) NULL,
clock number(10) DEFAULT '0' NOT NULL,
mediatypeid number(20) NULL,
sendto nvarchar2(1024) DEFAULT '' ,
subject nvarchar2(255) DEFAULT '' ,
message nclob DEFAULT '' ,
status number(10) DEFAULT '0' NOT NULL,
retries number(10) DEFAULT '0' NOT NULL,
error nvarchar2(2048) DEFAULT '' ,
esc_step number(10) DEFAULT '0' NOT NULL,
alerttype number(10) DEFAULT '0' NOT NULL,
p_eventid number(20) NULL,
acknowledgeid number(20) NULL,
parameters nclob DEFAULT '{}' ,
PRIMARY KEY (alertid)
);
CREATE INDEX alerts_1 ON alerts (actionid);
CREATE INDEX alerts_2 ON alerts (clock);
CREATE INDEX alerts_3 ON alerts (eventid);
CREATE INDEX alerts_4 ON alerts (status);
CREATE INDEX alerts_5 ON alerts (mediatypeid);
CREATE INDEX alerts_6 ON alerts (userid);
CREATE INDEX alerts_7 ON alerts (p_eventid);
CREATE INDEX alerts_8 ON alerts (acknowledgeid);
CREATE TABLE history (
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
value BINARY_DOUBLE DEFAULT '0.0000' NOT NULL,
ns number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
);
CREATE TABLE history_uint (
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
value number(20) DEFAULT '0' NOT NULL,
ns number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
);
CREATE TABLE history_str (
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
ns number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
);
CREATE TABLE history_log (
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
timestamp number(10) DEFAULT '0' NOT NULL,
source nvarchar2(64) DEFAULT '' ,
severity number(10) DEFAULT '0' NOT NULL,
value nclob DEFAULT '' ,
logeventid number(10) DEFAULT '0' NOT NULL,
ns number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
);
CREATE TABLE history_text (
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
value nclob DEFAULT '' ,
ns number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock,ns)
);
CREATE TABLE proxy_history (
id number(20) NOT NULL,
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
timestamp number(10) DEFAULT '0' NOT NULL,
source nvarchar2(64) DEFAULT '' ,
severity number(10) DEFAULT '0' NOT NULL,
value nclob DEFAULT '' ,
logeventid number(10) DEFAULT '0' NOT NULL,
ns number(10) DEFAULT '0' NOT NULL,
state number(10) DEFAULT '0' NOT NULL,
lastlogsize number(20) DEFAULT '0' NOT NULL,
mtime number(10) DEFAULT '0' NOT NULL,
flags number(10) DEFAULT '0' NOT NULL,
write_clock number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX proxy_history_1 ON proxy_history (clock);
CREATE TABLE proxy_dhistory (
id number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
druleid number(20) NOT NULL,
ip nvarchar2(39) DEFAULT '' ,
port number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
status number(10) DEFAULT '0' NOT NULL,
dcheckid number(20) NULL,
dns nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (id)
);
CREATE INDEX proxy_dhistory_1 ON proxy_dhistory (clock);
CREATE INDEX proxy_dhistory_2 ON proxy_dhistory (druleid);
CREATE TABLE events (
eventid number(20) NOT NULL,
source number(10) DEFAULT '0' NOT NULL,
object number(10) DEFAULT '0' NOT NULL,
objectid number(20) DEFAULT '0' NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
value number(10) DEFAULT '0' NOT NULL,
acknowledged number(10) DEFAULT '0' NOT NULL,
ns number(10) DEFAULT '0' NOT NULL,
name nvarchar2(2048) DEFAULT '' ,
severity number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (eventid)
);
CREATE INDEX events_1 ON events (source,object,objectid,clock);
CREATE INDEX events_2 ON events (source,object,clock);
CREATE TABLE trends (
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
num number(10) DEFAULT '0' NOT NULL,
value_min BINARY_DOUBLE DEFAULT '0.0000' NOT NULL,
value_avg BINARY_DOUBLE DEFAULT '0.0000' NOT NULL,
value_max BINARY_DOUBLE DEFAULT '0.0000' NOT NULL,
PRIMARY KEY (itemid,clock)
);
CREATE TABLE trends_uint (
itemid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
num number(10) DEFAULT '0' NOT NULL,
value_min number(20) DEFAULT '0' NOT NULL,
value_avg number(20) DEFAULT '0' NOT NULL,
value_max number(20) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock)
);
CREATE TABLE acknowledges (
acknowledgeid number(20) NOT NULL,
userid number(20) NOT NULL,
eventid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
message nvarchar2(2048) DEFAULT '' ,
action number(10) DEFAULT '0' NOT NULL,
old_severity number(10) DEFAULT '0' NOT NULL,
new_severity number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (acknowledgeid)
);
CREATE INDEX acknowledges_1 ON acknowledges (userid);
CREATE INDEX acknowledges_2 ON acknowledges (eventid);
CREATE INDEX acknowledges_3 ON acknowledges (clock);
CREATE TABLE auditlog (
auditid nvarchar2(25) ,
userid number(20) NULL,
username nvarchar2(100) DEFAULT '' ,
clock number(10) DEFAULT '0' NOT NULL,
ip nvarchar2(39) DEFAULT '' ,
action number(10) DEFAULT '0' NOT NULL,
resourcetype number(10) DEFAULT '0' NOT NULL,
resourceid number(20) NULL,
resource_cuid nvarchar2(25) ,
resourcename nvarchar2(255) DEFAULT '' ,
recordsetid nvarchar2(25) ,
details nclob DEFAULT '' ,
PRIMARY KEY (auditid)
);
CREATE INDEX auditlog_1 ON auditlog (userid,clock);
CREATE INDEX auditlog_2 ON auditlog (clock);
CREATE INDEX auditlog_3 ON auditlog (resourcetype,resourceid);
CREATE TABLE service_alarms (
servicealarmid number(20) NOT NULL,
serviceid number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
value number(10) DEFAULT '-1' NOT NULL,
PRIMARY KEY (servicealarmid)
);
CREATE INDEX service_alarms_1 ON service_alarms (serviceid,clock);
CREATE INDEX service_alarms_2 ON service_alarms (clock);
CREATE TABLE autoreg_host (
autoreg_hostid number(20) NOT NULL,
proxy_hostid number(20) NULL,
host nvarchar2(128) DEFAULT '' ,
listen_ip nvarchar2(39) DEFAULT '' ,
listen_port number(10) DEFAULT '0' NOT NULL,
listen_dns nvarchar2(255) DEFAULT '' ,
host_metadata nvarchar2(255) DEFAULT '' ,
flags number(10) DEFAULT '0' NOT NULL,
tls_accepted number(10) DEFAULT '1' NOT NULL,
PRIMARY KEY (autoreg_hostid)
);
CREATE INDEX autoreg_host_1 ON autoreg_host (host);
CREATE INDEX autoreg_host_2 ON autoreg_host (proxy_hostid);
CREATE TABLE proxy_autoreg_host (
id number(20) NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
host nvarchar2(128) DEFAULT '' ,
listen_ip nvarchar2(39) DEFAULT '' ,
listen_port number(10) DEFAULT '0' NOT NULL,
listen_dns nvarchar2(255) DEFAULT '' ,
host_metadata nvarchar2(255) DEFAULT '' ,
flags number(10) DEFAULT '0' NOT NULL,
tls_accepted number(10) DEFAULT '1' NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX proxy_autoreg_host_1 ON proxy_autoreg_host (clock);
CREATE TABLE dhosts (
dhostid number(20) NOT NULL,
druleid number(20) NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
lastup number(10) DEFAULT '0' NOT NULL,
lastdown number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (dhostid)
);
CREATE INDEX dhosts_1 ON dhosts (druleid);
CREATE TABLE dservices (
dserviceid number(20) NOT NULL,
dhostid number(20) NOT NULL,
value nvarchar2(255) DEFAULT '' ,
port number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
lastup number(10) DEFAULT '0' NOT NULL,
lastdown number(10) DEFAULT '0' NOT NULL,
dcheckid number(20) NOT NULL,
ip nvarchar2(39) DEFAULT '' ,
dns nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (dserviceid)
);
CREATE UNIQUE INDEX dservices_1 ON dservices (dcheckid,ip,port);
CREATE INDEX dservices_2 ON dservices (dhostid);
CREATE TABLE escalations (
escalationid number(20) NOT NULL,
actionid number(20) NOT NULL,
triggerid number(20) NULL,
eventid number(20) NULL,
r_eventid number(20) NULL,
nextcheck number(10) DEFAULT '0' NOT NULL,
esc_step number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
itemid number(20) NULL,
acknowledgeid number(20) NULL,
servicealarmid number(20) NULL,
serviceid number(20) NULL,
PRIMARY KEY (escalationid)
);
CREATE UNIQUE INDEX escalations_1 ON escalations (triggerid,itemid,serviceid,escalationid);
CREATE INDEX escalations_2 ON escalations (eventid);
CREATE INDEX escalations_3 ON escalations (nextcheck);
CREATE TABLE globalvars (
globalvarid number(20) NOT NULL,
snmp_lastsize number(20) DEFAULT '0' NOT NULL,
PRIMARY KEY (globalvarid)
);
CREATE TABLE graph_discovery (
graphid number(20) NOT NULL,
parent_graphid number(20) NOT NULL,
lastcheck number(10) DEFAULT '0' NOT NULL,
ts_delete number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (graphid)
);
CREATE INDEX graph_discovery_1 ON graph_discovery (parent_graphid);
CREATE TABLE host_inventory (
hostid number(20) NOT NULL,
inventory_mode number(10) DEFAULT '0' NOT NULL,
type nvarchar2(64) DEFAULT '' ,
type_full nvarchar2(64) DEFAULT '' ,
name nvarchar2(128) DEFAULT '' ,
alias nvarchar2(128) DEFAULT '' ,
os nvarchar2(128) DEFAULT '' ,
os_full nvarchar2(255) DEFAULT '' ,
os_short nvarchar2(128) DEFAULT '' ,
serialno_a nvarchar2(64) DEFAULT '' ,
serialno_b nvarchar2(64) DEFAULT '' ,
tag nvarchar2(64) DEFAULT '' ,
asset_tag nvarchar2(64) DEFAULT '' ,
macaddress_a nvarchar2(64) DEFAULT '' ,
macaddress_b nvarchar2(64) DEFAULT '' ,
hardware nvarchar2(255) DEFAULT '' ,
hardware_full nvarchar2(2048) DEFAULT '' ,
software nvarchar2(255) DEFAULT '' ,
software_full nvarchar2(2048) DEFAULT '' ,
software_app_a nvarchar2(64) DEFAULT '' ,
software_app_b nvarchar2(64) DEFAULT '' ,
software_app_c nvarchar2(64) DEFAULT '' ,
software_app_d nvarchar2(64) DEFAULT '' ,
software_app_e nvarchar2(64) DEFAULT '' ,
contact nvarchar2(2048) DEFAULT '' ,
location nvarchar2(2048) DEFAULT '' ,
location_lat nvarchar2(16) DEFAULT '' ,
location_lon nvarchar2(16) DEFAULT '' ,
notes nvarchar2(2048) DEFAULT '' ,
chassis nvarchar2(64) DEFAULT '' ,
model nvarchar2(64) DEFAULT '' ,
hw_arch nvarchar2(32) DEFAULT '' ,
vendor nvarchar2(64) DEFAULT '' ,
contract_number nvarchar2(64) DEFAULT '' ,
installer_name nvarchar2(64) DEFAULT '' ,
deployment_status nvarchar2(64) DEFAULT '' ,
url_a nvarchar2(255) DEFAULT '' ,
url_b nvarchar2(255) DEFAULT '' ,
url_c nvarchar2(255) DEFAULT '' ,
host_networks nvarchar2(2048) DEFAULT '' ,
host_netmask nvarchar2(39) DEFAULT '' ,
host_router nvarchar2(39) DEFAULT '' ,
oob_ip nvarchar2(39) DEFAULT '' ,
oob_netmask nvarchar2(39) DEFAULT '' ,
oob_router nvarchar2(39) DEFAULT '' ,
date_hw_purchase nvarchar2(64) DEFAULT '' ,
date_hw_install nvarchar2(64) DEFAULT '' ,
date_hw_expiry nvarchar2(64) DEFAULT '' ,
date_hw_decomm nvarchar2(64) DEFAULT '' ,
site_address_a nvarchar2(128) DEFAULT '' ,
site_address_b nvarchar2(128) DEFAULT '' ,
site_address_c nvarchar2(128) DEFAULT '' ,
site_city nvarchar2(128) DEFAULT '' ,
site_state nvarchar2(64) DEFAULT '' ,
site_country nvarchar2(64) DEFAULT '' ,
site_zip nvarchar2(64) DEFAULT '' ,
site_rack nvarchar2(128) DEFAULT '' ,
site_notes nvarchar2(2048) DEFAULT '' ,
poc_1_name nvarchar2(128) DEFAULT '' ,
poc_1_email nvarchar2(128) DEFAULT '' ,
poc_1_phone_a nvarchar2(64) DEFAULT '' ,
poc_1_phone_b nvarchar2(64) DEFAULT '' ,
poc_1_cell nvarchar2(64) DEFAULT '' ,
poc_1_screen nvarchar2(64) DEFAULT '' ,
poc_1_notes nvarchar2(2048) DEFAULT '' ,
poc_2_name nvarchar2(128) DEFAULT '' ,
poc_2_email nvarchar2(128) DEFAULT '' ,
poc_2_phone_a nvarchar2(64) DEFAULT '' ,
poc_2_phone_b nvarchar2(64) DEFAULT '' ,
poc_2_cell nvarchar2(64) DEFAULT '' ,
poc_2_screen nvarchar2(64) DEFAULT '' ,
poc_2_notes nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (hostid)
);
CREATE TABLE housekeeper (
housekeeperid number(20) NOT NULL,
tablename nvarchar2(64) DEFAULT '' ,
field nvarchar2(64) DEFAULT '' ,
value number(20) NOT NULL,
PRIMARY KEY (housekeeperid)
);
CREATE TABLE images (
imageid number(20) NOT NULL,
imagetype number(10) DEFAULT '0' NOT NULL,
name nvarchar2(64) DEFAULT '0' ,
image blob DEFAULT '' NOT NULL,
PRIMARY KEY (imageid)
);
CREATE UNIQUE INDEX images_1 ON images (name);
CREATE TABLE item_discovery (
itemdiscoveryid number(20) NOT NULL,
itemid number(20) NOT NULL,
parent_itemid number(20) NOT NULL,
key_ nvarchar2(2048) DEFAULT '' ,
lastcheck number(10) DEFAULT '0' NOT NULL,
ts_delete number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemdiscoveryid)
);
CREATE UNIQUE INDEX item_discovery_1 ON item_discovery (itemid,parent_itemid);
CREATE INDEX item_discovery_2 ON item_discovery (parent_itemid);
CREATE TABLE host_discovery (
hostid number(20) NOT NULL,
parent_hostid number(20) NULL,
parent_itemid number(20) NULL,
host nvarchar2(128) DEFAULT '' ,
lastcheck number(10) DEFAULT '0' NOT NULL,
ts_delete number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (hostid)
);
CREATE TABLE interface_discovery (
interfaceid number(20) NOT NULL,
parent_interfaceid number(20) NOT NULL,
PRIMARY KEY (interfaceid)
);
CREATE TABLE profiles (
profileid number(20) NOT NULL,
userid number(20) NOT NULL,
idx nvarchar2(96) DEFAULT '' ,
idx2 number(20) DEFAULT '0' NOT NULL,
value_id number(20) DEFAULT '0' NOT NULL,
value_int number(10) DEFAULT '0' NOT NULL,
value_str nclob DEFAULT '' ,
source nvarchar2(96) DEFAULT '' ,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (profileid)
);
CREATE INDEX profiles_1 ON profiles (userid,idx,idx2);
CREATE INDEX profiles_2 ON profiles (userid,profileid);
CREATE TABLE sessions (
sessionid nvarchar2(32) DEFAULT '' ,
userid number(20) NOT NULL,
lastaccess number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (sessionid)
);
CREATE INDEX sessions_1 ON sessions (userid,status,lastaccess);
CREATE TABLE trigger_discovery (
triggerid number(20) NOT NULL,
parent_triggerid number(20) NOT NULL,
lastcheck number(10) DEFAULT '0' NOT NULL,
ts_delete number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (triggerid)
);
CREATE INDEX trigger_discovery_1 ON trigger_discovery (parent_triggerid);
CREATE TABLE item_condition (
item_conditionid number(20) NOT NULL,
itemid number(20) NOT NULL,
operator number(10) DEFAULT '8' NOT NULL,
macro nvarchar2(64) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (item_conditionid)
);
CREATE INDEX item_condition_1 ON item_condition (itemid);
CREATE TABLE item_rtdata (
itemid number(20) NOT NULL,
lastlogsize number(20) DEFAULT '0' NOT NULL,
state number(10) DEFAULT '0' NOT NULL,
mtime number(10) DEFAULT '0' NOT NULL,
error nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (itemid)
);
CREATE TABLE opinventory (
operationid number(20) NOT NULL,
inventory_mode number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (operationid)
);
CREATE TABLE trigger_tag (
triggertagid number(20) NOT NULL,
triggerid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (triggertagid)
);
CREATE INDEX trigger_tag_1 ON trigger_tag (triggerid);
CREATE TABLE event_tag (
eventtagid number(20) NOT NULL,
eventid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (eventtagid)
);
CREATE INDEX event_tag_1 ON event_tag (eventid);
CREATE TABLE problem (
eventid number(20) NOT NULL,
source number(10) DEFAULT '0' NOT NULL,
object number(10) DEFAULT '0' NOT NULL,
objectid number(20) DEFAULT '0' NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
ns number(10) DEFAULT '0' NOT NULL,
r_eventid number(20) NULL,
r_clock number(10) DEFAULT '0' NOT NULL,
r_ns number(10) DEFAULT '0' NOT NULL,
correlationid number(20) NULL,
userid number(20) NULL,
name nvarchar2(2048) DEFAULT '' ,
acknowledged number(10) DEFAULT '0' NOT NULL,
severity number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (eventid)
);
CREATE INDEX problem_1 ON problem (source,object,objectid);
CREATE INDEX problem_2 ON problem (r_clock);
CREATE INDEX problem_3 ON problem (r_eventid);
CREATE TABLE problem_tag (
problemtagid number(20) NOT NULL,
eventid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (problemtagid)
);
CREATE INDEX problem_tag_1 ON problem_tag (eventid,tag,value);
CREATE TABLE tag_filter (
tag_filterid number(20) NOT NULL,
usrgrpid number(20) NOT NULL,
groupid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (tag_filterid)
);
CREATE TABLE event_recovery (
eventid number(20) NOT NULL,
r_eventid number(20) NOT NULL,
c_eventid number(20) NULL,
correlationid number(20) NULL,
userid number(20) NULL,
PRIMARY KEY (eventid)
);
CREATE INDEX event_recovery_1 ON event_recovery (r_eventid);
CREATE INDEX event_recovery_2 ON event_recovery (c_eventid);
CREATE TABLE correlation (
correlationid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
description nvarchar2(2048) DEFAULT '' ,
evaltype number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
formula nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (correlationid)
);
CREATE INDEX correlation_1 ON correlation (status);
CREATE UNIQUE INDEX correlation_2 ON correlation (name);
CREATE TABLE corr_condition (
corr_conditionid number(20) NOT NULL,
correlationid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (corr_conditionid)
);
CREATE INDEX corr_condition_1 ON corr_condition (correlationid);
CREATE TABLE corr_condition_tag (
corr_conditionid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (corr_conditionid)
);
CREATE TABLE corr_condition_group (
corr_conditionid number(20) NOT NULL,
operator number(10) DEFAULT '0' NOT NULL,
groupid number(20) NOT NULL,
PRIMARY KEY (corr_conditionid)
);
CREATE INDEX corr_condition_group_1 ON corr_condition_group (groupid);
CREATE TABLE corr_condition_tagpair (
corr_conditionid number(20) NOT NULL,
oldtag nvarchar2(255) DEFAULT '' ,
newtag nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (corr_conditionid)
);
CREATE TABLE corr_condition_tagvalue (
corr_conditionid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
operator number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (corr_conditionid)
);
CREATE TABLE corr_operation (
corr_operationid number(20) NOT NULL,
correlationid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (corr_operationid)
);
CREATE INDEX corr_operation_1 ON corr_operation (correlationid);
CREATE TABLE task (
taskid number(20) NOT NULL,
type number(10) NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
ttl number(10) DEFAULT '0' NOT NULL,
proxy_hostid number(20) NULL,
PRIMARY KEY (taskid)
);
CREATE INDEX task_1 ON task (status,proxy_hostid);
CREATE TABLE task_close_problem (
taskid number(20) NOT NULL,
acknowledgeid number(20) NOT NULL,
PRIMARY KEY (taskid)
);
CREATE TABLE item_preproc (
item_preprocid number(20) NOT NULL,
itemid number(20) NOT NULL,
step number(10) DEFAULT '0' NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
params nclob DEFAULT '' ,
error_handler number(10) DEFAULT '0' NOT NULL,
error_handler_params nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (item_preprocid)
);
CREATE INDEX item_preproc_1 ON item_preproc (itemid,step);
CREATE TABLE task_remote_command (
taskid number(20) NOT NULL,
command_type number(10) DEFAULT '0' NOT NULL,
execute_on number(10) DEFAULT '0' NOT NULL,
port number(10) DEFAULT '0' NOT NULL,
authtype number(10) DEFAULT '0' NOT NULL,
username nvarchar2(64) DEFAULT '' ,
password nvarchar2(64) DEFAULT '' ,
publickey nvarchar2(64) DEFAULT '' ,
privatekey nvarchar2(64) DEFAULT '' ,
command nclob DEFAULT '' ,
alertid number(20) NULL,
parent_taskid number(20) NOT NULL,
hostid number(20) NOT NULL,
PRIMARY KEY (taskid)
);
CREATE TABLE task_remote_command_result (
taskid number(20) NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
parent_taskid number(20) NOT NULL,
info nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (taskid)
);
CREATE TABLE task_data (
taskid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
data nclob DEFAULT '' ,
parent_taskid number(20) NOT NULL,
PRIMARY KEY (taskid)
);
CREATE TABLE task_result (
taskid number(20) NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
parent_taskid number(20) NOT NULL,
info nclob DEFAULT '' ,
PRIMARY KEY (taskid)
);
CREATE INDEX task_result_1 ON task_result (parent_taskid);
CREATE TABLE task_acknowledge (
taskid number(20) NOT NULL,
acknowledgeid number(20) NOT NULL,
PRIMARY KEY (taskid)
);
CREATE TABLE sysmap_shape (
sysmap_shapeid number(20) NOT NULL,
sysmapid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
x number(10) DEFAULT '0' NOT NULL,
y number(10) DEFAULT '0' NOT NULL,
width number(10) DEFAULT '200' NOT NULL,
height number(10) DEFAULT '200' NOT NULL,
text nvarchar2(2048) DEFAULT '' ,
font number(10) DEFAULT '9' NOT NULL,
font_size number(10) DEFAULT '11' NOT NULL,
font_color nvarchar2(6) DEFAULT '000000' ,
text_halign number(10) DEFAULT '0' NOT NULL,
text_valign number(10) DEFAULT '0' NOT NULL,
border_type number(10) DEFAULT '0' NOT NULL,
border_width number(10) DEFAULT '1' NOT NULL,
border_color nvarchar2(6) DEFAULT '000000' ,
background_color nvarchar2(6) DEFAULT '' ,
zindex number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (sysmap_shapeid)
);
CREATE INDEX sysmap_shape_1 ON sysmap_shape (sysmapid);
CREATE TABLE sysmap_element_trigger (
selement_triggerid number(20) NOT NULL,
selementid number(20) NOT NULL,
triggerid number(20) NOT NULL,
PRIMARY KEY (selement_triggerid)
);
CREATE UNIQUE INDEX sysmap_element_trigger_1 ON sysmap_element_trigger (selementid,triggerid);
CREATE TABLE httptest_field (
httptest_fieldid number(20) NOT NULL,
httptestid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (httptest_fieldid)
);
CREATE INDEX httptest_field_1 ON httptest_field (httptestid);
CREATE TABLE httpstep_field (
httpstep_fieldid number(20) NOT NULL,
httpstepid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (httpstep_fieldid)
);
CREATE INDEX httpstep_field_1 ON httpstep_field (httpstepid);
CREATE TABLE dashboard (
dashboardid number(20) NOT NULL,
name nvarchar2(255) ,
userid number(20) NULL,
private number(10) DEFAULT '1' NOT NULL,
templateid number(20) NULL,
display_period number(10) DEFAULT '30' NOT NULL,
auto_start number(10) DEFAULT '1' NOT NULL,
uuid nvarchar2(32) DEFAULT '' ,
PRIMARY KEY (dashboardid)
);
CREATE INDEX dashboard_1 ON dashboard (userid);
CREATE INDEX dashboard_2 ON dashboard (templateid);
CREATE TABLE dashboard_user (
dashboard_userid number(20) NOT NULL,
dashboardid number(20) NOT NULL,
userid number(20) NOT NULL,
permission number(10) DEFAULT '2' NOT NULL,
PRIMARY KEY (dashboard_userid)
);
CREATE UNIQUE INDEX dashboard_user_1 ON dashboard_user (dashboardid,userid);
CREATE TABLE dashboard_usrgrp (
dashboard_usrgrpid number(20) NOT NULL,
dashboardid number(20) NOT NULL,
usrgrpid number(20) NOT NULL,
permission number(10) DEFAULT '2' NOT NULL,
PRIMARY KEY (dashboard_usrgrpid)
);
CREATE UNIQUE INDEX dashboard_usrgrp_1 ON dashboard_usrgrp (dashboardid,usrgrpid);
CREATE TABLE dashboard_page (
dashboard_pageid number(20) NOT NULL,
dashboardid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
display_period number(10) DEFAULT '0' NOT NULL,
sortorder number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (dashboard_pageid)
);
CREATE INDEX dashboard_page_1 ON dashboard_page (dashboardid);
CREATE TABLE widget (
widgetid number(20) NOT NULL,
type nvarchar2(255) DEFAULT '' ,
name nvarchar2(255) DEFAULT '' ,
x number(10) DEFAULT '0' NOT NULL,
y number(10) DEFAULT '0' NOT NULL,
width number(10) DEFAULT '1' NOT NULL,
height number(10) DEFAULT '2' NOT NULL,
view_mode number(10) DEFAULT '0' NOT NULL,
dashboard_pageid number(20) NOT NULL,
PRIMARY KEY (widgetid)
);
CREATE INDEX widget_1 ON widget (dashboard_pageid);
CREATE TABLE widget_field (
widget_fieldid number(20) NOT NULL,
widgetid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value_int number(10) DEFAULT '0' NOT NULL,
value_str nvarchar2(255) DEFAULT '' ,
value_groupid number(20) NULL,
value_hostid number(20) NULL,
value_itemid number(20) NULL,
value_graphid number(20) NULL,
value_sysmapid number(20) NULL,
value_serviceid number(20) NULL,
value_slaid number(20) NULL,
PRIMARY KEY (widget_fieldid)
);
CREATE INDEX widget_field_1 ON widget_field (widgetid);
CREATE INDEX widget_field_2 ON widget_field (value_groupid);
CREATE INDEX widget_field_3 ON widget_field (value_hostid);
CREATE INDEX widget_field_4 ON widget_field (value_itemid);
CREATE INDEX widget_field_5 ON widget_field (value_graphid);
CREATE INDEX widget_field_6 ON widget_field (value_sysmapid);
CREATE INDEX widget_field_7 ON widget_field (value_serviceid);
CREATE INDEX widget_field_8 ON widget_field (value_slaid);
CREATE TABLE task_check_now (
taskid number(20) NOT NULL,
itemid number(20) NOT NULL,
PRIMARY KEY (taskid)
);
CREATE TABLE event_suppress (
event_suppressid number(20) NOT NULL,
eventid number(20) NOT NULL,
maintenanceid number(20) NULL,
suppress_until number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (event_suppressid)
);
CREATE UNIQUE INDEX event_suppress_1 ON event_suppress (eventid,maintenanceid);
CREATE INDEX event_suppress_2 ON event_suppress (suppress_until);
CREATE INDEX event_suppress_3 ON event_suppress (maintenanceid);
CREATE TABLE maintenance_tag (
maintenancetagid number(20) NOT NULL,
maintenanceid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
operator number(10) DEFAULT '2' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (maintenancetagid)
);
CREATE INDEX maintenance_tag_1 ON maintenance_tag (maintenanceid);
CREATE TABLE lld_macro_path (
lld_macro_pathid number(20) NOT NULL,
itemid number(20) NOT NULL,
lld_macro nvarchar2(255) DEFAULT '' ,
path nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (lld_macro_pathid)
);
CREATE UNIQUE INDEX lld_macro_path_1 ON lld_macro_path (itemid,lld_macro);
CREATE TABLE host_tag (
hosttagid number(20) NOT NULL,
hostid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (hosttagid)
);
CREATE INDEX host_tag_1 ON host_tag (hostid);
CREATE TABLE config_autoreg_tls (
autoreg_tlsid number(20) NOT NULL,
tls_psk_identity nvarchar2(128) DEFAULT '' ,
tls_psk nvarchar2(512) DEFAULT '' ,
PRIMARY KEY (autoreg_tlsid)
);
CREATE UNIQUE INDEX config_autoreg_tls_1 ON config_autoreg_tls (tls_psk_identity);
CREATE TABLE module (
moduleid number(20) NOT NULL,
id nvarchar2(255) DEFAULT '' ,
relative_path nvarchar2(255) DEFAULT '' ,
status number(10) DEFAULT '0' NOT NULL,
config nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (moduleid)
);
CREATE TABLE interface_snmp (
interfaceid number(20) NOT NULL,
version number(10) DEFAULT '2' NOT NULL,
bulk number(10) DEFAULT '1' NOT NULL,
community nvarchar2(64) DEFAULT '' ,
securityname nvarchar2(64) DEFAULT '' ,
securitylevel number(10) DEFAULT '0' NOT NULL,
authpassphrase nvarchar2(64) DEFAULT '' ,
privpassphrase nvarchar2(64) DEFAULT '' ,
authprotocol number(10) DEFAULT '0' NOT NULL,
privprotocol number(10) DEFAULT '0' NOT NULL,
contextname nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (interfaceid)
);
CREATE TABLE lld_override (
lld_overrideid number(20) NOT NULL,
itemid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
step number(10) DEFAULT '0' NOT NULL,
evaltype number(10) DEFAULT '0' NOT NULL,
formula nvarchar2(255) DEFAULT '' ,
stop number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_overrideid)
);
CREATE UNIQUE INDEX lld_override_1 ON lld_override (itemid,name);
CREATE TABLE lld_override_condition (
lld_override_conditionid number(20) NOT NULL,
lld_overrideid number(20) NOT NULL,
operator number(10) DEFAULT '8' NOT NULL,
macro nvarchar2(64) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (lld_override_conditionid)
);
CREATE INDEX lld_override_condition_1 ON lld_override_condition (lld_overrideid);
CREATE TABLE lld_override_operation (
lld_override_operationid number(20) NOT NULL,
lld_overrideid number(20) NOT NULL,
operationobject number(10) DEFAULT '0' NOT NULL,
operator number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (lld_override_operationid)
);
CREATE INDEX lld_override_operation_1 ON lld_override_operation (lld_overrideid);
CREATE TABLE lld_override_opstatus (
lld_override_operationid number(20) NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
);
CREATE TABLE lld_override_opdiscover (
lld_override_operationid number(20) NOT NULL,
discover number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
);
CREATE TABLE lld_override_opperiod (
lld_override_operationid number(20) NOT NULL,
delay nvarchar2(1024) DEFAULT '0' ,
PRIMARY KEY (lld_override_operationid)
);
CREATE TABLE lld_override_ophistory (
lld_override_operationid number(20) NOT NULL,
history nvarchar2(255) DEFAULT '90d' ,
PRIMARY KEY (lld_override_operationid)
);
CREATE TABLE lld_override_optrends (
lld_override_operationid number(20) NOT NULL,
trends nvarchar2(255) DEFAULT '365d' ,
PRIMARY KEY (lld_override_operationid)
);
CREATE TABLE lld_override_opseverity (
lld_override_operationid number(20) NOT NULL,
severity number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
);
CREATE TABLE lld_override_optag (
lld_override_optagid number(20) NOT NULL,
lld_override_operationid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (lld_override_optagid)
);
CREATE INDEX lld_override_optag_1 ON lld_override_optag (lld_override_operationid);
CREATE TABLE lld_override_optemplate (
lld_override_optemplateid number(20) NOT NULL,
lld_override_operationid number(20) NOT NULL,
templateid number(20) NOT NULL,
PRIMARY KEY (lld_override_optemplateid)
);
CREATE UNIQUE INDEX lld_override_optemplate_1 ON lld_override_optemplate (lld_override_operationid,templateid);
CREATE INDEX lld_override_optemplate_2 ON lld_override_optemplate (templateid);
CREATE TABLE lld_override_opinventory (
lld_override_operationid number(20) NOT NULL,
inventory_mode number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (lld_override_operationid)
);
CREATE TABLE trigger_queue (
trigger_queueid number(20) NOT NULL,
objectid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
clock number(10) DEFAULT '0' NOT NULL,
ns number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (trigger_queueid)
);
CREATE TABLE item_parameter (
item_parameterid number(20) NOT NULL,
itemid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (item_parameterid)
);
CREATE INDEX item_parameter_1 ON item_parameter (itemid);
CREATE TABLE role_rule (
role_ruleid number(20) NOT NULL,
roleid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value_int number(10) DEFAULT '0' NOT NULL,
value_str nvarchar2(255) DEFAULT '' ,
value_moduleid number(20) NULL,
value_serviceid number(20) NULL,
PRIMARY KEY (role_ruleid)
);
CREATE INDEX role_rule_1 ON role_rule (roleid);
CREATE INDEX role_rule_2 ON role_rule (value_moduleid);
CREATE INDEX role_rule_3 ON role_rule (value_serviceid);
CREATE TABLE token (
tokenid number(20) NOT NULL,
name nvarchar2(64) DEFAULT '' ,
description nvarchar2(2048) DEFAULT '' ,
userid number(20) NOT NULL,
token nvarchar2(128) ,
lastaccess number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
expires_at number(10) DEFAULT '0' NOT NULL,
created_at number(10) DEFAULT '0' NOT NULL,
creator_userid number(20) NULL,
PRIMARY KEY (tokenid)
);
CREATE INDEX token_1 ON token (name);
CREATE UNIQUE INDEX token_2 ON token (userid,name);
CREATE UNIQUE INDEX token_3 ON token (token);
CREATE INDEX token_4 ON token (creator_userid);
CREATE TABLE item_tag (
itemtagid number(20) NOT NULL,
itemid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (itemtagid)
);
CREATE INDEX item_tag_1 ON item_tag (itemid);
CREATE TABLE httptest_tag (
httptesttagid number(20) NOT NULL,
httptestid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (httptesttagid)
);
CREATE INDEX httptest_tag_1 ON httptest_tag (httptestid);
CREATE TABLE sysmaps_element_tag (
selementtagid number(20) NOT NULL,
selementid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
operator number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (selementtagid)
);
CREATE INDEX sysmaps_element_tag_1 ON sysmaps_element_tag (selementid);
CREATE TABLE report (
reportid number(20) NOT NULL,
userid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
description nvarchar2(2048) DEFAULT '' ,
status number(10) DEFAULT '0' NOT NULL,
dashboardid number(20) NOT NULL,
period number(10) DEFAULT '0' NOT NULL,
cycle number(10) DEFAULT '0' NOT NULL,
weekdays number(10) DEFAULT '0' NOT NULL,
start_time number(10) DEFAULT '0' NOT NULL,
active_since number(10) DEFAULT '0' NOT NULL,
active_till number(10) DEFAULT '0' NOT NULL,
state number(10) DEFAULT '0' NOT NULL,
lastsent number(10) DEFAULT '0' NOT NULL,
info nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (reportid)
);
CREATE UNIQUE INDEX report_1 ON report (name);
CREATE TABLE report_param (
reportparamid number(20) NOT NULL,
reportid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
value nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (reportparamid)
);
CREATE INDEX report_param_1 ON report_param (reportid);
CREATE TABLE report_user (
reportuserid number(20) NOT NULL,
reportid number(20) NOT NULL,
userid number(20) NOT NULL,
exclude number(10) DEFAULT '0' NOT NULL,
access_userid number(20) NULL,
PRIMARY KEY (reportuserid)
);
CREATE INDEX report_user_1 ON report_user (reportid);
CREATE TABLE report_usrgrp (
reportusrgrpid number(20) NOT NULL,
reportid number(20) NOT NULL,
usrgrpid number(20) NOT NULL,
access_userid number(20) NULL,
PRIMARY KEY (reportusrgrpid)
);
CREATE INDEX report_usrgrp_1 ON report_usrgrp (reportid);
CREATE TABLE service_problem_tag (
service_problem_tagid number(20) NOT NULL,
serviceid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
operator number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (service_problem_tagid)
);
CREATE INDEX service_problem_tag_1 ON service_problem_tag (serviceid);
CREATE TABLE service_problem (
service_problemid number(20) NOT NULL,
eventid number(20) NOT NULL,
serviceid number(20) NOT NULL,
severity number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (service_problemid)
);
CREATE INDEX service_problem_1 ON service_problem (eventid);
CREATE INDEX service_problem_2 ON service_problem (serviceid);
CREATE TABLE service_tag (
servicetagid number(20) NOT NULL,
serviceid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (servicetagid)
);
CREATE INDEX service_tag_1 ON service_tag (serviceid);
CREATE TABLE service_status_rule (
service_status_ruleid number(20) NOT NULL,
serviceid number(20) NOT NULL,
type number(10) DEFAULT '0' NOT NULL,
limit_value number(10) DEFAULT '0' NOT NULL,
limit_status number(10) DEFAULT '0' NOT NULL,
new_status number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (service_status_ruleid)
);
CREATE INDEX service_status_rule_1 ON service_status_rule (serviceid);
CREATE TABLE ha_node (
ha_nodeid nvarchar2(25) ,
name nvarchar2(255) DEFAULT '' ,
address nvarchar2(255) DEFAULT '' ,
port number(10) DEFAULT '10051' NOT NULL,
lastaccess number(10) DEFAULT '0' NOT NULL,
status number(10) DEFAULT '0' NOT NULL,
ha_sessionid nvarchar2(25) DEFAULT '' ,
PRIMARY KEY (ha_nodeid)
);
CREATE UNIQUE INDEX ha_node_1 ON ha_node (name);
CREATE INDEX ha_node_2 ON ha_node (status,lastaccess);
CREATE TABLE sla (
slaid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
period number(10) DEFAULT '0' NOT NULL,
slo BINARY_DOUBLE DEFAULT '99.9' NOT NULL,
effective_date number(10) DEFAULT '0' NOT NULL,
timezone nvarchar2(50) DEFAULT 'UTC' ,
status number(10) DEFAULT '1' NOT NULL,
description nvarchar2(2048) DEFAULT '' ,
PRIMARY KEY (slaid)
);
CREATE UNIQUE INDEX sla_1 ON sla (name);
CREATE TABLE sla_schedule (
sla_scheduleid number(20) NOT NULL,
slaid number(20) NOT NULL,
period_from number(10) DEFAULT '0' NOT NULL,
period_to number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (sla_scheduleid)
);
CREATE INDEX sla_schedule_1 ON sla_schedule (slaid);
CREATE TABLE sla_excluded_downtime (
sla_excluded_downtimeid number(20) NOT NULL,
slaid number(20) NOT NULL,
name nvarchar2(255) DEFAULT '' ,
period_from number(10) DEFAULT '0' NOT NULL,
period_to number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (sla_excluded_downtimeid)
);
CREATE INDEX sla_excluded_downtime_1 ON sla_excluded_downtime (slaid);
CREATE TABLE sla_service_tag (
sla_service_tagid number(20) NOT NULL,
slaid number(20) NOT NULL,
tag nvarchar2(255) DEFAULT '' ,
operator number(10) DEFAULT '0' NOT NULL,
value nvarchar2(255) DEFAULT '' ,
PRIMARY KEY (sla_service_tagid)
);
CREATE INDEX sla_service_tag_1 ON sla_service_tag (slaid);
CREATE TABLE dbversion (
dbversionid number(20) NOT NULL,
mandatory number(10) DEFAULT '0' NOT NULL,
optional number(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (dbversionid)
);
INSERT INTO dbversion VALUES ('1','6000000','6000018');
CREATE SEQUENCE proxy_history_seq
START WITH 1
INCREMENT BY 1
NOMAXVALUE
/
CREATE TRIGGER proxy_history_tr
BEFORE INSERT ON proxy_history
FOR EACH ROW
BEGIN
SELECT proxy_history_seq.nextval INTO :new.id FROM dual;
END;
/
CREATE SEQUENCE proxy_dhistory_seq
START WITH 1
INCREMENT BY 1
NOMAXVALUE
/
CREATE TRIGGER proxy_dhistory_tr
BEFORE INSERT ON proxy_dhistory
FOR EACH ROW
BEGIN
SELECT proxy_dhistory_seq.nextval INTO :new.id FROM dual;
END;
/
CREATE SEQUENCE proxy_autoreg_host_seq
START WITH 1
INCREMENT BY 1
NOMAXVALUE
/
CREATE TRIGGER proxy_autoreg_host_tr
BEFORE INSERT ON proxy_autoreg_host
FOR EACH ROW
BEGIN
SELECT proxy_autoreg_host_seq.nextval INTO :new.id FROM dual;
END;
/
create trigger hosts_name_upper_insert
before insert on hosts for each row
begin
:new.name_upper:=upper(:new.name);
end;
/
create trigger hosts_name_upper_update
before update on hosts for each row
begin
if :new.name<>:old.name
then
:new.name_upper:=upper(:new.name);
end if;
end;
/
create trigger items_name_upper_insert
before insert on items for each row
begin
:new.name_upper:=upper(:new.name);
end;
/
create trigger items_name_upper_update
before update on items for each row
begin
if :new.name<>:old.name
then
:new.name_upper:=upper(:new.name);
end if;
end;
/
ALTER TABLE users ADD CONSTRAINT c_users_1 FOREIGN KEY (roleid) REFERENCES role (roleid) ON DELETE CASCADE;
ALTER TABLE hosts ADD CONSTRAINT c_hosts_1 FOREIGN KEY (proxy_hostid) REFERENCES hosts (hostid);
ALTER TABLE hosts ADD CONSTRAINT c_hosts_2 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid);
ALTER TABLE hosts ADD CONSTRAINT c_hosts_3 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE group_prototype ADD CONSTRAINT c_group_prototype_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE group_prototype ADD CONSTRAINT c_group_prototype_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid);
ALTER TABLE group_prototype ADD CONSTRAINT c_group_prototype_3 FOREIGN KEY (templateid) REFERENCES group_prototype (group_prototypeid) ON DELETE CASCADE;
ALTER TABLE group_discovery ADD CONSTRAINT c_group_discovery_1 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE;
ALTER TABLE group_discovery ADD CONSTRAINT c_group_discovery_2 FOREIGN KEY (parent_group_prototypeid) REFERENCES group_prototype (group_prototypeid);
ALTER TABLE drules ADD CONSTRAINT c_drules_1 FOREIGN KEY (proxy_hostid) REFERENCES hosts (hostid);
ALTER TABLE dchecks ADD CONSTRAINT c_dchecks_1 FOREIGN KEY (druleid) REFERENCES drules (druleid) ON DELETE CASCADE;
ALTER TABLE httptest ADD CONSTRAINT c_httptest_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE httptest ADD CONSTRAINT c_httptest_3 FOREIGN KEY (templateid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE httpstep ADD CONSTRAINT c_httpstep_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE interface ADD CONSTRAINT c_interface_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE valuemap ADD CONSTRAINT c_valuemap_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE items ADD CONSTRAINT c_items_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE items ADD CONSTRAINT c_items_2 FOREIGN KEY (templateid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE items ADD CONSTRAINT c_items_3 FOREIGN KEY (valuemapid) REFERENCES valuemap (valuemapid);
ALTER TABLE items ADD CONSTRAINT c_items_4 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid);
ALTER TABLE items ADD CONSTRAINT c_items_5 FOREIGN KEY (master_itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE httpstepitem ADD CONSTRAINT c_httpstepitem_1 FOREIGN KEY (httpstepid) REFERENCES httpstep (httpstepid) ON DELETE CASCADE;
ALTER TABLE httpstepitem ADD CONSTRAINT c_httpstepitem_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE httptestitem ADD CONSTRAINT c_httptestitem_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE httptestitem ADD CONSTRAINT c_httptestitem_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE media_type_param ADD CONSTRAINT c_media_type_param_1 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE;
ALTER TABLE media_type_message ADD CONSTRAINT c_media_type_message_1 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE;
ALTER TABLE users_groups ADD CONSTRAINT c_users_groups_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE users_groups ADD CONSTRAINT c_users_groups_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE scripts ADD CONSTRAINT c_scripts_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid);
ALTER TABLE scripts ADD CONSTRAINT c_scripts_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid);
ALTER TABLE script_param ADD CONSTRAINT c_script_param_1 FOREIGN KEY (scriptid) REFERENCES scripts (scriptid) ON DELETE CASCADE;
ALTER TABLE operations ADD CONSTRAINT c_operations_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE;
ALTER TABLE opmessage ADD CONSTRAINT c_opmessage_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE opmessage ADD CONSTRAINT c_opmessage_2 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid);
ALTER TABLE opmessage_grp ADD CONSTRAINT c_opmessage_grp_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE opmessage_grp ADD CONSTRAINT c_opmessage_grp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid);
ALTER TABLE opmessage_usr ADD CONSTRAINT c_opmessage_usr_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE opmessage_usr ADD CONSTRAINT c_opmessage_usr_2 FOREIGN KEY (userid) REFERENCES users (userid);
ALTER TABLE opcommand ADD CONSTRAINT c_opcommand_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE opcommand ADD CONSTRAINT c_opcommand_2 FOREIGN KEY (scriptid) REFERENCES scripts (scriptid);
ALTER TABLE opcommand_hst ADD CONSTRAINT c_opcommand_hst_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE opcommand_hst ADD CONSTRAINT c_opcommand_hst_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid);
ALTER TABLE opcommand_grp ADD CONSTRAINT c_opcommand_grp_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE opcommand_grp ADD CONSTRAINT c_opcommand_grp_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid);
ALTER TABLE opgroup ADD CONSTRAINT c_opgroup_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE opgroup ADD CONSTRAINT c_opgroup_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid);
ALTER TABLE optemplate ADD CONSTRAINT c_optemplate_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE optemplate ADD CONSTRAINT c_optemplate_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid);
ALTER TABLE opconditions ADD CONSTRAINT c_opconditions_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE conditions ADD CONSTRAINT c_conditions_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE;
ALTER TABLE config ADD CONSTRAINT c_config_1 FOREIGN KEY (alert_usrgrpid) REFERENCES usrgrp (usrgrpid);
ALTER TABLE config ADD CONSTRAINT c_config_2 FOREIGN KEY (discovery_groupid) REFERENCES hstgrp (groupid);
ALTER TABLE triggers ADD CONSTRAINT c_triggers_1 FOREIGN KEY (templateid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE trigger_depends ADD CONSTRAINT c_trigger_depends_1 FOREIGN KEY (triggerid_down) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE trigger_depends ADD CONSTRAINT c_trigger_depends_2 FOREIGN KEY (triggerid_up) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE functions ADD CONSTRAINT c_functions_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE functions ADD CONSTRAINT c_functions_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE graphs ADD CONSTRAINT c_graphs_1 FOREIGN KEY (templateid) REFERENCES graphs (graphid) ON DELETE CASCADE;
ALTER TABLE graphs ADD CONSTRAINT c_graphs_2 FOREIGN KEY (ymin_itemid) REFERENCES items (itemid);
ALTER TABLE graphs ADD CONSTRAINT c_graphs_3 FOREIGN KEY (ymax_itemid) REFERENCES items (itemid);
ALTER TABLE graphs_items ADD CONSTRAINT c_graphs_items_1 FOREIGN KEY (graphid) REFERENCES graphs (graphid) ON DELETE CASCADE;
ALTER TABLE graphs_items ADD CONSTRAINT c_graphs_items_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE hostmacro ADD CONSTRAINT c_hostmacro_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE hosts_groups ADD CONSTRAINT c_hosts_groups_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE hosts_groups ADD CONSTRAINT c_hosts_groups_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE;
ALTER TABLE hosts_templates ADD CONSTRAINT c_hosts_templates_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE hosts_templates ADD CONSTRAINT c_hosts_templates_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE valuemap_mapping ADD CONSTRAINT c_valuemap_mapping_1 FOREIGN KEY (valuemapid) REFERENCES valuemap (valuemapid) ON DELETE CASCADE;
ALTER TABLE media ADD CONSTRAINT c_media_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE media ADD CONSTRAINT c_media_2 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE;
ALTER TABLE rights ADD CONSTRAINT c_rights_1 FOREIGN KEY (groupid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE rights ADD CONSTRAINT c_rights_2 FOREIGN KEY (id) REFERENCES hstgrp (groupid) ON DELETE CASCADE;
ALTER TABLE services_links ADD CONSTRAINT c_services_links_1 FOREIGN KEY (serviceupid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE services_links ADD CONSTRAINT c_services_links_2 FOREIGN KEY (servicedownid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE icon_map ADD CONSTRAINT c_icon_map_1 FOREIGN KEY (default_iconid) REFERENCES images (imageid);
ALTER TABLE icon_mapping ADD CONSTRAINT c_icon_mapping_1 FOREIGN KEY (iconmapid) REFERENCES icon_map (iconmapid) ON DELETE CASCADE;
ALTER TABLE icon_mapping ADD CONSTRAINT c_icon_mapping_2 FOREIGN KEY (iconid) REFERENCES images (imageid);
ALTER TABLE sysmaps ADD CONSTRAINT c_sysmaps_1 FOREIGN KEY (backgroundid) REFERENCES images (imageid);
ALTER TABLE sysmaps ADD CONSTRAINT c_sysmaps_2 FOREIGN KEY (iconmapid) REFERENCES icon_map (iconmapid);
ALTER TABLE sysmaps ADD CONSTRAINT c_sysmaps_3 FOREIGN KEY (userid) REFERENCES users (userid);
ALTER TABLE sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_2 FOREIGN KEY (iconid_off) REFERENCES images (imageid);
ALTER TABLE sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_3 FOREIGN KEY (iconid_on) REFERENCES images (imageid);
ALTER TABLE sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_4 FOREIGN KEY (iconid_disabled) REFERENCES images (imageid);
ALTER TABLE sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_5 FOREIGN KEY (iconid_maintenance) REFERENCES images (imageid);
ALTER TABLE sysmaps_links ADD CONSTRAINT c_sysmaps_links_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE sysmaps_links ADD CONSTRAINT c_sysmaps_links_2 FOREIGN KEY (selementid1) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE sysmaps_links ADD CONSTRAINT c_sysmaps_links_3 FOREIGN KEY (selementid2) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE sysmaps_link_triggers ADD CONSTRAINT c_sysmaps_link_triggers_1 FOREIGN KEY (linkid) REFERENCES sysmaps_links (linkid) ON DELETE CASCADE;
ALTER TABLE sysmaps_link_triggers ADD CONSTRAINT c_sysmaps_link_triggers_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE sysmap_element_url ADD CONSTRAINT c_sysmap_element_url_1 FOREIGN KEY (selementid) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE sysmap_url ADD CONSTRAINT c_sysmap_url_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE sysmap_user ADD CONSTRAINT c_sysmap_user_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE sysmap_user ADD CONSTRAINT c_sysmap_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE sysmap_usrgrp ADD CONSTRAINT c_sysmap_usrgrp_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE sysmap_usrgrp ADD CONSTRAINT c_sysmap_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE maintenances_hosts ADD CONSTRAINT c_maintenances_hosts_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE maintenances_hosts ADD CONSTRAINT c_maintenances_hosts_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE maintenances_groups ADD CONSTRAINT c_maintenances_groups_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE maintenances_groups ADD CONSTRAINT c_maintenances_groups_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE;
ALTER TABLE maintenances_windows ADD CONSTRAINT c_maintenances_windows_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE maintenances_windows ADD CONSTRAINT c_maintenances_windows_2 FOREIGN KEY (timeperiodid) REFERENCES timeperiods (timeperiodid) ON DELETE CASCADE;
ALTER TABLE expressions ADD CONSTRAINT c_expressions_1 FOREIGN KEY (regexpid) REFERENCES regexps (regexpid) ON DELETE CASCADE;
ALTER TABLE alerts ADD CONSTRAINT c_alerts_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE;
ALTER TABLE alerts ADD CONSTRAINT c_alerts_2 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE alerts ADD CONSTRAINT c_alerts_3 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE alerts ADD CONSTRAINT c_alerts_4 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE;
ALTER TABLE alerts ADD CONSTRAINT c_alerts_5 FOREIGN KEY (p_eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE alerts ADD CONSTRAINT c_alerts_6 FOREIGN KEY (acknowledgeid) REFERENCES acknowledges (acknowledgeid) ON DELETE CASCADE;
ALTER TABLE acknowledges ADD CONSTRAINT c_acknowledges_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE acknowledges ADD CONSTRAINT c_acknowledges_2 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE service_alarms ADD CONSTRAINT c_service_alarms_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE autoreg_host ADD CONSTRAINT c_autoreg_host_1 FOREIGN KEY (proxy_hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE dhosts ADD CONSTRAINT c_dhosts_1 FOREIGN KEY (druleid) REFERENCES drules (druleid) ON DELETE CASCADE;
ALTER TABLE dservices ADD CONSTRAINT c_dservices_1 FOREIGN KEY (dhostid) REFERENCES dhosts (dhostid) ON DELETE CASCADE;
ALTER TABLE dservices ADD CONSTRAINT c_dservices_2 FOREIGN KEY (dcheckid) REFERENCES dchecks (dcheckid) ON DELETE CASCADE;
ALTER TABLE graph_discovery ADD CONSTRAINT c_graph_discovery_1 FOREIGN KEY (graphid) REFERENCES graphs (graphid) ON DELETE CASCADE;
ALTER TABLE graph_discovery ADD CONSTRAINT c_graph_discovery_2 FOREIGN KEY (parent_graphid) REFERENCES graphs (graphid);
ALTER TABLE host_inventory ADD CONSTRAINT c_host_inventory_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE item_discovery ADD CONSTRAINT c_item_discovery_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE item_discovery ADD CONSTRAINT c_item_discovery_2 FOREIGN KEY (parent_itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE host_discovery ADD CONSTRAINT c_host_discovery_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE host_discovery ADD CONSTRAINT c_host_discovery_2 FOREIGN KEY (parent_hostid) REFERENCES hosts (hostid);
ALTER TABLE host_discovery ADD CONSTRAINT c_host_discovery_3 FOREIGN KEY (parent_itemid) REFERENCES items (itemid);
ALTER TABLE interface_discovery ADD CONSTRAINT c_interface_discovery_1 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE;
ALTER TABLE interface_discovery ADD CONSTRAINT c_interface_discovery_2 FOREIGN KEY (parent_interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE;
ALTER TABLE profiles ADD CONSTRAINT c_profiles_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE sessions ADD CONSTRAINT c_sessions_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE trigger_discovery ADD CONSTRAINT c_trigger_discovery_1 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE trigger_discovery ADD CONSTRAINT c_trigger_discovery_2 FOREIGN KEY (parent_triggerid) REFERENCES triggers (triggerid);
ALTER TABLE item_condition ADD CONSTRAINT c_item_condition_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE item_rtdata ADD CONSTRAINT c_item_rtdata_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE opinventory ADD CONSTRAINT c_opinventory_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE trigger_tag ADD CONSTRAINT c_trigger_tag_1 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE event_tag ADD CONSTRAINT c_event_tag_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE problem ADD CONSTRAINT c_problem_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE problem ADD CONSTRAINT c_problem_2 FOREIGN KEY (r_eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE problem_tag ADD CONSTRAINT c_problem_tag_1 FOREIGN KEY (eventid) REFERENCES problem (eventid) ON DELETE CASCADE;
ALTER TABLE tag_filter ADD CONSTRAINT c_tag_filter_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE tag_filter ADD CONSTRAINT c_tag_filter_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE;
ALTER TABLE event_recovery ADD CONSTRAINT c_event_recovery_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE event_recovery ADD CONSTRAINT c_event_recovery_2 FOREIGN KEY (r_eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE event_recovery ADD CONSTRAINT c_event_recovery_3 FOREIGN KEY (c_eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE corr_condition ADD CONSTRAINT c_corr_condition_1 FOREIGN KEY (correlationid) REFERENCES correlation (correlationid) ON DELETE CASCADE;
ALTER TABLE corr_condition_tag ADD CONSTRAINT c_corr_condition_tag_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE;
ALTER TABLE corr_condition_group ADD CONSTRAINT c_corr_condition_group_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE;
ALTER TABLE corr_condition_group ADD CONSTRAINT c_corr_condition_group_2 FOREIGN KEY (groupid) REFERENCES hstgrp (groupid);
ALTER TABLE corr_condition_tagpair ADD CONSTRAINT c_corr_condition_tagpair_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE;
ALTER TABLE corr_condition_tagvalue ADD CONSTRAINT c_corr_condition_tagvalue_1 FOREIGN KEY (corr_conditionid) REFERENCES corr_condition (corr_conditionid) ON DELETE CASCADE;
ALTER TABLE corr_operation ADD CONSTRAINT c_corr_operation_1 FOREIGN KEY (correlationid) REFERENCES correlation (correlationid) ON DELETE CASCADE;
ALTER TABLE task ADD CONSTRAINT c_task_1 FOREIGN KEY (proxy_hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE task_close_problem ADD CONSTRAINT c_task_close_problem_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE;
ALTER TABLE item_preproc ADD CONSTRAINT c_item_preproc_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE task_remote_command ADD CONSTRAINT c_task_remote_command_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE;
ALTER TABLE task_remote_command_result ADD CONSTRAINT c_task_remote_command_result_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE;
ALTER TABLE task_data ADD CONSTRAINT c_task_data_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE;
ALTER TABLE task_result ADD CONSTRAINT c_task_result_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE;
ALTER TABLE task_acknowledge ADD CONSTRAINT c_task_acknowledge_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE;
ALTER TABLE sysmap_shape ADD CONSTRAINT c_sysmap_shape_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE sysmap_element_trigger ADD CONSTRAINT c_sysmap_element_trigger_1 FOREIGN KEY (selementid) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE sysmap_element_trigger ADD CONSTRAINT c_sysmap_element_trigger_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE httptest_field ADD CONSTRAINT c_httptest_field_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE httpstep_field ADD CONSTRAINT c_httpstep_field_1 FOREIGN KEY (httpstepid) REFERENCES httpstep (httpstepid) ON DELETE CASCADE;
ALTER TABLE dashboard ADD CONSTRAINT c_dashboard_1 FOREIGN KEY (userid) REFERENCES users (userid);
ALTER TABLE dashboard ADD CONSTRAINT c_dashboard_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE dashboard_user ADD CONSTRAINT c_dashboard_user_1 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE;
ALTER TABLE dashboard_user ADD CONSTRAINT c_dashboard_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE dashboard_usrgrp ADD CONSTRAINT c_dashboard_usrgrp_1 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE;
ALTER TABLE dashboard_usrgrp ADD CONSTRAINT c_dashboard_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE dashboard_page ADD CONSTRAINT c_dashboard_page_1 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE;
ALTER TABLE widget ADD CONSTRAINT c_widget_1 FOREIGN KEY (dashboard_pageid) REFERENCES dashboard_page (dashboard_pageid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_1 FOREIGN KEY (widgetid) REFERENCES widget (widgetid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_2 FOREIGN KEY (value_groupid) REFERENCES hstgrp (groupid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_3 FOREIGN KEY (value_hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_4 FOREIGN KEY (value_itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_5 FOREIGN KEY (value_graphid) REFERENCES graphs (graphid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_6 FOREIGN KEY (value_sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_7 FOREIGN KEY (value_serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE widget_field ADD CONSTRAINT c_widget_field_8 FOREIGN KEY (value_slaid) REFERENCES sla (slaid) ON DELETE CASCADE;
ALTER TABLE task_check_now ADD CONSTRAINT c_task_check_now_1 FOREIGN KEY (taskid) REFERENCES task (taskid) ON DELETE CASCADE;
ALTER TABLE event_suppress ADD CONSTRAINT c_event_suppress_1 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE event_suppress ADD CONSTRAINT c_event_suppress_2 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE maintenance_tag ADD CONSTRAINT c_maintenance_tag_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE lld_macro_path ADD CONSTRAINT c_lld_macro_path_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE host_tag ADD CONSTRAINT c_host_tag_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE interface_snmp ADD CONSTRAINT c_interface_snmp_1 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE;
ALTER TABLE lld_override ADD CONSTRAINT c_lld_override_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE lld_override_condition ADD CONSTRAINT c_lld_override_condition_1 FOREIGN KEY (lld_overrideid) REFERENCES lld_override (lld_overrideid) ON DELETE CASCADE;
ALTER TABLE lld_override_operation ADD CONSTRAINT c_lld_override_operation_1 FOREIGN KEY (lld_overrideid) REFERENCES lld_override (lld_overrideid) ON DELETE CASCADE;
ALTER TABLE lld_override_opstatus ADD CONSTRAINT c_lld_override_opstatus_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_opdiscover ADD CONSTRAINT c_lld_override_opdiscover_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_opperiod ADD CONSTRAINT c_lld_override_opperiod_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_ophistory ADD CONSTRAINT c_lld_override_ophistory_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_optrends ADD CONSTRAINT c_lld_override_optrends_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_opseverity ADD CONSTRAINT c_lld_override_opseverity_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_optag ADD CONSTRAINT c_lld_override_optag_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_optemplate ADD CONSTRAINT c_lld_override_optemplate_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE lld_override_optemplate ADD CONSTRAINT c_lld_override_optemplate_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid);
ALTER TABLE lld_override_opinventory ADD CONSTRAINT c_lld_override_opinventory_1 FOREIGN KEY (lld_override_operationid) REFERENCES lld_override_operation (lld_override_operationid) ON DELETE CASCADE;
ALTER TABLE item_parameter ADD CONSTRAINT c_item_parameter_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE role_rule ADD CONSTRAINT c_role_rule_1 FOREIGN KEY (roleid) REFERENCES role (roleid) ON DELETE CASCADE;
ALTER TABLE role_rule ADD CONSTRAINT c_role_rule_2 FOREIGN KEY (value_moduleid) REFERENCES module (moduleid) ON DELETE CASCADE;
ALTER TABLE role_rule ADD CONSTRAINT c_role_rule_3 FOREIGN KEY (value_serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE token ADD CONSTRAINT c_token_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE token ADD CONSTRAINT c_token_2 FOREIGN KEY (creator_userid) REFERENCES users (userid);
ALTER TABLE item_tag ADD CONSTRAINT c_item_tag_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE httptest_tag ADD CONSTRAINT c_httptest_tag_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE sysmaps_element_tag ADD CONSTRAINT c_sysmaps_element_tag_1 FOREIGN KEY (selementid) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE report ADD CONSTRAINT c_report_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE report ADD CONSTRAINT c_report_2 FOREIGN KEY (dashboardid) REFERENCES dashboard (dashboardid) ON DELETE CASCADE;
ALTER TABLE report_param ADD CONSTRAINT c_report_param_1 FOREIGN KEY (reportid) REFERENCES report (reportid) ON DELETE CASCADE;
ALTER TABLE report_user ADD CONSTRAINT c_report_user_1 FOREIGN KEY (reportid) REFERENCES report (reportid) ON DELETE CASCADE;
ALTER TABLE report_user ADD CONSTRAINT c_report_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE report_user ADD CONSTRAINT c_report_user_3 FOREIGN KEY (access_userid) REFERENCES users (userid);
ALTER TABLE report_usrgrp ADD CONSTRAINT c_report_usrgrp_1 FOREIGN KEY (reportid) REFERENCES report (reportid) ON DELETE CASCADE;
ALTER TABLE report_usrgrp ADD CONSTRAINT c_report_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE report_usrgrp ADD CONSTRAINT c_report_usrgrp_3 FOREIGN KEY (access_userid) REFERENCES users (userid);
ALTER TABLE service_problem_tag ADD CONSTRAINT c_service_problem_tag_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE service_problem ADD CONSTRAINT c_service_problem_1 FOREIGN KEY (eventid) REFERENCES problem (eventid) ON DELETE CASCADE;
ALTER TABLE service_problem ADD CONSTRAINT c_service_problem_2 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE service_tag ADD CONSTRAINT c_service_tag_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE service_status_rule ADD CONSTRAINT c_service_status_rule_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE sla_schedule ADD CONSTRAINT c_sla_schedule_1 FOREIGN KEY (slaid) REFERENCES sla (slaid) ON DELETE CASCADE;
ALTER TABLE sla_excluded_downtime ADD CONSTRAINT c_sla_excluded_downtime_1 FOREIGN KEY (slaid) REFERENCES sla (slaid) ON DELETE CASCADE;
ALTER TABLE sla_service_tag ADD CONSTRAINT c_sla_service_tag_1 FOREIGN KEY (slaid) REFERENCES sla (slaid) ON DELETE CASCADE;
|