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
|
Network Working Group D. Brower, Editor
Request for Comments: 1697 The ASK Group, INGRES DBMS Development
Category: Standards Track B. Purvy, RDBMSMIB Working Group Chair
Oracle Corporation
A. Daniel
Informix Software, Inc.
M. Sinykin
J. Smith
Oracle Corporation
August 1994
Relational Database Management System (RDBMS)
Management Information Base (MIB) using SMIv2
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Table of Contents
1. Introduction .............................................. 1
2. The SNMPv2 Network Management Framework ................... 2
2.1 Object Definitions ....................................... 2
3. Overview .................................................. 2
3.1 Terminology .............................................. 3
3.2 Structure and Features ................................... 4
3.2.1 Tables ................................................. 4
3.2.2 Writable objects ....................................... 5
3.2.3 Traps .................................................. 5
4. Definitions ............................................... 6
5. Acknowledgements .......................................... 35
6. References ................................................ 36
7. Security Considerations ................................... 37
8. Authors' Addresses ........................................ 37
1. Introduction
This memo defines a portion of the Management Information Base (MIB)
for use with network management protocols in the Internet community.
In particular, it describes managed objects used for managing
relational database (RDBMS) implementations.
Brower, Purvy, Daniel, Sinykin & Smith [Page 1]
^L
RFC 1697 RDBMS-MIB August 1994
2. The SNMPv2 Network Management Framework
The SNMPv2 Network Management Framework consists of four major
components. They are:
o RFC 1442 [1] which defines the SMI, the mechanisms used for
describing and naming objects for the purpose of management.
o STD 17, RFC 1213 [2] defines MIB-II, the core set of managed
objects for the Internet suite of protocols.
o RFC 1445 [3] which defines the administrative and other
architectural aspects of the framework.
o RFC 1448 [4] which defines the protocol used for network
access to managed objects.
o RFC 1443 [5] which describes textual conventions for the
framework.
The framework permits new objects to be defined for the purpose of
experimentation and evaluation. In particular, the RDBMS-MIB can be
seen as an extension of
o RFC 1565 [6] which defines the MIB for monitoring network
service applications.
2.1. Object Definitions
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. Objects in the MIB are
defined using the subset of Abstract Syntax Notation One (ASN.1)
defined in the SMI. In particular, each object type is named by an
OBJECT IDENTIFIER, an administratively assigned name. The object
type together with an object instance serves to uniquely identify a
specific instantiation of the object. For human convenience, we
often use a textual string, termed the descriptor, to refer to the
object type.
3. Overview
The RDBMS-MIB contains objects that may be used to manage relational
database implementations. Specifically, it contains information on
installed databases, servers, and on the relation of databases and
servers. The terms used in this database are described below.
Brower, Purvy, Daniel, Sinykin & Smith [Page 2]
^L
RFC 1697 RDBMS-MIB August 1994
3.1. Terminology
Vendors and Products
are providers of database systems on a host. These vendors
may have more than one database product that is manageable
through this MIB. On a host, there may be systems from
multiple vendors, multiple systems from a single vendor, or
any other combination. There may be a private MIB for each
vendor, and this may be located using the PrivateMibOID
objects in some of the tables.
Databases
are collections of interrelated data organized according to a
schema to serve one or more applications. A database is, for
purposes of this MIB, a collection of tables whose
organization is based on the relational model. There may be
one or more databases available in each system on the host
from each product. In the MIB, data about databases is
captured in the rdbmsDbTable and the rdbmsDbInfoTable, each
with one row per database.
Relational Database Management System (RDBMS)
A collection of integrated services which support database
management and together support and control the creation, use
and maintenance of relational databases. Servers as defined
in this MIB provide the functions of the RDBMS.
Servers
are entities that provide access to databases. For this MIB,
servers are defined to be entities that may exist
independently of other servers. A server may or may not be a
single process, based on its independence from other
processes. In this MIB, information about servers is
captured in the rdbmsSvrTable, the rdbmsSvrInfoTable, each
with one row per server extending the applTable from the
APPLICATION-MIB of RFC 1565. The rdbmsSvrTable and
rdbmsSvrInfoTable are both indexed by the applIndex of that
MIB.
Associations
Inbound associations are local or remote conversations,
usually instances of the SQL CONNECT statement, as made
visible in servers. The MIB does not currently reveal
individual associations; there are association counters in
the dbmsSvrInfoTable and the applTable.
There are also relationships between servers and databases. All
obvious relationships are possible and supported:
Brower, Purvy, Daniel, Sinykin & Smith [Page 3]
^L
RFC 1697 RDBMS-MIB August 1994
o 1 database : 1 server
o 1 database : many servers
o many databases : 1 server
o many databases : many servers
3.2. Structure and Features
The information in this MIB module is organized into nine tables,
twelve potentially writable objects, and two traps, as follows.
3.2.1. Tables
o databases installed on a host/system (rdbmsDbTable)
o actively opened databases (rdbmsDbInfoTable)
o database configuration parameters (rdbmsDbParamTable)
o database limited resources (rdbmsDbLimitedResourceTable)
o database servers installed on a system (rdbmsSrvTable)
o active database servers (rdbmsSrvInfoTable)
o configuration parameters for a server (rdbmsSrvParamTable)
o server limited resources (rdbmsSrvLimitedResourceTable)
o relation of servers and databases on a host (rdbmsRelTable)
These entities have broad applicability among database systems, and
are enough for many monitoring tasks. They are far from adequate for
detailed management or performance monitoring of specific database
products. This gap is expected to be filled with vendor and product
specific MIBs addressing the entities that have not been codified
here.
Brower, Purvy, Daniel, Sinykin & Smith [Page 4]
^L
RFC 1697 RDBMS-MIB August 1994
3.2.2. Writable objects
The MIB requires no writable objects for conformance. There is no
expectation that RDBMS systems may be actively managed through this
MIB. However, the RDBMS-MIB supports the capability to modify the
following objects if the implementor so chooses.
o rdbmsDbContact
o rdbmsDbInfoSizeAllocated
o rdbmsDbParamCurrValue
o rdbmsDbParamComment rdbmsDbLimitedResourceLimit
o rdbmsDbLimitedResourceDescription
o rdbmsSrvContact
o rdbmsSrvInfoMaxInboundAssociations
o rdbmsSrvParamCurrValue
o rdbmsSrvParamComment
o rdbmsSrvLimitedResourceLimit
o rdbmsSrvLimitedResourceDescription
3.2.3. Traps
The RDBMS-MIB contains two traps:
o rdbmsStateChange
o rdbmsOutOfSpace
Brower, Purvy, Daniel, Sinykin & Smith [Page 5]
^L
RFC 1697 RDBMS-MIB August 1994
4. Definitions
RDBMS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Counter32, Gauge32, Integer32
FROM SNMPv2-SMI
DisplayString, DateAndTime, AutonomousType
FROM SNMPv2-TC
applIndex, applGroup
FROM APPLICATION-MIB
mib-2
FROM RFC1213-MIB;
rdbmsMIB MODULE-IDENTITY
LAST-UPDATED "9406150655Z"
ORGANIZATION "IETF RDBMSMIB Working Group"
CONTACT-INFO
" David Brower
Postal: The ASK Group, INGRES DBMS Development
1080 Marina Village Parkway
Alameda, CA 94501
US
Tel: +1 510 748 3418
Fax: +1 510 748 2770
E-mail: daveb@ingres.com"
DESCRIPTION
"The MIB module to describe objects for generic relational
databases."
::= { mib-2 39 }
rdbmsObjects OBJECT IDENTIFIER ::= { rdbmsMIB 1 }
----------------------------------------------------------------
rdbmsDbTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsDbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of databases installed on a system."
::= { rdbmsObjects 1 }
Brower, Purvy, Daniel, Sinykin & Smith [Page 6]
^L
RFC 1697 RDBMS-MIB August 1994
rdbmsDbEntry OBJECT-TYPE
SYNTAX RdbmsDbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a single database on the host. Whether a
particular database is represented by a row in rdbmsDbTable
may be dependent on the activity level of that database,
according to the product's implementation. An instance of
rdbmsRelState having the value active, other, or restricted
implies that an entry, corresponding to that instance, will
be present."
INDEX { rdbmsDbIndex }
::= { rdbmsDbTable 1 }
RdbmsDbEntry ::=
SEQUENCE {
rdbmsDbIndex INTEGER,
rdbmsDbPrivateMibOID OBJECT IDENTIFIER,
rdbmsDbVendorName DisplayString,
rdbmsDbName DisplayString,
rdbmsDbContact DisplayString
}
rdbmsDbIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A numeric index, unique among all the databases from all
products on this host. This value is a surrogate for the
conceptually unique key, which is {PrivateMibOID,
databasename}"
::= { rdbmsDbEntry 1 }
rdbmsDbPrivateMibOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authoritative identification for the private MIB for
this database, presumably based on the vendor, e.g., {
enterprises 111 <optional subidentifiers>} for Oracle
databases, {enterprises 757 <optional subidentifiers>} for
Ingres databases, { enterprises 897 <optional
subidentifiers>} for Sybase databases, etc.
If no OBJECT IDENTIFIER exists for the private MIB, attempts
Brower, Purvy, Daniel, Sinykin & Smith [Page 7]
^L
RFC 1697 RDBMS-MIB August 1994
to access this object will return noSuchName (SNMPv1)
or noSuchInstance (SNMPv2)."
::= { rdbmsDbEntry 2 }
rdbmsDbVendorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the vendor whose RDBMS manages this database,
for informational purposes."
::= { rdbmsDbEntry 3 }
rdbmsDbName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of this database, in a product specific format. The
product may need to qualify the name in some way to resolve
conflicts if it is possible for a database name to be
duplicated on a host. It might be necessary to construct a
hierarchical name embedding the RDBMS instance/installation
on the host, and/or the owner of the database. For instance,
'/test-installation/database-owner/database-name'."
::= { rdbmsDbEntry 4 }
rdbmsDbContact OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The textual identification of the contact person for this
managed database, together with information on how to contact
this person.
Note: if there is no server associated with this database, an
agent may need to keep this in other persistent storage,
e.g., a configuration file.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsDbEntry 5 }
Brower, Purvy, Daniel, Sinykin & Smith [Page 8]
^L
RFC 1697 RDBMS-MIB August 1994
----------------------------------------------------------------
rdbmsDbInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsDbInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of additional information about databases present
on the host."
::= { rdbmsObjects 2 }
rdbmsDbInfoEntry OBJECT-TYPE
SYNTAX RdbmsDbInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information that must be present if the database is actively
opened. If the database is not actively opened, then
attempts to access corresponding instances in this table may
result in either noSuchName (SNMPv1) or noSuchInstance
(SNMPv2). 'Actively opened' means at least one of the
rdbmsRelState entries for this database in the rdbmsRelTable
is active(2)."
INDEX { rdbmsDbIndex }
::= { rdbmsDbInfoTable 1 }
RdbmsDbInfoEntry ::=
SEQUENCE {
rdbmsDbInfoProductName DisplayString,
rdbmsDbInfoVersion DisplayString,
rdbmsDbInfoSizeUnits INTEGER,
rdbmsDbInfoSizeAllocated INTEGER,
rdbmsDbInfoSizeUsed INTEGER,
rdbmsDbInfoLastBackup DateAndTime
}
rdbmsDbInfoProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The textual product name of the server that created or last
restructured this database. The format is product specific."
::= { rdbmsDbInfoEntry 1 }
rdbmsDbInfoVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
Brower, Purvy, Daniel, Sinykin & Smith [Page 9]
^L
RFC 1697 RDBMS-MIB August 1994
STATUS current
DESCRIPTION
"The version number of the server that created or last
restructured this database. The format is product specific."
::= { rdbmsDbInfoEntry 2 }
rdbmsDbInfoSizeUnits OBJECT-TYPE
SYNTAX INTEGER {
bytes(1),
kbytes(2),
mbytes(3),
gbytes(4),
tbytes(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identification of the units used to measure the size of this
database in rdbmsDbInfoSizeAllocated and rdbmsDbInfoSizeUsed.
bytes(1) indicates individual bytes, kbytes(2) indicates
units of kilobytes, mbytes(3) indicates units of megabytes,
gbytes(4) indicates units of gigabytes, and tbytes(5)
indicates units of terabytes. All are binary multiples -- 1K
= 1024. If writable, changes here are reflected in the get
values of the associated objects."
::= { rdbmsDbInfoEntry 3 }
rdbmsDbInfoSizeAllocated OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The estimated size of this database (in
rdbmsDbInfoSizeUnits), which is the disk space that has been
allocated to it and is no longer available to users on this
host. rdbmsDbInfoSize does not necessarily indicate the
amount of space actually in use for database data. Some
databases may support extending allocated size, and others
may not.
Note that a compliant agent does not need to
allow write access to this object."
-- Note: computing SizeAllocated may be expensive, and SNMP
-- agents might cache the value to increase performance.
::= { rdbmsDbInfoEntry 4 }
Brower, Purvy, Daniel, Sinykin & Smith [Page 10]
^L
RFC 1697 RDBMS-MIB August 1994
rdbmsDbInfoSizeUsed OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The estimated size of this database, in rdbmsDbInfoSizeUnits,
which is actually in use for database data."
-- Note: computing SizeUsed may be expensive, and SNMP
-- agents might cache the value to increase performance.
::= { rdbmsDbInfoEntry 5 }
rdbmsDbInfoLastBackup OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time that the latest complete or partial backup
of the database was taken. If a database has never been
backed up, then attempts to access this object will
result in either noSuchName (SNMPv1) or noSuchInstance
(SNMPv2)."
::= { rdbmsDbInfoEntry 6 }
----------------------------------------------------------------
rdbmsDbParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsDbParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of configuration parameters for a database.
Entries should be populated according to the following
guidelines:
(1) The value should be specified through administrative
(human) intervention.
(2) It should be configured on a per-database basis.
(3) One of the following is true:
(a) The parameter has a non-numeric value;
(b) The current value is numeric, but it only changes due
to human intervention;
(c) The current value is numeric and dynamic, but the
RDBMS does not track access/allocation failures
related to the parameter;
(d) The current value is numeric and dynamic, the
RDBMS tracks changes in access/allocation failures
related to the parameter, but the failure has no
significant impact on RDBMS performance or
Brower, Purvy, Daniel, Sinykin & Smith [Page 11]
^L
RFC 1697 RDBMS-MIB August 1994
availability.
(e) The current value is numeric and dynamic, the
RDBMS tracks changes in access/allocation failures
related to the parameter, the failure has
significant impact on RDBMS performance or
availability, and is shown in the
rdbmsDbLimitedResource table."
::= { rdbmsObjects 3 }
rdbmsDbParamEntry OBJECT-TYPE
SYNTAX RdbmsDbParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a single configuration parameter for a database.
Parameters with single values have a subindex value of one.
If the parameter is naturally considered to contain a
variable number of members of a class, e.g. members of the
DBA user group, or files which are part of the database, then
it must be presented as a set of rows. If, on the other
hand, the parameter represents a set of choices from a class,
e.g. the permissions on a file or the options chosen out of
the set of all options allowed, AND is guaranteed to always
fit in the 255 character length of a DisplayString, then it
may be presented as a comma separated list with a subindex
value of one. Zero may not be used as a subindex value.
If the database is not actively opened, then attempts
to access corresponding instances in this table may result in
either noSuchName (SNMPv1) or noSuchInstance (SNMPv2).
'Actively opened' means at least one of the
rdbmsRelState entries for this database in the rdbmsRelTable
is active(2)."
INDEX { rdbmsDbIndex, rdbmsDbParamName, rdbmsDbParamSubIndex }
::= { rdbmsDbParamTable 1 }
RdbmsDbParamEntry ::=
SEQUENCE {
rdbmsDbParamName DisplayString,
rdbmsDbParamSubIndex INTEGER,
rdbmsDbParamID AutonomousType,
rdbmsDbParamCurrValue DisplayString,
rdbmsDbParamComment DisplayString
}
rdbmsDbParamName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS not-accessible
Brower, Purvy, Daniel, Sinykin & Smith [Page 12]
^L
RFC 1697 RDBMS-MIB August 1994
STATUS current
DESCRIPTION
"The name of a configuration parameter for a database. This
name is product-specific. The length is limited to 64
characters to constrain the number of sub-identifiers needed
for instance identification (and to minimize network
traffic)."
::= { rdbmsDbParamEntry 1 }
rdbmsDbParamSubIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The subindex value for this parameter. If the parameter is
naturally considered to contain a variable number of members
of a class, e.g. members of the DBA user group, or files
which are part of the database, then it must be presented as
a set of rows. If, on the other hand, the parameter
represents a set of choices from a class, e.g. the
permissions on a file or the options chosen out of the set of
all options allowed, AND is guaranteed to always fit in the
255 character length of a DisplayString, then it may be
presented as a comma separated list with a subindex value of
one. Zero may not be used as a value."
::= { rdbmsDbParamEntry 2 }
rdbmsDbParamID OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the parameter which may be described in some other
MIB (e.g., an enterprise-specific MIB module). If there is
no ID for this rdbmsDbParamName, attempts to access this
object will return noSuchName (SNMPv1) or noSuchInstance
(SNMPv2)."
::= { rdbmsDbParamEntry 3 }
rdbmsDbParamCurrValue OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value for a configuration parameter now in effect, the
actual setting for the database. While there may multiple
values in the temporal domain of interest (for instance, the
Brower, Purvy, Daniel, Sinykin & Smith [Page 13]
^L
RFC 1697 RDBMS-MIB August 1994
value to take effect at the next restart), this is the
current setting.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsDbParamEntry 4 }
rdbmsDbParamComment OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Annotation which describes the purpose of a configuration
parameter or the reason for a particular parameter's
setting.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsDbParamEntry 5 }
----------------------------------------------------------------
rdbmsDbLimitedResourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsDbLimitedResourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of limited resources that are kept per-database."
::= { rdbmsObjects 4 }
rdbmsDbLimitedResourceEntry OBJECT-TYPE
SYNTAX RdbmsDbLimitedResourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a single limited resource kept per-database.
A limited resource has maximum use determined by a parameter
that might or might not be changeable at run time, or visible
in the rdbmsDbParamTable. Examples would be the number of
available locks, or disk space on a partition. Arrays of
resources are supported through an integer sub index, which
should have the value of one for single-instance names.
Limited resources that are shared across databases, are best
put in the rdbmsSvrLimitedResourceTable instead of this one.
Brower, Purvy, Daniel, Sinykin & Smith [Page 14]
^L
RFC 1697 RDBMS-MIB August 1994
If the database is not actively opened, then attempts to
access corresponding instances in this table may result in
either noSuchName (SNMPv1) or noSuchInstance (SNMPv2).
'Actively opened' means at least one of the rdbmsRelState
entries for this database in the rdbmsRelTable is active(2)."
INDEX { rdbmsDbIndex, rdbmsDbLimitedResourceName }
::= { rdbmsDbLimitedResourceTable 1 }
RdbmsDbLimitedResourceEntry ::=
SEQUENCE {
rdbmsDbLimitedResourceName DisplayString,
rdbmsDbLimitedResourceID AutonomousType,
rdbmsDbLimitedResourceLimit INTEGER,
rdbmsDbLimitedResourceCurrent INTEGER,
rdbmsDbLimitedResourceHighwater INTEGER,
rdbmsDbLimitedResourceFailures Counter32,
rdbmsDbLimitedResourceDescription DisplayString
}
rdbmsDbLimitedResourceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the resource, for instance 'global locks' or
'locks for the FOO database', or 'data space on /dev/rdsk/5s0
for FOO'. The length is limited to 64 characters to constrain
the number of sub-identifiers needed for instance
identification (and to minimize network traffic)."
::= { rdbmsDbLimitedResourceEntry 1 }
rdbmsDbLimitedResourceID OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the resource which may be described in some other
MIB (e.g., an enterprise-specific MIB module). If there is
no ID for this rdbmsDbLimitedResourceName, attempts to access
this object will return noSuchName (SNMPv1) or noSuchInstance
(SNMPv2)."
::= { rdbmsDbLimitedResourceEntry 2 }
rdbmsDbLimitedResourceLimit OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-write
STATUS current
Brower, Purvy, Daniel, Sinykin & Smith [Page 15]
^L
RFC 1697 RDBMS-MIB August 1994
DESCRIPTION
"The maximum value the resource use may attain.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsDbLimitedResourceEntry 3 }
rdbmsDbLimitedResourceCurrent OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value for the resource."
::= { rdbmsDbLimitedResourceEntry 4 }
rdbmsDbLimitedResourceHighwater OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value of the resource seen since applUpTime
was reset for the earliest server which has the database
actively opened.
If there are two servers with the database open, and the
oldest one dies, the proper way to invalidate the value is by
resetting sysUpTime."
::= { rdbmsDbLimitedResourceEntry 5 }
rdbmsDbLimitedResourceFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the system wanted to exceed the limit of
the resource since applUpTime was reset for the earliest
server which has the database actively opened.
If there are two servers with the DB open, and the
oldest one dies, the proper way to invalidate the value is by
resetting sysUpTime."
::= { rdbmsDbLimitedResourceEntry 6 }
rdbmsDbLimitedResourceDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
Brower, Purvy, Daniel, Sinykin & Smith [Page 16]
^L
RFC 1697 RDBMS-MIB August 1994
DESCRIPTION
"A description of the resource and the meaning of the integer
units used for Limit, Current, and Highwater.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsDbLimitedResourceEntry 7 }
----------------------------------------------------------------
rdbmsSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of database servers running or installed
on a system."
::= { rdbmsObjects 5 }
rdbmsSrvEntry OBJECT-TYPE
SYNTAX RdbmsSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a single database server. A server is an
independent entity that provides access to one or more
databases. Failure of one does not affect access to
databases through any other servers. There might be one or
more servers providing access to a database. A server may be
a 'process' or collection of 'processes', as interpreted by
the product."
INDEX { applIndex }
::= { rdbmsSrvTable 1 }
RdbmsSrvEntry ::=
SEQUENCE {
rdbmsSrvPrivateMibOID OBJECT IDENTIFIER,
rdbmsSrvVendorName DisplayString,
rdbmsSrvProductName DisplayString,
rdbmsSrvContact DisplayString
}
rdbmsSrvPrivateMibOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
Brower, Purvy, Daniel, Sinykin & Smith [Page 17]
^L
RFC 1697 RDBMS-MIB August 1994
"The authoritative identification for the private MIB for this
server, presumably based on the vendor, e.g., { enterprises
111 <optional subidentifiers>} for Oracle servers, {
enterprises 757 <optional subidentifiers>} for Ingres
servers, { enterprises 897 <optional subidentifiers>} for
Sybase servers, etc.
If no OBJECT IDENTIFIER exists for the private MIB, attempts
to access this object will return noSuchName (SNMPv1)
or noSuchInstance (SNMPv2)."
::= { rdbmsSrvEntry 1 }
rdbmsSrvVendorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the vendor whose RDBMS manages this database,
for informational purposes."
::= { rdbmsSrvEntry 2 }
rdbmsSrvProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product name of this server. This is normally the
vendor's formal name for the product, in product specific
format."
::= { rdbmsSrvEntry 3 }
rdbmsSrvContact OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The textual identification of the contact person for this
managed server, together with information on how to contact
this person.
Note: if there is no active server associated with this
object, an agent may need to keep this in other persistent
storage, e.g., a configuration file.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsSrvEntry 4 }
Brower, Purvy, Daniel, Sinykin & Smith [Page 18]
^L
RFC 1697 RDBMS-MIB August 1994
----------------------------------------------------------------
rdbmsSrvInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsSrvInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of additional information about database servers.
Entries in this table correspond to applications in the
APPLICATION-MIB applTable. Some objects in that table are
application-specific. When they are associated with an RDBMS
server in this table, the objects have the following
meanings.
applName - The name of this server, i.e., the process or
group of processes providing access to this database. The
exact format will be product and host specific.
applVersion - The version number of this server, in product
specific format.
applOperStatus - up(1) means operational and available for
general use. down(2) means the server is not available for
use, but is known to the agent. The other states have broad
meaning, and may need to be supplemented by the vendor
private MIB. Halted(3) implies an administrative state of
unavailability. Congested(4) implies a resource or or
administrative limit is prohibiting new inbound associations.
The 'available soon' description of restarting(5) may include
an indeterminate amount of recovery.
applLastChange is the time the agent noticed the most recent
change to applOperStatus.
applInboundAssociation is the number of currently active
local and remote conversations (usually SQL connects).
applOutboundAssociations is not provided by this MIB.
applAccumulatedInboundAssociations is the total number of
local and remote conversations started since the server came
up.
applAccumulatedOutbound associations is not provided by this
MIB.
applLastInboundActivity is the time the most recent local or
Brower, Purvy, Daniel, Sinykin & Smith [Page 19]
^L
RFC 1697 RDBMS-MIB August 1994
remote conversation was attempted or disconnected.
applLastOutboundActivity is not provided by this MIB.
applRejectedInboundAssociations is the number of local or
remote conversations rejected by the server for
administrative reasons or because of resource limitations.
applFailedOutboundAssociations is not provided by this MIB."
::= { rdbmsObjects 6 }
rdbmsSrvInfoEntry OBJECT-TYPE
SYNTAX RdbmsSrvInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information that must be present for a single 'up' database
server, with visibility determined by the value of the
corresponding applOperStatus object. If an instance of
applOperStatus is not up(1), then attempts to access
corresponding instances in this table may result in either
noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned
by the agent."
INDEX { applIndex }
::= { rdbmsSrvInfoTable 1 }
RdbmsSrvInfoEntry ::=
SEQUENCE {
rdbmsSrvInfoStartupTime DateAndTime,
rdbmsSrvInfoFinishedTransactions Gauge32,
rdbmsSrvInfoDiskReads Counter32,
rdbmsSrvInfoDiskWrites Counter32,
rdbmsSrvInfoLogicalReads Counter32,
rdbmsSrvInfoLogicalWrites Counter32,
rdbmsSrvInfoPageWrites Counter32,
rdbmsSrvInfoPageReads Counter32,
rdbmsSrvInfoDiskOutOfSpaces Counter32,
rdbmsSrvInfoHandledRequests Counter32,
rdbmsSrvInfoRequestRecvs Counter32,
rdbmsSrvInfoRequestSends Counter32,
rdbmsSrvInfoHighwaterInboundAssociations Gauge32,
rdbmsSrvInfoMaxInboundAssociations Gauge32
}
rdbmsSrvInfoStartupTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
Brower, Purvy, Daniel, Sinykin & Smith [Page 20]
^L
RFC 1697 RDBMS-MIB August 1994
STATUS current
DESCRIPTION
"The date and time at which this server was last started."
::= { rdbmsSrvInfoEntry 1 }
rdbmsSrvInfoFinishedTransactions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transactions visible to this server that have
been completed by either commit or abort. Some database
operations, such as read-only queries, may not result in the
creation of a transaction."
::= { rdbmsSrvInfoEntry 2 }
rdbmsSrvInfoDiskReads OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of reads of database files issued to the
operating system by this server since startup. Numbers are
not comparable between products. What constitutes a
readand how it is accounted is product-specific."
::= { rdbmsSrvInfoEntry 3 }
rdbmsSrvInfoLogicalReads OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of logical reads of database files made
internally by this server since startup. The values of this
object and those of rdbmsSrvInfoDiskReads reveal the effect
of caching on read operation. Numbers are not comparable
between products, and may only be meaningful when aggregated
across all servers sharing a common cache."
::= { rdbmsSrvInfoEntry 4 }
rdbmsSrvInfoDiskWrites OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of writes to database files issued to the
operating system by this server since startup. Numbers are
not comparable between products."
Brower, Purvy, Daniel, Sinykin & Smith [Page 21]
^L
RFC 1697 RDBMS-MIB August 1994
::= { rdbmsSrvInfoEntry 5 }
rdbmsSrvInfoLogicalWrites OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of times parts of the database files have
been marked 'dirty' and in need of writing to the disk. This
value and rdbmsSrvInfoDiskWrites give some indication of the
effect of 'write-behind' strategies in reducing the number of
disk writes compared to database operations. Because the
writes may be done by servers other than those marking the
parts of the database files dirty, these values may only be
meaningful when aggregated across all servers sharing a
common cache. Numbers are not comparable between products."
::= { rdbmsSrvInfoEntry 6 }
rdbmsSrvInfoPageReads OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of pages in database files read by this
server since startup. 'Pages' are product specific units of
disk i/o operations. This value, along with
rdbmsSrvInfoDiskReads, reveals the effect of any grouping
read-ahead that may be used to enhance performance of some
queries, such as scans."
::= { rdbmsSrvInfoEntry 7}
rdbmsSrvInfoPageWrites OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of pages in database files written by this
server since startup. Pages are product-specific units of
disk I/O. This value, with rdbmsSrvInfoDiskWrites, shows the
effect of write strategies that collapse logical writes of
contiguous pages into single calls to the operating system."
::= { rdbmsSrvInfoEntry 8 }
rdbmsSrvInfoDiskOutOfSpaces OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
Brower, Purvy, Daniel, Sinykin & Smith [Page 22]
^L
RFC 1697 RDBMS-MIB August 1994
"The total number of times the server has been unable to
obtain disk space that it wanted, since server startup. This
would be inspected by an agent on receipt of an
rdbmsOutOfSpace trap."
::= { rdbmsSrvInfoEntry 9 }
rdbmsSrvInfoHandledRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of requests made to the server on inbound
associations. The meaning of 'requests' is product specific,
and is not comparable between products.
This is intended to encapsulate high level semantic
operations between clients and servers, or between peers.
For instance, one request might correspond to a 'select' or
an 'insert' statement. It is not intended to capture disk
i/o described in rdbmsSrvInfoDiskReads and
rdbmsSrvInfoDiskWrites."
::= { rdbmsSrvInfoEntry 10 }
rdbmsSrvInfoRequestRecvs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of receive operations made processing any requests
on inbound associations. The meaning of operations is product
specific, and is not comparable between products.
This is intended to capture lower-level i/o operations than
shown by HandledRequests, between clients and servers, or
between peers. For instance, it might roughly correspond to
the amount of data given with an 'insert' statement. It is
not intended to capture disk i/o described in
rdbmsSrvInfoDiskReads and rdbmsSrvInfoDiskWrites."
::= { rdbmsSrvInfoEntry 11 }
rdbmsSrvInfoRequestSends OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of send operations made processing requests
handled on inbound associations. The meaning of operations
is product specific, and is not comparable between products.
Brower, Purvy, Daniel, Sinykin & Smith [Page 23]
^L
RFC 1697 RDBMS-MIB August 1994
This is intended to capture lower-level i/o operations than
shown by HandledRequests, between between clients and
servers, or between peers. It might roughly correspond to
the number of rows returned by a 'select' statement. It is
not intended to capture disk i/o described in DiskReads."
::= { rdbmsSrvInfoEntry 12 }
rdbmsSrvInfoHighwaterInboundAssociations OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The greatest number of inbound associations that have been
simultaneously open to this server since startup."
::= { rdbmsSrvInfoEntry 13 }
rdbmsSrvInfoMaxInboundAssociations OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The greatest number of inbound associations that can be
simultaneously open with this server. If there is no limit,
then the value should be zero.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsSrvInfoEntry 14 }
----------------------------------------------------------------
rdbmsSrvParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsSrvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of configuration parameters for a server. Entries
should be populated according to the following guidelines:
(1) The value should be specified through administrative
(human) intervention.
(2) It should be configured on a per-server or a more global
basis, with duplicate entries for each server sharing
use of the parameter.
(3) One of the following is true:
(a) The parameter has a non-numeric value;
(b) The current value is numeric, but it only changes due
to human intervention;
Brower, Purvy, Daniel, Sinykin & Smith [Page 24]
^L
RFC 1697 RDBMS-MIB August 1994
(c) The current value is numeric and dynamic, but the
RDBMS does not track access/allocation failures
related to the parameter;
(d) The current value is numeric and dynamic, the
RDBMS tracks changes in access/allocation failures
related to the parameter, but the failure has no
significant impact on RDBMS performance or
availability.
(e) The current value is numeric and dynamic, the
RDBMS tracks changes in access/allocation failures
related to the parameter, the failure has
significant impact on RDBMS performance or
availability, and is shown in the
rdbmsSrvLimitedResource table."
::= { rdbmsObjects 7 }
rdbmsSrvParamEntry OBJECT-TYPE
SYNTAX RdbmsSrvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a single configuration parameter for a server.
Parameters with single values have a subindex value of one.
If the parameter is naturally considered to contain a
variable number of members of a class, e.g. members of the
DBA user group, or tracepoints active in the server, then it
must be presented as a set of rows. If, on the other hand,
the parameter represents a set of choices from a class,
e.g. the permissions on a file or the options chosen out of
the set of all options allowed, AND is guaranteed to always
fit in the 255 character length of a DisplayString, then it
may be presented as a comma separated list with a subindex
value of one. Zero may not be used as a subindex value.
Entries for a server must be present if the value of the
corresponding applOperStatus object is up(1). If an instance
of applOperStatus is not up(1), then attempts to access
corresponding instances in this table may result in either
noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned
by the agent."
INDEX { applIndex, rdbmsSrvParamName, rdbmsSrvParamSubIndex }
::= { rdbmsSrvParamTable 1 }
RdbmsSrvParamEntry ::=
SEQUENCE {
rdbmsSrvParamName DisplayString,
rdbmsSrvParamSubIndex INTEGER,
rdbmsSrvParamID AutonomousType,
Brower, Purvy, Daniel, Sinykin & Smith [Page 25]
^L
RFC 1697 RDBMS-MIB August 1994
rdbmsSrvParamCurrValue DisplayString,
rdbmsSrvParamComment DisplayString
}
rdbmsSrvParamName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of a configuration parameter for a server. This
name is product-specific. The length is limited to 64
characters to constrain the number of sub-identifiers needed
for instance identification (and to minimize network
traffic)."
::= { rdbmsSrvParamEntry 1 }
rdbmsSrvParamSubIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The subindex value for this parameter. If the parameter is
naturally considered to contain a variable number of members
of a class, e.g. members of the DBA user group, or files
which are part of the database, then it must be presented as
a set of rows. If, on the other hand, the parameter
represents a set of choices from a class, e.g. the
permissions on a file or the options chosen out of the set of
all options allowed, AND is guaranteed to always fit in the
255 character length of a DisplayString, then it may be
presented as a comma separated list with a subindex value of
one. Zero may not be used as a value."
::= { rdbmsSrvParamEntry 2 }
rdbmsSrvParamID OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the parameter which may be described in some
other MIB. If there is no ID for this rdbmsSrvParamName,
attempts to access this object will return noSuchName
(SNMPv1) or noSuchInstance (SNMPv2)."
::= { rdbmsSrvParamEntry 3 }
rdbmsSrvParamCurrValue OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
Brower, Purvy, Daniel, Sinykin & Smith [Page 26]
^L
RFC 1697 RDBMS-MIB August 1994
STATUS current
DESCRIPTION
"The value for a configuration parameter now in effect, the
actual setting for the server. While there may multiple
values in the temporal domain of interest (for instance, the
value to take effect at the next restart), this is the
current setting.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsSrvParamEntry 4 }
rdbmsSrvParamComment OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Annotation which describes the purpose of a configuration
parameter or the reason for a particular parameter's
setting.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsSrvParamEntry 5 }
----------------------------------------------------------------
rdbmsSrvLimitedResourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsSrvLimitedResourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of limited resources relevant to a server."
::= { rdbmsObjects 8 }
rdbmsSrvLimitedResourceEntry OBJECT-TYPE
SYNTAX RdbmsSrvLimitedResourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a single limited resource kept by the server.
A limited resource has maximum use determined by a parameter
that might or might not changeable at run time, or visible in
the rbmsSrvParamTable. Examples would be the number of
available locks, or number of concurrent executions allowed
in a server. Arrays of resources are supported through an
Brower, Purvy, Daniel, Sinykin & Smith [Page 27]
^L
RFC 1697 RDBMS-MIB August 1994
integer subindex, which should have the value of one for
single-instance names.
Limited resources that are shared across servers or databases
are best duplicated in this table across
all servers accessing the resource."
INDEX { applIndex, rdbmsSrvLimitedResourceName }
::= { rdbmsSrvLimitedResourceTable 1 }
RdbmsSrvLimitedResourceEntry ::=
SEQUENCE {
rdbmsSrvLimitedResourceName DisplayString,
rdbmsSrvLimitedResourceID AutonomousType,
rdbmsSrvLimitedResourceLimit INTEGER,
rdbmsSrvLimitedResourceCurrent INTEGER,
rdbmsSrvLimitedResourceHighwater INTEGER,
rdbmsSrvLimitedResourceFailures Counter32,
rdbmsSrvLimitedResourceDescription DisplayString
}
rdbmsSrvLimitedResourceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the resource, for instance 'threads' or
'semaphores', or 'buffer pages'"
::= { rdbmsSrvLimitedResourceEntry 1 }
rdbmsSrvLimitedResourceID OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the resource which may be described in some other
MIB. If there is no ID for this rdbmsSrvLimitedResourceName,
attempts to access this object will return noSuchName
(SNMPv1) or noSuchInstance (SNMPv2)."
::= { rdbmsSrvLimitedResourceEntry 2 }
rdbmsSrvLimitedResourceLimit OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-write
STATUS current
Brower, Purvy, Daniel, Sinykin & Smith [Page 28]
^L
RFC 1697 RDBMS-MIB August 1994
DESCRIPTION
"The maximum value the resource use may attain.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsSrvLimitedResourceEntry 3 }
rdbmsSrvLimitedResourceCurrent OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value for the resource."
::= { rdbmsSrvLimitedResourceEntry 4 }
rdbmsSrvLimitedResourceHighwater OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value of the resource seen since applUpTime
was reset."
::= { rdbmsSrvLimitedResourceEntry 5 }
rdbmsSrvLimitedResourceFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the system wanted to exceed the limit of
the resource since applUpTime was reset."
::= { rdbmsSrvLimitedResourceEntry 6 }
rdbmsSrvLimitedResourceDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A description of the resource and the meaning of the integer
units used for Limit, Current, and Highwater.
Note that a compliant agent does not need to
allow write access to this object."
::= { rdbmsSrvLimitedResourceEntry 7 }
Brower, Purvy, Daniel, Sinykin & Smith [Page 29]
^L
RFC 1697 RDBMS-MIB August 1994
----------------------------------------------------------------
rdbmsRelTable OBJECT-TYPE
SYNTAX SEQUENCE OF RdbmsRelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table relating databases and servers present on a host."
::= { rdbmsObjects 9 }
rdbmsRelEntry OBJECT-TYPE
SYNTAX RdbmsRelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry relating a single database server to a single
database to which it may provide access. The table is
indexed first by the index of rdbmsDbTable, and then
rdbmsSrvTable, so that all servers capable of providing
access to a given database may be found by SNMP traversal
operations (get-next and get-bulk). The makeup of this table
depends on the product's architecture, e.g. if it is one
server - many databases, then each server will appear n
times, where n is the number of databases it may access, and
each database will appear once. If the architecture is one
database - many servers, then each server will appear once
and each database will appear n times, where n is the number
of servers that may be accessing it."
INDEX { rdbmsDbIndex, applIndex }
::= { rdbmsRelTable 1 }
RdbmsRelEntry ::=
SEQUENCE {
rdbmsRelState INTEGER,
rdbmsRelActiveTime DateAndTime
}
rdbmsRelState OBJECT-TYPE
SYNTAX INTEGER{
other(1),
active(2),
available(3),
restricted(4),
unavailable(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
Brower, Purvy, Daniel, Sinykin & Smith [Page 30]
^L
RFC 1697 RDBMS-MIB August 1994
"The state of this server's access to this database.
Active(2) means the server is actively using the database.
Available(3) means the server could use the database if
necessary. Restricted(4) means the database is in some
administratively determined state of less-than-complete
availability. Unavailable(5) means the database is not
available through this server. Other(1) means the
database/server is in some other condition, possibly
described in the vendor private MIB."
::= { rdbmsRelEntry 1 }
rdbmsRelActiveTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time the database was made active by the server. If an
instance of rdbmsRelState is not active(1), then attempts to
access the corresponding instance of this object may result
in either noSuchName (SNMPv1) or noSuchInstance (SNMPv2)
being returned by the agent."
::= { rdbmsRelEntry 2 }
----------------------------------------------------------------
-- Well known resources for which limits, high water marks,
-- access or allocation failures, and current levels of use
-- are possibly available in either the rdbmsDbLimitedResources
-- or the rdbmsSrvLimitedResources tables.
rdbmsWellKnownLimitedResources OBJECT IDENTIFIER
::= { rdbmsObjects 10 }
rdbmsLogSpace OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Storage allocated for redo and undo logs."
::= { rdbmsWellKnownLimitedResources 1}
----------------------------------------------------------------
rdbmsTraps OBJECT IDENTIFIER ::= { rdbmsMIB 2 }
rdbmsStateChange NOTIFICATION-TYPE
OBJECTS { rdbmsRelState }
STATUS current
DESCRIPTION
Brower, Purvy, Daniel, Sinykin & Smith [Page 31]
^L
RFC 1697 RDBMS-MIB August 1994
"An rdbmsStateChange trap signifies that one of the database
server/databases managed by this agent has changed its
rdbmsRelState in a way that makes it less accessible for use.
For these purposes, both active(2) and available(3) are
considered fully accessible. The state sent with the trap is
the new, less accessible state."
::= { rdbmsTraps 1 }
rdbmsOutOfSpace NOTIFICATION-TYPE
OBJECTS { rdbmsSrvInfoDiskOutOfSpaces }
STATUS current
DESCRIPTION
"An rdbmsOutOfSpace trap signifies that one of the database
servers managed by this agent has been unable to allocate
space for one of the databases managed by this agent. Care
should be taken to avoid flooding the network with these
traps."
::= { rdbmsTraps 2 }
----------------------------------------------------------------
-- compliance information
rdbmsConformance OBJECT IDENTIFIER ::= { rdbmsMIB 3 }
rdbmsCompliances OBJECT IDENTIFIER ::= { rdbmsConformance 1 }
rdbmsGroups OBJECT IDENTIFIER ::= { rdbmsConformance 2 }
-- compliance statements
rdbmsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which
implement the RDBMS MIB"
MODULE HOST-RESOURCES-MIB
MANDATORY-GROUPS { hrSystem }
MODULE APPLICATION-MIB
MANDATORY-GROUPS { applGroup }
MODULE RDBMS-MIB
MANDATORY-GROUPS { rdbmsGroup }
GROUP rdbmsGroup
DESCRIPTION
"The rdbmsGroup is mandatory, but no write access
to objects is required for compliance."
OBJECT rdbmsDbContact
MIN-ACCESS read-only
DESCRIPTION
Brower, Purvy, Daniel, Sinykin & Smith [Page 32]
^L
RFC 1697 RDBMS-MIB August 1994
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsDbParamCurrValue
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsDbParamComment
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsDbLimitedResourceLimit
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsDbLimitedResourceDescription
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsSrvContact
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsSrvInfoMaxInboundAssociations
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsSrvParamCurrValue
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsSrvParamComment
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsSrvLimitedResourceLimit
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
OBJECT rdbmsSrvLimitedResourceDescription
Brower, Purvy, Daniel, Sinykin & Smith [Page 33]
^L
RFC 1697 RDBMS-MIB August 1994
MIN-ACCESS read-only
DESCRIPTION
"A compliant system need not allow write-access to this
object."
::= { rdbmsCompliances 1 }
-- units of conformance
-- rdbmsStateChange and rdbmsOutOfSpace traps are omitted
-- intentionally. They are not required or part of any
-- conformance group.
rdbmsGroup OBJECT-GROUP
OBJECTS {
rdbmsDbPrivateMibOID, rdbmsDbVendorName,
rdbmsDbName, rdbmsDbContact,
rdbmsDbInfoProductName, rdbmsDbInfoVersion,
rdbmsDbInfoSizeUnits, rdbmsDbInfoSizeAllocated,
rdbmsDbInfoSizeUsed, rdbmsDbInfoLastBackup,
rdbmsDbParamCurrValue, rdbmsDbParamComment,
rdbmsDbLimitedResourceLimit,
rdbmsDbLimitedResourceCurrent,
rdbmsDbLimitedResourceHighwater,
rdbmsDbLimitedResourceFailures,
rdbmsDbLimitedResourceDescription,
rdbmsSrvPrivateMibOID, rdbmsSrvVendorName,
rdbmsSrvProductName, rdbmsSrvContact,
rdbmsSrvInfoStartupTime,
rdbmsSrvInfoFinishedTransactions,
rdbmsSrvInfoDiskReads, rdbmsSrvInfoDiskWrites,
rdbmsSrvInfoLogicalReads, rdbmsSrvInfoLogicalWrites,
rdbmsSrvInfoPageReads, rdbmsSrvInfoPageWrites,
rdbmsSrvInfoHandledRequests,
rdbmsSrvInfoRequestRecvs, rdbmsSrvInfoRequestSends,
rdbmsSrvInfoHighwaterInboundAssociations,
rdbmsSrvInfoMaxInboundAssociations,
rdbmsSrvParamCurrValue, rdbmsSrvParamComment,
rdbmsSrvLimitedResourceLimit,
rdbmsSrvLimitedResourceCurrent,
rdbmsSrvLimitedResourceHighwater,
Brower, Purvy, Daniel, Sinykin & Smith [Page 34]
^L
RFC 1697 RDBMS-MIB August 1994
rdbmsSrvLimitedResourceFailures,
rdbmsSrvLimitedResourceDescription,
rdbmsRelState, rdbmsRelActiveTime }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation of an
RDBMS entity."
::= { rdbmsGroups 1 }
----------------------------------------------------------------
END
5. Acknowledgements
This document was produced by the IETF RDBMSMIB working group:
Mark Allyn, Boeing
Virinder Batra, IBM
Jonathan Bauer DEC
Janice Befu, Network General
Gerard Berthet, Independence Technologies
Dave Brower, Ingres
Barry Bruins, Network General
David Campbell, Digital Equipment Corporation
Stephen Campbell, European Database Consulting
Jeff Case SNMP Research
Dave Crocker Silicon Graphics
Tony Daniel, Informix
Craig DeNoce, Sybase
Howard Dernehl, Ingres/Data General
Mike Hartstein, Oracle
Vijay Iyer, Independence Technologies
Britt Johnston, Progress
Bill Kehoe, Sybase
Deirdre Kostick, Bellcore
Cheryl Krupczak, Empire Technologies
Damien Lindauer, Microsoft
Ivan Lui, Informix
John McCormack, Tandem Computers Inc.
David Meldrum, Sybase
David Morandi, Red Brick Systems
Bob Natale, American Computer
Diana Parr, Gupta
David Perkins, Synoptics
Randy Presuhn, Peer Networks
Brian Promes, Novell
Brower, Purvy, Daniel, Sinykin & Smith [Page 35]
^L
RFC 1697 RDBMS-MIB August 1994
Bob Purvy, Oracle
Roger Reinsch, IBM
Marshall T. Rose, Dover Beach Consulting
Jon Saperia, DEC
Marc Sinykin, Oracle
Jay Smith, Oracle
Mike Sorsen, Edward D. Jones & Co.
Bob Taylor, Tandem
Maria Valls, IBM
Bert Wijnen, IBM
Stan Wong, IBM
6. References
[1] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser, "Structure
of Management Information for version 2 of the Simple Network
Management Protocol (SNMPv2)", RFC 1442, SNMP Research, Inc.,
Hughes LAN Systems, Dover Beach Consulting, Inc., Carnegie Mellon
University, April 1993.
[2] McCloghrie, K., and M. Rose, "Management Information Base for
Network Management of TCP/IP-based internets - MIB-II", STD 17,
RFC 1213, Hughes LAN Systems, Performance Systems International,
March 1991.
[3] Galvin, J., and K. McCloghrie, "Administrative Model for version
2 of the Simple Network Management Protocol (SNMPv2)", RFC 1445,
Trusted Information Systems, Hughes LAN Systems, April 1993.
[4] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser, "Protocol
Operations for version 2 of the Simple Network Management
Protocol (SNMPv2)", RFC 1448, SNMP Research, Inc., Hughes LAN
Systems, Dover Beach Consulting, Inc., Carnegie Mellon
University, April 1993.
[5] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser, "Textual
Conventions for version 2 of the Simple Network Management
Protocol (SNMPv2)", RFC 1443, SNMP Research, Inc., Hughes LAN
Systems, Dover Beach Consulting, Inc., Carnegie Mellon
University, April 1993.
[6] Kille, S., WG Chair, and N. Freed, Editor, "The Network Services
Monitoring MIB", RFC 1565, ISODE Consortium, Innosoft, January
1994.
Brower, Purvy, Daniel, Sinykin & Smith [Page 36]
^L
RFC 1697 RDBMS-MIB August 1994
7. Security Considerations
Security issues are not discussed in this memo.
8. Authors' Addresses
David Brower
The ASK Group, INGRES DBMS Development
1080 Marina Village Parkway
Alameda, CA, 94501
US
Phone: +1 510 748 3418
EMail: daveb@ingres.com
Bob Purvy
Oracle Corporation
500 Oracle Parkway
Redwood Shores, CA 94065
US
Phone: +1 415 506 2972
EMail: bpurvy@us.oracle.com
Anthony Daniel
Informix Software, Inc.
921 S.W. Washington Street
Portland, OR 97205
US
Phone: +1 503 221 2638
EMail: anthony@informix.com
Marc Sinykin
Oracle Corporation
400 Oracle Parkway
Redwood Shores, CA 94065
US
Phone: +1 415 506 2477
EMail: msinykin@us.oracle.com
Brower, Purvy, Daniel, Sinykin & Smith [Page 37]
^L
RFC 1697 RDBMS-MIB August 1994
Jay Smith
Oracle Corporation
400 Oracle Parkway
Redwood Shores, CA 94065
US
Phone: +1 415 506 6239
EMail: jaysmith@us.oracle.com
Brower, Purvy, Daniel, Sinykin & Smith [Page 38]
^L
|