|
Description  |
|
|
BACKGROUND OF THE INVENTION
FIELD OF THE INVENTION
This invention relates generally to voice, video and data network
management and in particular, to a network management system employing a
relational data base repository.
COMMUNICATION NETWORKS
The present invention focuses on data communication networks ranging from
small networks within a single building or campus-like complex to large
geographically distributed networks spanning the nation. A network
comprises network or nodal switches (nodes) interconnected by transmission
links. Wire, cable, radio, satellite or fiber optic units form the links.
Various modes of accessing networks exist. A user may have a hard-wired
dedicated port into a switched node. Users may share an access link and
wait to transmit when polled; or may dial into a particular access port.
Special arrangements exist for users who first must access a private small
network and then require connection to a large, geographically distributed
network or sets of networks. The small network could be a digital private
branch exchange (PBX) with dial-in access or a local area network (LAN)
that might operate in a token-passing (polling) mode or a contention
(random) mode.
Where interconnected networks incorporate a variety of data sources, the
interconnections are done through gateways. These gateways provide the
necessary protocol translation and interfacing between disparate networks
of possible different bit rates (bandwidth) and packet-handling
capabilities, and different architectural constructs. Gateways exist as
separate intelligent systems (nodes) or as embedded circuits within
network switches.
The network may deliver traffic correctly and to the right place, yet the
system may not operate correctly. Each computer and each application
program in the computer, may require a different communication access
method and protocol. Data must be presented to the end users in a form
that can be recognized and manipulated. The end user terminal or computer
must format the received data, regulate the data rate, control order of
arrival etc. These tasks and others like them have nothing to do with the
operation of the network. Software generally provides the added controls
required at either end of the network.
LAYERED COMMUNICATION ARCHITECTURES
Layered communication architectures such as IBM's Systems Network
Architecture (SNA) and the ISO Reference Model for Open Systems
Interconnection (OSI) and etc. provide for sequences of required tasks.
The purpose of the layered architectures is to provide for reliable, timely
communication between disparate end users. The architecture may be
visualized in two groupings: (1) a higher-layer grouping of layers that
involves the setting up and maintaining a connection (session in SNA
terms) between end users, and the syntax and semantics of the data
exchanged, and (2) a lower grouping of layers that provide the network
transport capability end to end. By presenting the present invention in a
SNA context, only background information about SNA will be discussed.
NETWORK ADDRESSABLE UNITS (NAU'S)
End user devices in a SNA network include terminal users, workstations,
application programs, printers, graphics display devices, and memory
storage devices. End user devices access a SNA network through access
ports or connection resource managers called logical units or LU's.
LU'S
The LU's at either end establish the session of logical connections over
which end-user data is transported. One LU can support several end users
and can support sessions to multiple LU's.
Various types of LU's carry on particular types of sessions. Type 1 LU's
support communication between an application program and data processing
terminals; type 2 LU's support application programs communicating with a
single display terminal in an interactive mode; type 3 LU's support
application programs communicating with a single printer; type 4 LU's
enable data-processing terminals connected as peripheral nodes to
communicate and type 6 LU's correspond to program-to-program
communication.
PU'S AND SSCP'S
To help in managing the network, SNA employs two other resource managers, a
physical unit or PU, which manages the communication resources at a given
node (these comprise the data links and communication channel serving the
node), and a system services control point or SSCP, which manages all
resources within a subset of a network called a domain.
All three units (LU's, PU's and SSCP's) comprise the group of network
addressable units (NAU's). Each unit having a unique network address
permits addressing from anywhere within or from outside the network.
PU's, together with an SSCP that oversees them, ensure availability and
readiness of the communication links. The SSCP helps in setting up and
taking down a session, provides control and maintenance support for its
domain, maintains a directory and routing tables and communicates with the
other SSCP's across the network.
Interconnecting nodes form the SNA network. Each node contains one PU,
responsible for management of its links and channels. It may contain many
LU's. SNA has four kinds of nodes, each designated as a different PU type.
PU type 1, is made up of low-function terminals and controllers. PU type 2
consists of high function terminals, distributed processors, and cluster
controllers (devices which control terminals, display systems and other
lower-function devices). These two groups of nodes form peripheral nodes.
These nodes do not participate directly in the operation of the transport
network. They attach to another group of nodes called sub-area nodes.
The sub-area nodes include PU type 4 nodes which are communication
controllers running on a Network Control Program (NCP) and PU type 5 nodes
which are usually host computers. These type 4 and 5 PU's are
interconnected to form the transport network. The SSCP resides in a PU
type 5. One SSCP controls a domain made up of PU type 4, 2 and 1 nodes. A
PU type 4 may reside in two domains. Although a node generally corresponds
to a system or device, it is possible to have more than one node (multiple
PU's) in a given physical device.
RELATIONAL DATA BASES
Relational data bases stored in a computer on direct-access storage (such
as disks) permit the central processing unit (CPU) of a computer to
exploit the relationships within a reasonable span of time. Multiple users
can share the same accurate, consistent, up-to-date information
efficiently from remote and local locations.
In the corporate world, data suffer from incompatibilities across different
computer platforms, different peripheral devices, and manipulations of
non-data base software packages in different and un-integrated formats.
Some corporations which have transferred their manual operations into
computerized systems to offer economical, high speed, accurate data
processing have created various difficulties for users to obtain,
integrate, or transform their databases.
The integration issue fostered generalized data base management systems
(DBMS). The DBMS, in turn, required a formal way to express the data's
logical structure and use. Hence, data models resulted for representing
fundamental real-world ideas necessary for structuring the databases that
an enterprise uses.
Data base designers have employed data structure diagrams (not flow
diagrams) to present general pictures of record types (entities) and
relationships of tables represented by boxes in the diagram. Usually, a
relationship between any two record types is not symmetrical. An entity
refers to any object (a person, place or thing) or an event (purchase date
of the computer, date of employment}. Hence, the designers have developed
various symbols to show zero-to-one, one-to-one, zero-to-many,
one-to-many, many-to-many type relationships between entities.
The relational data model provides three features: structure, integrity,
and manipulation. From a user viewpoint, the structure of the relational
model represents a collection of tables called relations.
STRUCTURE
The rows of the tables called tuples or records represent instances or
occurrences of the entity or relationship. The columns or fields of the
tables show the attributes of the entity. A domain of the attribute equals
the set of all possible values that can appear in a given column. Hence, a
table associates with another table by attribute values in their
respective columns that come from a common domain. If the attribute has
unique and defined (non-null) values for each tuple, the attribute may
serve as a primary key of one of the entities involved.
INTEGRITY
Referential integrity provides a set of rules for defining the relationship
between two tables, a "parent" and a "dependent" table. The parent table
defines the domain of the dependent table.
The first rule of referential integrity dictates how to define the parent
table. Step (1) Include an attribute in the parent table that uniquely
identifies each row in the table. Sequentially assigned numbers achieves
uniqueness. The assigned number becomes a unique identifier. This
attribute cannot be null. Step (2) Define this attribute as the "Primary
Key" for the table. Step (3) Define a unique index for the table that uses
the attribute. These three steps complete the definition of the parent
table and its referential integrity components. A dependent table can now
be defined.
The second rule dictates how to define the dependent table's relationship
to the parent table. Step (1) Include in the definition of the dependent
table an attribute which matches, in both size and format, the primary key
of the parent table. Define this attribute as a "Foreign Key" from the
dependent table to the parent table. To further illustrate the difference
between a primary key and a foreign key, consider the following examples
of Department and Employee Tables: DEPARTMENT (DEPT#, DNAME, MGR#);
EMPLOYEE (EMP#, ENAME, DEPT#). The DEPT# column in the DEPARTMENT table
uniquely identifies departments; i.e., it is a primary key. Employees are
assigned to departments, as shown in the DEPT# column of the Employee
table. The DEPT# values in the Employee table reference (refer to ) DEPT#
values in the Department table. This makes EMPLOYEE.DEPT# a foreign key.
This completes the definiton of the referential integrity between the
parent and dependent tables.
Referential integrity regulates the deletion of rows from the parent table
and the addition of rows to the dependent table. The foreign key in each
row of the dependent table must exactly match the primary key of a row in
the parent table.
The referential integrity rule states that the foreign key in the dependent
table can either be null, i.e, the dependent row does not relate with any
row in the parent table, or it must exactly match one of the unique
primary key values of the parent table. To insert a row into the dependent
table, its foreign key value (which points to the parent table) must be
null or match a primary key in the parent table.
Enforcement of the integrity rules prevents orphan rows. This is done by
(1) restricting the deletion of parent table rows that are pointed to by
dependent table rows, or (2) by deleting all the dependent table rows
which point to the deleted parent table row, or (3) by setting the pointer
in the dependent table rows to null when deleting the parent table row and
(4) by prohibiting the insertion of dependent table rows that point to
parent table rows that do not exist.
STRUCTURED QUERY LANGUAGE
Data manipulations of the tables fall in two major classes, relational
algebra and relational calculus. The relational algebra consists of the
set operators-union, intersection, and difference, along with special
operators such as select, project and join. Taking one operator with one
or more operand permits producing a new relation as its result.
Relational calculus stems from predicate calculus. To query the database,
one writes a mathematical logic statement which affirms or denies one or
more mathematical results. The data manipulation language Structured Query
Language (SQL) used for IBM's DB2 systems contains a blend of relational
algebra and relational calculus.
With diverse networks, data bases and a variety of network management
functions used by different organizations within the enterprise with
little sharing of data between them, we searched for ways of establishing
a common source for all network-related data, enterprisewide. That search
ended in the network repository system of the present invention.
SUMMARY OF THE INVENTION
The present invention concerns a novel relational data base system for
managing a data communications network by searching, addressing,
retrieving and manipulating records of tables stored in a central
repository containing network information.
The records contain functional and physical attributes of nodes and links.
The functional records are stored in tables and are related in a
relational data base format that models the architectural configuration of
the network. The physical records are also stored in relational tables and
are used to represent the physical entities comprising the network.
A novel relational data base table employs a novel relational key called a
nonstandard reference (NSR) which is used to relate functional records
with corresponding physical records. The NSR permits arbitrary association
of network functional and physical entities stored in the central
repository without disruptions to the searching, addressing, retrieval and
manipulating capabilities of the management system. Also, NSRs are used to
relate physical records to administrative and change information.
BRIEF DESCRIPTION OF THE DRAWING
Note: Reference numbers in the figures have three or more digits with the
two least significant digits representing numbers within the figure and
the more significant digits representing the figure number.
FIG. 1 depicts in block diagram form a network of an enterprise employing
groupings of SNA and other types of network nodes with one of the
groupings of nodes (Node I, Domain I) containing the repository of this
invention;
FIG. 2 illustrates a relational data base model of a communication network
of the enterprise of FIG. 1 separated into logical (functional) and
physical tables which is illustrative of a major portion of the repository
of this invention;
FIG. 3 illustrates relational data base tables of miscellaneous tables
which augment certain designated physical tables of FIG. 2;
FIG. 4 depicts relational data base tables containing data for use in
making changes in the state of the network configuration;
FIG. 5 depicts DBMS table operations using Primary Keys (PK), Foreign Keys
(FK) and Non-Standard References (NSR) to perform functional to physical
mapping using the Physical Implementation (Pimpl) table;
FIG. 6 depicts DBMS table operations using PK's, FK's and NSR's for
determining which physical terminal implements several functional
terminals;
FIG. 7 depicts DBMS table operations using PK's and FK's for determining
the cost of a particular modem;
FIG. 8 depicts DBMS table operations using PK's and FK's for determining
the model number of several terminals;
FIG. 9 illustrates DBMS table operations using PK's and FK's to determine
the PU's that connect to a certain line;
FIG. 10 depicts DBMS table operations using PK's and FK's to determine
channels on a certain T1 node; FIG. 11 depicts DBMS table operations using
PK's and FK's to determine the location of a certain host computer;
FIG. 12 illustrates DBMS tables using standard and nonstandard references
to add a CCU to an existing line;
FIG. 13 illustrates a stored SQL query used to locate all the CCU'S
connected to a certain line; and
FIG. 14 illustrates the display viewed by a user who desired the
information from the query of FIG. 13.
DETAILED DESCRIPTION OF A PREFERRED EMBODIMENT
With reference to FIG. 1, this figure depicts in block diagram form a SNA
and other types of network element groupings of nodal switches and
communication links of a distributed communication network 100 of an
enterprise. This grouping of nodes in FIG. 1 spans just two domains for
illustrative purposes; however, the principles of this invention apply to
networks comprising many more domains.
Within the groupings of nodal switches and communications links, components
of a relational database repository exist in sub-area 102. A host computer
104 and disk drives 106 for mass storage of data form the major physical
components in which the repository resides.
The host 104 uses a group of IBM licensed system programs, to perform
machine dependent system functions, to control the network and to operate
the repository. Although the repository could be located in domain 2 or
some other domain, in this illustration it resides in domain 1.
Within each domain, one host computer contains the SSCP NAU. The SSCP,
normally one per domain, has complete knowledge of, and control over type
4, 2 and 1 nodes within the domain. In FIG. 1, the SSCP operates in host
104 in domain 1 and in host 110 in domain 2. These SSCP's reside in IBM's
Virtual Telecommunications Access Method (VTAM}software 108 that controls
the flow of data to various designated users.
Host 104 also contains a software operating system for large mainframes
called Multiple Virtual Storage Enterprise Systems Architecture (MVS/ESA)
112. MVS/ESA controls the execution of programs.
Other system programs not considered a part of the operating system include
utility routines, a loader and a translator. The utility routines perform
frequently used functions needed by many application programs (programs
written by or for the user) such as sorting data base relations or copying
data or a program from a tape to disk, etc.
The loader loads programs into memory for execution. The translators; e.g.,
a compiler translates high level language programs (COBOL, FORTRAN) into
machine language and assemblers translate mnemonics of assembly language
programs into machine language.
For repository operations, host 104 employs other programs such as Database
2 (DB2) 114, an IBM relational data base management system (RDBMS), that
uses SQL for relational data base management systems designed to support
interactive queries, report writing, and end user computing; Query
Management Facility interface (QMF) 118, an IBM program, that accesses
tables, allows ad hoc SQL queries, prepares reports and executes
procedures for a series of queries and reports, and prepares data for
graphics in response to suitable input data; Common Business Oriented
Language (COBOL) compiler 120 a program that translates COBOL programs
into machine language; Customer Information Control System (CICS) 124 an
IBM program that processes transactions submitted from a user terminal,
accesses the proper data bases as dictated by the transactions and
displays the results of the transactions on the user's terminal.
In addition to the type 5 nodes, FIG. 1 depicts subarea channel links
(channel) 128 that connects type 4 and 5 nodes, the type 4 nodes being
front-end processors (FEPS) 130 running Network Control Programs (NCP)
132. NCP's provide advanced communications functions to PU type 2
peripheral nodes 134 (CCU's, Remote Job Entry units) and PU type 1
peripheral nodes 136 (terminals, printers); and peripheral links (cables)
138, low and medium speed telecom circuits 140 and high speed circuits
142.
Although DB2 is used in this preferred embodiment, this invention can be
implemented using other true relational data base systems.
FUNCTIONAL/PHYSICAL DATA STRUCTURE DIAGRAMS
The repository stores information about the SNA network and its nodal
switches and communication links. However, it became important to allow
the repository to store information about all network elements regardless
of the network architecture used to manage them. That requirement meant
completely separating descriptions of physical devices from descriptions
of functional entities they represent. The distinction between functional
entities and physical devices is critical because the repository must
store data in as general a way as possible to allow for future growth.
While SNA is shown, the invention which allows any-to-any connectivity is
applicable to NON-SNA architecture, LANS and other OSI based networks as
well. A network management system (NMS) can view and manipulate functional
(or logical) entities, but such viewing and manipulating has no meaning
outside of the context of that system since the network architecture
defines the entities.
FIG. 2 depicts a logical (functional)/physical diagram of tables containing
an array of information of the various nodes and communication links of
multiple networks similar to the one of FIG. 1. These tables, stored in a
network repository of a centralized network management system (CNMS),
contain data which enable system enterprise management of multiple
networks.
Illustratively, this invention, in its present form, permits managing from
a central location 15 data centers, 40 FEP's and about 35,000 devices from
a variety of vendors. Services provided from this central location include
inventory, configuration, change, accounting and security management.
GENERAL FUNCTIONAL TABLES (GF)
FIG. 2, upper portion 202, depicts relational tables that contain the
functional name and related information of NAU's and links logically
interconnected according to a network architecture using conventional
database symbols to depict connectivity. The upper portion 202 depicts a
relational-table diagram of the logical network.
Note that the relations in the upper portion 202 show that a host node
record from the func host table 206 (containing a primary key) may
optionally connect to one-to-many other host nodes by a related record
(containing a foreign key) in an associative host-to-host table 216.
Also, the diagram shows that a host node record from the func host table
206 optionally connects to one-to-many FEP's by related records in an
associative Host-To-FEP table 218. The diagram depicts similar relations
for the other NAU's; i.e. func FEP 208, func line 210, func CCU 212, func
terminal 214 and func RJE 216 tables. RJE's are not NAU's, but shown in
the upper portion 202 because RJE's perform important network functions.
GENERAL PHYSICAL TABLES (GP)
The lower portion 204 depicts relational tables representing actual
physical hardware and subsidiary equipment that implement the NAU's and
links listed in the upper portion 202. These tables not interconnected in
a network architecture scheme, connect in a top-down structural manner,
using conventional symbols and reference numbers in some of the tables, to
show relationship with other relational tables defined infra.
Note, from a hierarchical point of view, that the relations in the lower
portion 204 show a T1 node record from a physical T1 node table 220 has a
one-to-many connection to a T1 nest table 222 and several records in the
T1 nest table 222 point to the T1 node record of table 220; each T1 nest
record has a one-to-many connection to a T1 slot table 224 and many
records in the T1 slot table 224 refer back to a T1 nest record; and each
T1 slot record requires a one-to-many connection to a T1 channel table 226
and records in the physical T1 channel table 226 refer back to a record in
the T1 slot table 224.
MISCELLANEOUS TABLES (MI)
The one (1) in the T1 Node table 220 expands information about T1 nodes to
include administrative information in the tables shown in FIG. 3.
Additional information about location, financial, manufacturer, vendor,
service, person in charge of and hardware category of the T1 Node exist in
these tables.
The same administrative information applies for each piece of hardware in
the lower tables of FIG. 2 with a one (1) shown in the box; i.e., such
information exists in the data base for matrix switch 256, printer 288,
FEP 294, CCU 293, Host 291 and all other hardware with tables that include
the (1) notation.
IMPLEMENTATION PLAN TABLES (IP)
The tables of FIG. 4 show how the hardware and administrative portions of
the data base fit in with a request handling portion. The tables of FIG. 4
provide the link between implementation plan and changes in the state of
the network hardware. The two (2) in the Terminal Model Table 286 of FIG.
2 expands information about terminals to include administrative and change
information in the tables shown in FIG. 4. The same administrative and
change information applies for each piece of hardware in the lower tables
of FIG. 2 with a two (2) shown in the box; i.e. such information exists in
the data base for Cable Model 274, Terminal Model 286 and Printer Model
280. These tables permit adding or deleting hardware to maintain the
current state of the network configuration. For each request, there are
zero-to-many implementation change records, each of which has a
non-standard-reference which points to a record affected by that request.
The non-standard-references and the employment of the implementation
tables will be explained infra.
FUNCTIONAL TO PHYSICAL MAPPING
The repository permits functional to physical device mapping. Mapping
refers to relating functional devices as seen by the network management
system to the pieces of hardware that implement them. This is important
since a user should have means for identifying faulty hardware when a
network problem occurs. Mapping permits a user to determine whether a
physical terminal has a history of trouble reports even though the
terminal has been known by more than one functional name.
Also, mapping permits determining whether a functional entity exists as one
or more physical entities, or a given functional entity exists physically
in more than one form, or whether a single physical device implements one
or more functional entities.
For another case where mapping becomes important, consider a network
sending data between a FEP and a CCU; i.e., from a subarea node to a
peripheral node. Under SNA, a line represents a logical entity because
VTAM views lines separately from the physical hardware forming the actual
path between the two devices; and VTAM does not maintain any information
about the hardware. The line has its own SNA identification and SNA
characteristics, such as initial status. These features known only by VTAM
do not characterize line hardware. Furthermore, the line may be
implemented in many ways; e.g., two modems connected to a leased circuit,
a T1 connection, or a satellite connection. Each implementation involves
several pieces of physical hardware, and VTAM doesn't know (or need to
know) about them. Hence, a SNA line (and more generally, any functional
entity defined by an architecture) is independent of the physical hardware
implementing it. In addition, there is no guarantee that a particular type
of hardware will always implement a particular type of logical entity.
Therefore, the repository should not store a physical element description
with any logical entity.
CONNECTIVITY
The repository deals with functional (logical) and physical connections.
Functional connections relate functional entities to one another; e.g., in
FIG. 2 a user node (stored in the repository table Func Terminal table
214) connects to a host application (stored in the repository usage table
231) via node usage table 230.
Physical connections relate physical entities to each other; e.g., the
cable (stored in repository cable table 276) runs between a physical
terminal (stored in repository table 282) and a cluster controller table
293 (stored in the repository table 273).
It is impossible to anticipate future hardware configurations. Therefore,
the repository must maintain connection data in as general a manner as
possible. Therefore, no assumptions exist about what type of device
connects to another device. This generality will allow the repository to
maintain information also about non-SNA architectures and devices when
incorporated.
NON-STANDARD REFERENCES
Most of the repository tables follow standard relational theory. However,
given the arbitrariness inherent in physical connectivity and
physical-to-logical mapping, a number of relationships have foreign keys
in a dependent table referencing records in an arbitrary parent table.
Since IBM's DB2 does not support such arbitrary references, we departed
from standard relational theory. This departure brought about references,
used in this invention, called non-standard references (NSR's). NSR's
consist of a pair of attributes: a parent table name and a foreign key
that refers to a row of that parent table.
OBTAINING UNIQUE KEYS
Every row in the database has a unique key. When adding a new row to a
table, the row receives an assigned, system-generated, unique number. An
application program 119 of FIG. 1 generates it.
STATUS FLAGS
One of the primary functions of the repository is to store information
about requests for establishing connections to the SNA network. Users
submit requests, and the information concerning the request becomes the
basis for specifying changes to the state of the network. Until processing
is complete (including installing or removing circuits and equipment and
updating the appropriate network control program), remains "pending".
Hence, in column 3, for each record in the tables that represents any part
of the configuration of the network affected, a status flag shows an
"active", "pending", or "pending delete" state. The implementation plan
tables of FIG. 4, mentioned supra, permit handling network change
requests.
THE PHYSICAL IMPLEMENTATION TABLE (PIMPL)
With reference again to FIG. 2, as mentioned supra, each box in the figure
represents a relational table. The tables in the top half store
information about logical (functional) entities and those in the bottom
half contain data about physical entities. Because of the many ways to
implement functional and physical entities, this inventive system provides
a way to do both the in the following manner: (a) if given a functional
entity, find the physical entity or entities that implement it; and (b) if
given a physical entity, find the related functional entity or entities
that it implements.
Placing functional identifiers or foreign keys in physical entity tables or
vice versa to accomplish the above, would require many columns, use
excessive space and would create an inflexible solution. To remedy this
problem, the physical implementation table or "Pimpl" resulted. The
repository of this invention makes all references between the functional
and physical entities via Pimpl.
With reference to FIG. 2, note the cardinalities represented by the
relational symbols pointing to Pimpl. Each physical device is part of
zero-to-many functional structures and zero-to-many physical devices
implement each functional structure. Note that the "crow's foot" points to
the table, Pimpl, containing a foreign key. Pimpl must include at least
one foreign key from a functional table and one from a physical table.
PIMPL TABLE ATTRIBUTES
The Pimpl table, with prestored data, contains normally seven columns See
FIG. 5 (Table 504). Column 1 provides a connection identifier (an internal
code) that uniquely identifies a logical/physical association or physical
connection. Column 2 presents sequence numbers. These numbers represent
the connection sequence of the hardware that implements the functional
entity. Column 3 contains a status flag.
The pair, columns 4 and 5, the functional entity table name column and a
number referencing a row within the named table, form the NSR for the
functional entity. The functional entity table name and the associated
foreign key may appear in more than one row of Pimpl if more than one
piece of hardware implements that functional entity.
The pair, columns 6 and 7, the physical hardware table name(s) column and a
number referencing a row within the named table, form the NSR for the
physical hardware.
The NSR of each piece of hardware needed to implement the functional entity
appears on a separate row of Pimpl.
APPLICATION OF PIMPL (Functional to Physical Mapping)
For an illustrative application of Pimpl, refer now to FIG. 5. The top half
of FIG. 5 depicts GFLINE table 502, an excerpt from functional line table
210 of FIG. 2. Table 502, a parent table, contains 2 records of functional
lines. The first record has a line-network name of CL12054 and a unique
primary key (PK512) of 1. The second record has a line-network-name of
CL12053 and a primary key (PK514) of 2.
To find the physical hardware implementing CL12054, the DBMS looks in
Pimpl, Table 504, for the functional line table (GFLINE) and for the
foreign key (FK512). The combination of these data elements forms a NSR
which refer to the parent table.
The DBMS can now find the physical hardware tables, (three tables-in this
case), and the primary keys (three keys) for these tables. They combine to
form the NSR's to a record in a parent table of physical entities.
To establish a unique key for each record in Pimpl, a connection identifier
(I.sub.-- IMPL.sub.-- PHYS) 522 must combine with a sequence number
(I.sub.-- SEQ) 524 as depicted in table 504 by the (1,1) for the first
row; (1,2) for the second row, (1,3) for the third row and (2,1) for the
fourth row, respectively. Note that for I.sub.-- IMPL.sub.-- PHYS="1", the
sequence extends from 1 to 3; hence, the physical implementation of
CL12054 consists of three physical pieces of hardware.
The NSR (the hardware table name and the identifying hardware key),
"GPMODM" and "1" point to a record in Table 506 where the data element
"1", for foreign key FK 516 references "modem 1"; the second NSR, "GPCIRC"
and "1" points to a record in circuit table 508 where FK517 references the
"circuit 1"; and the third NSR, "GPMODM" and "2" points to a row in modem
table 506 where FK518 references "modem 2".
ANOTHER APPLICATION OF PIMPL (THREE FUNCTIONAL ENTITIES REPRESENTED BY ONE
PHYSICAL TERMINAL)
FIG. 6 depicts the tables and data elements required to determine the
single physical terminal that performs the function of the three
functional terminals that VTAM directs.
GTERM Table 602 presents excerpts of the func terminal table 214. This
table provides unique keys (PK 612, 614, 616 and 618) for four functional
terminals named under the field entitled "N.sub.-- TERMNL.sub.-- NTWK".
To find the physical hardware that implements the functional terminals
TM18080, TM18082, TM18084 and TM18086, the DBMS looks in Pimpl for the
functional (logical) NSR comprised of functional terminal table names
(GFTERM) and the foreign keys (FK612, FK614, FK616 and FK618).
DBMS discovers from the hardware NSR's of Pimpl that one | | |