English 中文(简体)
What is a logical requirement?
原标题:

An SRS should specify "logical requirements" but not start "design".

My problem is in the IEEE SRS document (IEEE Std 830-1998) section 5.3.4 says:

5.3.4 Logical database requirements
This should specify the logical requirements for any information that is to be placed in a database. This may include the following:
  • a) Types of information used by various functions;
  • b) Frequency of use;
  • c) Accessing capabilities
  • d) Data entities and their relationships
  • e) Integrity constraints
  • f) Data retention requirements

So does d) mean drawing the ERD is ok? When does specifying the system to this level in REQUIREMENTS bleed in to DESIGN?

最佳回答

A Logical Data Diagram does not define actual data storage. It defines the Entities at a conceptual level. It s up to somebody else to figure out how to store those Logical Entities.

...so yes, an ERD would be acceptable.

This kind of activity would start to bleed into Design if you began to specify actual storage requirements (which data belongs in which tables, data types, etc.) rather than just defining the Entities at the conceptual level.

问题回答

Here is a very useful reference that breaks down the difference between logical and physical database design:

http://www.developer.com/tech/article.php/641521/Logical-Versus-Physical-Database-Modeling.htm

An ERD is logical design.

The table-column logical schema is independent of any physical implementation. From the tables, columns (even indexes), you cannot determine anything about the physical infrastructure that supports that database.

Physical database design is tablespaces, filesystem, media, logging, etc.

Here s a summary: http://www.revision-zero.org/logical_data_independence

Here s a paper: http://www.sigmod.org/record/issues/9309/design.ps

Note that there s no clear and absolute division between "logical requirements" and "design". In principle, one is "what" and another is "how", but there s an infinite number of fine-grained what vs. how levels to any specification.

You can say that "code" is design. I say that "code" is a logical model and the circuits of the computer hardware that process that code is where the physical design happens. Someone else can say that the superficial hardware instruction set is just logical design, and it s the individual gate arrays that are physical design.





相关问题
What is a logical requirement?

An SRS should specify "logical requirements" but not start "design". My problem is in the IEEE SRS document (IEEE Std 830-1998) section 5.3.4 says: 5.3.4 Logical database requirements This should ...

Requirements management plugin for Trac?

Are there any requirements management plugins out there for Trac? I checked the list on Trac-Hacks and didn t see anything I m picturing some functionality like IBM s DOORS system. Basic features ...

Ubuntu ARM requirements (CLI only)

I am using Ubuntu ARM as testing platform on a QEMU emulator. The emulator has 256MB of RAM, but I m wondering: what are the minimum requirements for running Ubuntu ARM? (CLI only)

Change the minimum OS requirments of my iPhone App?

I made a simple application, then submitted for review. After that the app details claims that the minimum OS requirmentes is 3.1.2 (I work with that SDK). If I change my Target s iPhone OS ...

Defining minimum memory and free disk space requirements?

On page 42 of Code Code complete there s a checklist of requirement items you might want to consider during a requirement phase. On of the items (near the bottom of the list) says Are minimum machine ...

AMN and math logic notation

I m not sure this is appropriate for stackoverflow, but I don t know where else to ask. I m studying the B-Method for proving consistence in requirement specifications, and I have an issue with the ...

热门标签