【发布时间】:2014-07-16 16:29:39
【问题描述】:
这是一个有点复杂的问题,甚至试图仔细考虑也有点令人困惑。
基本上,我必须设计一系列表格,其中包含有关许多不同电气设备的信息。这种设备的布置相当复杂,而且变化很大。
不同类型的设备如下:
RDC - Remote Distribution Center
EBD - Electrical Bus Duct
UPB - Upright Panel Board
PDU - Power Distribution Unit
现在这些单元一起工作的方式也有点令人困惑。
PDU - Powers RDC's, EBD's, and UPB's. They are often redundant, and have a secondary
unit that powers the same equipment in the event of a power failure.
Can also contain breakers and power equipment directly.
RDC - Powers nearly all the equipment on the data center floors, are usually redundant.
They have two units side by side, being powered by a PDU. In the event of a
failure, the second RDC is activated and resumes operations.
EBD - Nearly identical to the RDC, being phased out, but still needs to be tracked in a
similar fashion.
UPB - Similar to an RDC, however, they are not redundant.
现在我想做的是找出最简单的方法来跟踪所有不同项目之间的这种疯狂关系?
我需要跟踪所有可能的硬件的冗余来源,以及每个单元的电源。这可能相当复杂,因为如果两个 PDU 为一组两个 RDC 供电,我们需要能够准确地跟踪到哪里去。
知道从哪里开始吗?
编辑这是我所追求的视觉表示。所接触的对象是多余的,因此必须记录在案。此外,必须对连接到每个设备的不同硬件进行分类。
【问题讨论】:
标签: sql sql-server database-design normalization database-normalization