-
Notifications
You must be signed in to change notification settings - Fork 6
/
DBDD.html
executable file
·167 lines (153 loc) · 15.8 KB
/
DBDD.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DBDD</title>
</head>
<body>
<h1>1. Scope. </h1>
<p>This section shall be divided into the following paragraphs.</p>
<h2>1.1 Identification. </h2>
<p>This paragraph shall contain a full identification of the database to which this document applies, including, as applicable, identification number(s), title(s), abbreviation(s), version number(s), and release number(s).</p>
<h2>1.2 Database overview. </h2>
<p>This paragraph shall briefly state the purpose of the database to which this document applies. It shall describe the general nature of the database; summarize the history of its development, use, and maintenance; identify the project sponsor, acquirer, user, developer, and support agencies; identify current and planned operating sites; and list other relevant documents.</p>
<h2>1.3 Document overview. </h2>
<p>This paragraph shall summarize the purpose and contents of this document and shall describe any security or privacy considerations associated with its use.</p>
<h1>2. Referenced documents.</h1>
<p>This section shall list the number, title, revision, and date of all documents referenced in this manual. This section shall also identify the source for all documents not available through normal Government stocking activities.</p>
<h1>3. Database-wide design decisions.</h1>
<p>This section shall be divided into paragraphs as needed to present database-wide design decisions, that is, decisions about the database's behavioral design (how it will behave, from a user's point of view, in meeting its requirements, ignoring internal implementation) and other decisions affecting further design of the database. If all such decisions are explicit in the system or CSCI requirements, this section shall so state. Design decisions that respond to requirements designated critical, such as those for safety, security, or privacy, shall be placed in separate subparagraphs. If a design decision depends upon system states or modes, this dependency shall be indicated. If some or all of the design decisions are described in the documentation of a custom or commercial database management system (DBMS), they may be referenced from this section. Design conventions needed to understand the design shall be presented or referenced. Examples of database-wide design decisions are the following:
<ol type="a">
<li>Design decisions regarding queries or other inputs the database will accept and outputs (displays, reports, messages, responses, etc.) it will produce, including interfaces with other systems, HWCIs, CSCIs, and users (5.x.d of this DID identifies topics to be considered in this description). If part or all of this information is given in Interface Design Descriptions (IDDs), they may be referenced.</li><br/>
<li>Design decisions on database behavior in response to each input or query, including actions, response times and other performance characteristics, selected equations/algorithms/rules, disposition, and handling of unallowed inputs</li><br/>
<li>Design decisions on how databases/data files will appear to the user (4.x of this DID identifies topics to be considered in this description)</li><br/>
<li>Design decisions on the database management system to be used (including name, version/release) and the type of flexibility to be built into the database for adapting to changing requirements</li><br/>
<li>Design decisions on the levels and types of availability, security, privacy, and continuity of operations to be offered by the database</li><br/>
<li>Design decisions on database distribution (such as client/server), master database file updates and maintenance, including maintaining consistency, establishing/ reestablishing and maintaining synchronization, enforcing integrity and business rules</li><br/>
<li>Design decisions on backup and restoration including data and process distribution strategies, permissible actions during backup and restoration, and special considerations for new or non-standard technologies such as video and sound</li><br/>
<li>Design decisions on repacking, sorting, indexing, synchronization, and consistency including automated disk management and space reclamation considerations, optimizing strategies and considerations, storage and size considerations, and population of the database and capture of legacy data</li>
</ol>
</p>
<h1>4. Detailed design of the database.</h1>
<p>This section shall be divided into paragraphs as needed to describe the detailed design of the database. The number of levels of design and the names of those levels shall be based on the design methodology used. Examples of database design levels include conceptual, internal, logical, and physical. If part or all of the design depends upon system states or modes, this dependency shall be indicated. Design conventions needed to understand the design shall be presented or referenced.
<br/><br/>
Note: This DID uses the term "data element assembly" to mean any entity, relation, schema, field, table, array, etc., that has structure (number/order/grouping of data elements) at a given design level (e.g., conceptual, internal, logical, physical) and the term "data element" to mean any relation, attribute, field, cell, data element, etc. that does not have structure at that level.
</p>
<h2>4.x (Name of database design level).</h2>
<p>This paragraph shall identify a database design level and shall describe the data elements and data element assemblies of the database in the terminology of the selected design method. The information shall include the following, as applicable, presented in any order suited to the information to be provided:
<ol type="a">
<li>Characteristics of individual data elements in the database design, such as:
<ol>
<li>Names/identifiers
<ol type="a">
<li>Project-unique identifier</li>
<li>Non-technical (natural-language) name</li>
<li>DoD standard data element name</li>
<li>Technical name (e.g., field name in the database)</li>
<li>Abbreviation or synonymous names</li>
</ol>
</li>
<li>Data type (alphanumeric, integer, etc.)</li>
<li>Size and format (such as length and punctuation of a character string)</li>
<li>Units of measurement (such as meters, dollars, nanoseconds)</li>
<li>Range or enumeration of possible values (such as 0-99)</li>
<li>Accuracy (how correct) and precision (number of significant digits)</li>
<li>Priority, timing, frequency, volume, sequencing, and other constraints, such as whether the data element may be updated and whether business rules apply</li>
<li>Security and privacy constraints</li>
<li>Sources (setting/sending entities) and recipients (using/receiving entities)</li>
</ol>
</li><br/>
<li>Characteristics of data element assemblies (records, messages, files, arrays, displays, reports, etc.) in the database design, such as:
<ol>
<li>Names/identifiers
<ol type="a">
<li>Project-unique identifier</li>
<li>Non-technical (natural language) name</li>
<li>Technical name (e.g., record or data structure name in code or database)</li>
<li>Abbreviations or synonymous names</li>
</ol>
</li>
<li>Data elements in the assembly and their structure (number, order, grouping)</li>
<li>Medium (such as disk) and structure of data elements/assemblies on the medium</li>
<li>Visual and auditory characteristics of displays and other outputs (such as colors, layouts, fonts, icons and other display elements, beeps, lights)</li>
<li>Relationships among assemblies, such as sorting/access characteristics</li>
<li>Priority, timing, frequency, volume, sequencing, and other constraints, such as whether the assembly may be updated and whether business rules apply</li>
<li>Security and privacy constraints</li>
<li>Sources (setting/sending entities) and recipients (using/receiving entities)</li>
</ol>
</li><br/>
</ol>
</p>
<h1>5. Detailed design of software units used for database access or manipulation.</h1>
<p>This section shall be divided into the following paragraphs to describe each software unit used for database access or manipulation. If part or all of this information is provided elsewhere, such as in a Software Design Description (SDD), the SDD for a customized DBMS, or the user manual of a commercial DBMS, that information may be referenced rather than repeated here. If part or all of the design depends upon system states or modes, this dependency shall be indicated. If design information falls into more than one paragraph, it may be presented once and referenced from the other paragraphs. Design conventions needed to understand the design shall be presented or referenced.</p>
<h2>5.x (Project-unique identifier of a software unit, or designator for a group of software units).</h2>
<p>This paragraph shall identify a software unit by project-unique identifier and shall describe the unit. The description shall include the following information, as applicable. Alternatively, this paragraph may designate a group of software units and identify and describe the software units in subparagraphs. Software units that contain other software units may reference the descriptions of those units rather than repeating information.
<ol type="a">
<li>Unit design decisions, if any, such as algorithms to be used, if not previously selected</li><br/>
<li>Any constraints, limitations, or unusual features in the design of the software unit</li><br/>
<li>The programming language to be used and rationale for its use if other than the specified CSCI language</li><br/>
<li>If the software unit consists of or contains procedural commands (such as menu selections in a database management system (DBMS) for defining forms and reports, on-line DBMS queries for database access and manipulation, input to a graphical user interface (GUI) builder for automated code generation, commands to the operating system, or shell scripts), a list of the procedural commands and a reference to user manuals or other documents that explain them</li><br/>
<li>If the software unit contains, receives, or outputs data, a description of its inputs, outputs, and other data elements and data element assemblies, as applicable. Data local to the software unit shall be described separately from data input to or output from the software unit. Interface characteristics may be provided here or by referencing Interface Design Description(s). If a given interfacing entity is not covered by this DBDD (for example, an external system) but its interface characteristics need to be mentioned to describe software units that are, these characteristics shall be stated as assumptions or as "When [the entity not covered] does this, [the software unit] will...." This paragraph may reference other documents (such as data dictionaries, standards for protocols, and standards for user interfaces) in place of stating the information here. The design description shall include the following, as applicable, presented in any order suited to the information to be provided, and shall note any differences in these characteristics from the point of view of the interfacing entities (such as different expectations about the size, frequency, or other characteristics of data elements):
<ol>
<li>Project-unique identifier for the interface</li><br/>
<li>Identification of the interfacing entities (software units, configuration items, users, etc.) by name, number, version, and documentation references, as applicable</li><br/>
<li>Priority assigned to the interface by the interfacing entity(ies)</li><br/>
<li>Type of interface (such as real-time data transfer, storage-and-retrieval of data, etc.) to be implemented</li><br/>
<li>Characteristics of individual data elements that the interfacing entity(ies) will provide, store, send, access, receive, etc. Paragraph 4.x.a of this DID identifies topics to be covered in this description.</li><br/>
<li>Characteristics of data element assemblies (records, messages, files, arrays, displays, reports, etc.) that the interfacing entity(ies) will provide, store, send, access, receive, etc. Paragraph 4.x.b of this DID identifies topics to be covered in this description.</li><br/>
<li>Characteristics of communication methods that the interfacing entity(ies) will use for the interface, such as:
<ol type="a">
<li>Project-unique identifier(s)</li>
<li>Communication links/bands/frequencies/media and their characteristics</li>
<li>Message formatting</li>
<li>Flow control (such as sequence numbering and buffer allocation)</li>
<li>Data transfer rate, whether periodic/aperiodic, and interval between transfers</li>
<li>Routing, addressing, and naming conventions</li>
<li>Transmission services, including priority and grade</li>
<li>Safety/security/privacy considerations, such as encryption, user authentication, compartmentalization, and auditing</li>
</ol>
</li><br/>
<li>Characteristics of protocols that the interfacing entity(ies) will use for the interface, such as:
<ol type="a">
<li>Project-unique identifier(s)</li>
<li>Priority/layer of the protocol</li>
<li>Packeting, including fragmentation and reassembly, routing, and addressing</li>
<li>Legality checks, error control, and recovery procedures</li>
<li>Synchronization, including connection establishment, maintenance, termination</li>
<li>Status, identification, and any other reporting features</li>
</ol>
</li><br/>
<li>Other characteristics, such as physical compatibility of the interfacing entity(ies) (dimensions, tolerances, loads, voltages, plug compatibility, etc.)</li><br/>
</ol>
</li>
<li>If the software unit contains logic, the logic to be used by the software unit, including, as applicable:
<ol>
<li>Conditions in effect within the software unit when its execution is initiated</li>
<li>Conditions under which control is passed to other software units </li>
<li>Response and response time to each input, including data conversion, renaming, and data transfer operations</li>
<li>Sequence of operations and dynamically controlled sequencing during the software unit's operation, including:
<ol type="a">
<li>The method for sequence control </li>
<li>The logic and input conditions of that method, such as timing variations, priority assignments</li>
<li>Data transfer in and out of memory</li>
<li>The sensing of discrete input signals, and timing relationships between interrupt operations within the software unit</li>
</ol>
</li>
<li>Exception and error handling</li>
</ol>
</li>
</ol>
</p>
<h1>6. Requirements traceability.</h1>
<p>This section shall contain:
<ol type="a">
<li>Traceability from each database or other software unit covered by this DBDD to the system or CSCI requirements it addresses.</li>
<li>Traceability from each system or CSCI requirement that has been allocated to a database or other software unit covered in this DBDD to the database or other software units that address it.</li>
</ol>
</p>
<h1>7. Notes.</h1>
<p>This section shall contain any general information that aids in understanding this document (e.g., background information, glossary, rationale). This section shall include an alphabetical listing of all acronyms, abbreviations, and their meanings as used in this document and a list of any terms and definitions needed to understand this document.</p>
<h1>A. Appendixes.</h1>
<p>Appendixes may be used to provide information published separately for convenience in document maintenance (e.g., charts, classified data). As applicable, each appendix shall be referenced in the main body of the document where the data would normally have been provided. Appendixes may be bound as separate documents for ease in handling. Appendixes shall be lettered alphabetically (A, B, etc.).</p>
</body>
</html>