Software Engineering | What are different data design elements?

Data design is the first design activity, which results in fewer complexes, modular and efficient program structure. The information domain model developed during analysis phase is transformed into data structures needed for implementing the software. The data objects, attributes, and relationships depicted in entity relationship diagrams and the information stored in data dictionary provide a base for data design activity. During the data design process, data types are specified along with the integrity rules required for the data. For specifying and designing efficient data structures, some principles should be followed. These principles are listed below. 

1. The data structures needed for implementing the software as well-as the operations that can be applied on them should be identified. 

2. A data dictionary should be developed to depict how different data objects interact with each other and what constraints are to be imposed on the elements of data structure. 

3. Step wise refinement should be used in data design process and detailed design decisions should be made later in the process. 

4. Only those modules that need to access data stored in a data structure directly should be aware of the representation of the data structure. 

5. A library containing the set of useful data structures along wit h the operations that can be performed on them should be maintained. Language used for developing the system should support abstract data types. The structure of data can be viewed at three levels, namely, program component level, application level, and business level. At the program component level, the design of data structures and the algorithms required to manipulate them is necessary, if high-quality software is desired. At the application level, it is crucial to convert the data model into a database so that the specific business objectives of a system could be achieved. At the business level, the collection of information stored in different databases should be reorganized into data warehouse, which enables data mining that has an influential impact on the business itself. 

Post a Comment

0 Comments