File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 11--
22-- PLPGSQL
33--
4+ -- Scenario:
5+ --
6+ -- A building with a modern TP cable installation where any
7+ -- of the wall connectors can be used to plug in phones,
8+ -- ethernet interfaces or local office hubs. The backside
9+ -- of the wall connectors is wired to one of several patch-
10+ -- fields in the building.
11+ --
12+ -- In the patchfields, there are hubs and all the slots
13+ -- representing the wall connectors. In addition there are
14+ -- slots that can represent a phone line from the central
15+ -- phone system.
16+ --
17+ -- Triggers ensure consistency of the patching information.
18+ --
19+ -- Functions are used to build up powerful views that let
20+ -- you look behind the wall when looking at a patchfield
21+ -- or into a room.
22+ --
423create table Room (
524 roomno char(8),
625 comment text
Original file line number Diff line number Diff line change 11--
22-- PLPGSQL
33--
4+ -- Scenario:
5+ --
6+ -- A building with a modern TP cable installation where any
7+ -- of the wall connectors can be used to plug in phones,
8+ -- ethernet interfaces or local office hubs. The backside
9+ -- of the wall connectors is wired to one of several patch-
10+ -- fields in the building.
11+ --
12+ -- In the patchfields, there are hubs and all the slots
13+ -- representing the wall connectors. In addition there are
14+ -- slots that can represent a phone line from the central
15+ -- phone system.
16+ --
17+ -- Triggers ensure consistency of the patching information.
18+ --
19+ -- Functions are used to build up powerful views that let
20+ -- you look behind the wall when looking at a patchfield
21+ -- or into a room.
22+ --
23+
424
525create table Room (
626 roomno char (8 ),
You can’t perform that action at this time.
0 commit comments