프로젝트

일반

사용자정보

데이타베이스 스키마 » 이력 » 버전 9

백흠경, 2020/05/14 01:54

1 1 백흠경
h1. 데이타베이스 스키마
2 1 백흠경
3 4 백흠경
{{plantuml(svg)
4 4 백흠경
@startuml
5 4 백흠경
' uncomment the line below if you're using computer with a retina display
6 4 백흠경
' skinparam dpi 300
7 4 백흠경
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
8 4 백흠경
' we use bold for primary key
9 4 백흠경
' green color for unique
10 4 백흠경
' and underscore for not_null
11 4 백흠경
!define primary_key(x) <b>x</b>
12 4 백흠경
!define unique(x) <color:green>x</color>
13 4 백흠경
!define not_null(x) <u>x</u>
14 4 백흠경
' other tags available:
15 4 백흠경
' <i></i>
16 4 백흠경
' <back:COLOR></color>, where color is a color name or html color code
17 4 백흠경
' (#FFAACC)
18 4 백흠경
' see: http://plantuml.com/classes.html#More
19 4 백흠경
hide methods
20 4 백흠경
hide stereotypes
21 4 백흠경
22 4 백흠경
' entities
23 4 백흠경
24 8 백흠경
rectangle Company{
25 7 백흠경
Table(Units, "Units(항목별 단위 모음)\n(전사 데이타베이스)") {
26 4 백흠경
}
27 8 백흠경
}
28 4 백흠경
29 8 백흠경
Table(Projects, "Projects") {
30 9 백흠경
primary_key(UID) TEXT[37]
31 8 백흠경
unique(Name) TEXT
32 8 백흠경
Description TEXT
33 8 백흠경
}
34 1 백흠경
35 9 백흠경
Table(UnitRelations, "UnitRelations\n단위 연계 테이블") {
36 9 백흠경
primary_key(UID) TEXT[37]
37 9 백흠경
not_null(Projects_UID) TEXT[37]
38 9 백흠경
not_null(ColName) TEXT[37]
39 9 백흠경
not_null(Units_UID) TEXT[37]
40 9 백흠경
}
41 9 백흠경
42 7 백흠경
Table(HMB_condition, "HMB_condition\n(표준 HMB 구조(공정조건))") {
43 1 백흠경
}
44 1 백흠경
45 7 백흠경
Table(HMB_composition, "HMB_composition\n(표준 HMB 구조(물질))") {
46 1 백흠경
}
47 1 백흠경
48 1 백흠경
Table(Line, "Line\n(배관 라인 리스트 및 데이터)") {
49 7 백흠경
primary_key(Related Stream No 1) TEXT
50 1 백흠경
primary_key(Related Stream No 2) TEXT
51 1 백흠경
}
52 1 백흠경
53 1 백흠경
' relationships
54 9 백흠경
UnitRelations --> Units
55 9 백흠경
UnitRelations --> Projects
56 9 백흠경
UnitRelations --> HMB_condition
57 9 백흠경
UnitRelations --> HMB_composition
58 9 백흠경
UnitRelations --> Line
59 8 백흠경
HMB_condition -> Projects
60 8 백흠경
HMB_composition -> Projects
61 8 백흠경
Line --> Projects
62 8 백흠경
Line -> HMB_condition
63 8 백흠경
Line -> HMB_composition
64 4 백흠경
@enduml
65 4 백흠경
}}
66 4 백흠경
67 1 백흠경
|\4=. *HMB_condition* |
68 1 백흠경
|=.Field |=. Field Names |=. Data Type |=. Remarks |
69 1 백흠경
|1| Stream Number| TEXT|key value: from external document or DB |
70 1 백흠경
|2|Stream Description|TEXT|from external document or DB|
71 1 백흠경
|3|DATA CASE|TEXT|from external document or DB|
72 1 백흠경
|4|STREAMPHASE|TEXT|from external document or DB|
73 1 백흠경
|5|OVERALL VAPOR FRACTION|NUMERIC|from external document or DB|
74 1 백흠경
|6|OVERALL TEMPERATURE|NUMERIC|from external document or DB|
75 1 백흠경
|7|OVERALL PRESSURE|NUMERIC|from external document or DB|
76 1 백흠경
|8|OVERALL MOLECULAR WEIGHT|NUMERIC|from external document or DB|
77 1 백흠경
|9|OVERALL MOLAR FLOW|NUMERIC|from external document or DB|
78 1 백흠경
|10|OVERALL MASS FLOW|NUMERIC|from external document or DB|
79 1 백흠경
|11|OVERALL ACTUAL VOLUME FLOW|NUMERIC|from external document or DB|
80 1 백흠경
|12|OVERALL MASS DENSITY|NUMERIC|from external document or DB|
81 1 백흠경
|13|OVERALL MASS HEAT CAPACITY|NUMERIC|from external document or DB|
82 1 백흠경
|14|OVERALL HEAT FLOW|NUMERIC|from external document or DB|
83 1 백흠경
|15|Overall Mass Enthalpy|NUMERIC|from external document or DB|
84 1 백흠경
|16|Overall Sp. Gravity|NUMERIC|from external document or DB|
85 1 백흠경
|17|Overall API Gravity|NUMERIC|from external document or DB|
86 1 백흠경
|18|Overall Critical Pressure|NUMERIC|external document or DB|
87 1 백흠경
|19|Overall Critical Temperature|NUMERIC|from external document or DB|
88 1 백흠경
|20|Overall UOP K factor|NUMERIC|from external document or DB|
89 1 백흠경
|21|LIQUID MOLE FRACTION|NUMERIC|from external document or DB|
90 1 백흠경
|22|Vapor Temperature|NUMERIC|from external document or DB|
91 1 백흠경
|23|Vapor Pressure|NUMERIC|from external document or DB|
92 1 백흠경
|24|Vapor Pseudocritical Temperature|NUMERIC|from external document or DB|
93 1 백흠경
|25|Vapor Pseudocritical Pressure|NUMERIC|from external document or DB|
94 1 백흠경
|26|VAPOR MOLAR RATE|NUMERIC|from external document or DB|
95 1 백흠경
|27|VAPOR MASS RATE|NUMERIC|from external document or DB|
96 1 백흠경
|28|VAPOR ACTUAL VOLUME RATE|NUMERIC|from external document or DB|
97 1 백흠경
|29|VAPOR STD. VOLUME RATE|NUMERIC|from external document or DB|
98 1 백흠경
|30|VAPOR MOLECULAR WEIGHT|NUMERIC|from external document or DB|
99 1 백흠경
|31|Vapor Heat Flow|NUMERIC|from external document or DB|
100 1 백흠경
|32|VAPOR COMPRESSIBILITY|NUMERIC|from external document or DB|
101 1 백흠경
|33|VAPOR SPECIFIC ENTHALPY|NUMERIC|from external document or DB|
102 1 백흠경
|34|VAPOR SPECIFIC HEAT CAPACITY|NUMERIC|from external document or DB|
103 1 백흠경
|35|IDEAL VAPOR SPECIFIC HEAT RATIO|NUMERIC|from external document or DB|
104 1 백흠경
|36|VAPOR ACTUAL DENSITY|NUMERIC|from external document or DB|
105 1 백흠경
|37|THERMAL CONDUCTIVITY|NUMERIC|from external document or DB|
106 1 백흠경
|38|VAPOR VISCOSITY|NUMERIC|from external document or DB|
107 1 백흠경
|39|Liquid Temperature|NUMERIC|from external document or DB|
108 1 백흠경
|40|Pressure|NUMERIC|from external document or DB|
109 1 백흠경
|41|Liquid Pseudocritical Temperature|NUMERIC|from external document or DB|
110 1 백흠경
|42|Liquid Pseudocritical Pressure|NUMERIC|from external document or DB|
111 1 백흠경
|43|LIQUID MOLAR RATE|NUMERIC|from external document or DB|
112 1 백흠경
|44|LIQUID MASS RATE|NUMERIC|from external document or DB|
113 1 백흠경
|45|LIQUID ACTUAL VOLUME FLOW|NUMERIC|from external document or DB|
114 1 백흠경
|46|LIQUID STD. VOLUME FLOW|NUMERIC|from external document or DB|
115 1 백흠경
|47|LIQUID MOLECULAR WEIGHT|NUMERIC|from external document or DB|
116 1 백흠경
|48|Liquid Heat Flow|NUMERIC|from external document or DB|
117 1 백흠경
|49|LIQUID SPECIFIC ENTHALPY|NUMERIC|from external document or DB|
118 1 백흠경
|50|LIQUID Boiling Point Pressure at Stream T|NUMERIC|from external document or DB|
119 1 백흠경
|51|LIQUID SPECIFIC HEAT CAPACITY|NUMERIC|from external document or DB|
120 1 백흠경
|52|LIQUID ACTUAL DENSITY|NUMERIC|from external document or DB|
121 1 백흠경
|53|Liquid Std Density|NUMERIC|from external document or DB|
122 1 백흠경
|54|Liquid Specific Gravity @ 15°C|NUMERIC|from external document or DB|
123 1 백흠경
|55|LIQUID SURFACE TENSION|NUMERIC|from external document or DB|
124 1 백흠경
|56|LIQUID THERMAL CONDUCTIVITY|NUMERIC|from external document or DB|
125 1 백흠경
|57|LIQUID VISCOSITY|NUMERIC|from external document or DB|
126 1 백흠경
|58|AQUEOUS Pseudocritical Temperature|NUMERIC|from external document or DB|
127 1 백흠경
|59|AQUEOUS Pseudocritical Pressure|NUMERIC|from external document or DB|
128 1 백흠경
|60|AQUEOUS MOLAR RATE|NUMERIC|from external document or DB|
129 1 백흠경
|61|AQUEOUS MASS RATE|NUMERIC|from external document or DB|
130 1 백흠경
|62|AQUEOUS ACTUAL VOLUME FLOW|NUMERIC|from external document or DB|
131 1 백흠경
|63|AQUEOUS STD. LIQUID FLOW|NUMERIC|from external document or DB|
132 1 백흠경
|64|Molecular Weight|NUMERIC|from external document or DB|
133 1 백흠경
|65|AQUEOUS Heat Flow|NUMERIC|from external document or DB|
134 1 백흠경
|66|AQUEOUS SPECIFIC ENTHALPY|NUMERIC|from external document or DB|
135 1 백흠경
|67|AQUEOUS  Boiling Point Pressure at Stream T|NUMERIC|from external document or DB|
136 1 백흠경
|68|AQUEOUS SPECIFIC HEAT CAPACITY|NUMERIC|from external document or DB|
137 1 백흠경
|69|AQUEOUS ACTUAL DENSITY|NUMERIC|from external document or DB|
138 1 백흠경
|70|AQUEOUS Std Density|NUMERIC|from external document or DB|
139 1 백흠경
|71|AQUEOUS Specific Gravity @ 15°C|NUMERIC|from external document or DB|
140 1 백흠경
|72|AQUEOUS SURFACE TENSION|NUMERIC|from external document or DB|
141 1 백흠경
|73|AQUEOUS THERMAL CONDUCTIVITY|NUMERIC|from external document or DB|
142 1 백흠경
|74|AQUEOUS VISCOSITY|NUMERIC|from external document or DB|
143 1 백흠경
|75|Data Source|TEXT|import 시 user selection|
144 2 백흠경
145 2 백흠경
|\4=. *HMB_composition* |
146 2 백흠경
|=.Field |=. Field Names |=. Data Type |=. Remarks |
147 2 백흠경
|=.1|Stream Number|TEXT|key value: from external document or DB|
148 2 백흠경
|=.2|DATA CASE|TEXT|from external document or DB|
149 2 백흠경
|=.3|COMP1|TEXT|from external document or DB|
150 2 백흠경
|=.4|COMP2|TEXT|from external document or DB|
151 2 백흠경
|=.5|COMP3|TEXT|from external document or DB|
152 2 백흠경
|=.6|COMP4|TEXT|from external document or DB|
153 2 백흠경
|=.7|COMP5|TEXT|external document or DB|
154 2 백흠경
|=.8|COMP6|TEXT|from external document or DB|
155 2 백흠경
|=.9|COMP7|TEXT|from external document or DB|
156 2 백흠경
|=.10|COMP8|TEXT|from external document or DB|
157 2 백흠경
|=.11|COMP9|TEXT|from external document or DB|
158 2 백흠경
|=.12|COMP10|TEXT|from external document or DB|
159 2 백흠경
|=.13|COMP11|TEXT|from external document or DB|
160 2 백흠경
|=.14|COMP12|TEXT|from external document or DB|
161 2 백흠경
|=.15|COMP13|TEXT|from external document or DB|
162 2 백흠경
|=.16|COMP14|TEXT|from external document or DB|
163 2 백흠경
|=.17|COMP15|TEXT|from external document or DB|
164 2 백흠경
|=.18|COMP16|TEXT|from external document or DB|
165 2 백흠경
|=.19|COMP17|TEXT|from external document or DB|
166 2 백흠경
|=.20|COMP18|TEXT|from external document or DB|
167 2 백흠경
|=.21|COMP19|TEXT|from external document or DB|
168 2 백흠경
|=.22|COMP20|TEXT|from external document or DB|
169 2 백흠경
|=.23|Data Source|TEXT|import 시 user selection|
170 3 백흠경
171 3 백흠경
|\4=. *Line* |
172 3 백흠경
|=.Field |=. Field Names |=. Data Type |=. Remarks |
173 3 백흠경
|=.1|Related Stream No 1|TEXT|key value: from auto mapping using SPPID and PAP|
174 3 백흠경
|=.2|Related Stream No 2|TEXT|dummy|
175 3 백흠경
|=.3|SPID|TEXT|from SPPID|
176 3 백흠경
|=.4|Unit no|TEXT|from SPPID|
177 3 백흠경
|=.5|Fluid code|TEXT|from SPPID|
178 3 백흠경
|=.6|Sequence no|TEXT|from SPPID|
179 3 백흠경
|=.7|Material class|TEXT|from SPPID|
180 3 백흠경
|=.8|Schedule|TEXT|later|
181 3 백흠경
|=.9|size|NUMERIC|from SPPID or line sizing calculation (별도 계산 모듈)|
182 3 백흠경
|=.10|Insulation type|TEXT|from SPPID|
183 3 백흠경
|=.11|From|TEXT|from SPPID / drawing of PAP / Roby F-T / PSN|
184 3 백흠경
|=.12|To|TEXT|from SPPID / drawing of PAP / Roby F-T / PSN|
185 3 백흠경
|=.13|&ID number|TEXT|from SPPID |
186 3 백흠경
|=.14|Phase|TEXT|from HMB|
187 3 백흠경
|=.15|Normal OP|NUMERIC|from HMB|
188 3 백흠경
|=.16|Normal OT|NUMERIC|from HMB|
189 3 백흠경
|=.17|Max OP|NUMERIC|later|
190 3 백흠경
|=.18|Max OT|NUMERIC|later|
191 3 백흠경
|=.19|Min temp|NUMERIC|later|
192 3 백흠경
|=.20|Vacuum Temp|NUMERIC|later|
193 3 백흠경
|=.21|Density / Specific Gravity|NUMERIC|from HMB|
194 3 백흠경
|=.22|Viscosity|NUMERIC|from HMB|
195 3 백흠경
|=.23|Mass flow|UMERIC|from HMB|
196 3 백흠경
|=.24|Vol. flow|NUMERIC|from HMB|
197 3 백흠경
|=.25|Velocity|NUMERIC|from line sizing calculation (별도 계산 모듈)|
198 3 백흠경
|=.25|Pressure Drop|NUMERIC|from line sizing calculation (별도 계산 모듈)|
199 3 백흠경
|=.26|Length|NUMERIC|later|
200 3 백흠경
|=.27|Total Equivalent Length|NUMERIC|later|
201 3 백흠경
|=.28|Design Pressure|NUMERIC|from calculation (별도 계산 모듈)|
202 3 백흠경
|=.29|Design Temperature|NUMERIC|from calculation (별도 계산 모듈)|
203 3 백흠경
|=.30|Process Remark|TEXT|from E/L and SPPID|
204 3 백흠경
|=.31|Steam Out Chk.|TEXT|later|
205 3 백흠경
|=.32|Steam Out Temp|NUMERIC|later|
206 3 백흠경
|=.33|Heat Tracing Temp|NUMERIC|later|
207 3 백흠경
|=.34|Flex Temp|NUMERIC|later|
208 3 백흠경
|=.35|Hydro Test Press|NUMERIC|later|
209 3 백흠경
|=.36|Pneu Test Press|NUMERIC|later|
210 3 백흠경
|=.37|Special Service|TEXT|from calculation (별도 계산 모듈)|
211 3 백흠경
|=.38|Insul Matl|TEXT|later|
212 3 백흠경
|=.39|Insulation thickness|NUMERIC|later|
213 3 백흠경
|=.40|Paint Code|TEXT|later|
214 3 백흠경
|=.41|NDE (%)|NUMERIC|later|
215 3 백흠경
|=.42|SR|TEXT|later|
216 3 백흠경
|=.43|SC|TEXT|later|
217 3 백흠경
|=.44|System Priority|TEXT|later|
218 3 백흠경
|=.45|Critical Rating|NUMERIC|later|
219 3 백흠경
|=.46|NDE Class|TEXT|later|
220 3 백흠경
|=.47|Stress Temp.|NUMERIC|later|
221 3 백흠경
|=.48|AG/UG|TEXT|later|
222 3 백흠경
|=.49|P Fluid for Band|TEXT|later|
223 3 백흠경
|=.50|Data Source|TEXT|import 시 user selection|
224 3 백흠경
|=.-|HT type|-|설계정보 리스트 생성 template 에만 쓰임|
225 3 백흠경
|=.-|HT maintain temp|-|설계정보 리스트 생성 template 에만 쓰임|
226 3 백흠경
|=.-|Inspection class|-|설계정보 리스트 생성 template 에만 쓰임|
227 3 백흠경
|=.-|RT%|-|설계정보 리스트 생성 template 에만 쓰임|
228 3 백흠경
|=.-|DP%|-|설계정보 리스트 생성 template 에만 쓰임|
229 3 백흠경
|=.-|MP%|-|설계정보 리스트 생성 template 에만 쓰임|
230 3 백흠경
|=.-|Stress relief|-|설계정보 리스트 생성 template 에만 쓰임|
231 3 백흠경
|=.-|Fluid service code (K/M/N/D)|-|설계정보 리스트 생성 template 에만 쓰임|
232 3 백흠경
|=.-|Explosive or flammable|-|설계정보 리스트 생성 template 에만 쓰임|
233 3 백흠경
|=.-|Sys ID(1)|-|설계정보 리스트 생성 template 에만 쓰임|
234 3 백흠경
|=.-|Sys ID(2)|-|설계정보 리스트 생성 template 에만 쓰임|
클립보드 이미지 추가 (최대 크기: 500 MB)