Data Modeling Interview Preparation Guide
Download PDF

Data modeling Interview Questions and Answers will guide us now that Data modeling in software engineering is the process of creating a data model by applying formal data model descriptions using data modeling techniques. So learn data modeling by this Data modeling Interview Questions with Answers guide

36 Data Modeling Questions and Answers:

Table of Contents

Data Modeling Interview Questions and Answers
Data Modeling Interview Questions and Answers

1 :: Give us a non-computer example of preemptive and non-preemptive scheduling?

Consider any system where people use some kind of resources and compete for them. The non-computer examples for preemptive scheduling the traffic on the single lane road if there is emergency or there is an ambulance on the road the other vehicles give path to the vehicles that are in need. The example for preemptive scheduling is people standing in queue for tickets.

2 :: What is the difference between star flake and snow flake schema?

Star Schema:
Well in star schema you just enter your desired facts and all the primary keys of your dimensional tables in Fact table. And fact tables primary is the union of its all dimension table key. In star schema dimensional tables are usually not in BCNF form.

SnowFlake:
Its almost like starschema but in this our dimension tables are in 3rd NF, so more dimensions tables. And these dimension tables are linked by primary, foreign key relation.

3 :: What is data sparsity and how it effect on aggregation?

Data sparsity is term used for how much data we have for a particular dimension/entity of the model.

It affects aggregation depending on how deep the combination of members of the sparse dimension make up. If the combination is a lot and those combination do not have any factual data then creating space to store those aggregations will be a waste as a result, the database will become huge.

4 :: What is the difference between hashed file stage and sequential file stage in relates to DataStage Server?

In datastage server jobs,can we use sequential filestage for a lookup instead of hashed filestage.If yes ,then whats the advantage of a Hashed File stage over sequential filestage

search is faster in hash files as you can directly get the address of record directly by hash algorithm as records are stored like that but in case of sequential file u must compare all the records.

5 :: When should you consider denormalization?

Denormalization is used when there is a lot of tables involved in retreiving data.Denormalization is done in dimentional modelling used to construct a data ware house.This is not usually done for data bases of transactional systems.

6 :: What is ERD?

Data models are tools used in analysis to describe the data requirements and assumptions in the system from a top-down perspective. They also set the stage for the design of databases later on in the SDLC.

There are three basic elements in ER models:
Entities are the "things" about which we seek information.
Attributes are the data we collect about the entities.
Relationships provide the structure needed to draw information from multiple entities

7 :: What is third normal form?

An entity is in the third normal form if it is in the second normal form and all of its attributes are not transitively dependent on the primary key. Transitive dependence means that descriptor key attributes depend not only on the whole primary key, but also on other descriptor key attributes that, in turn, depend on the primary key. In SQL terms, the third normal form means that no column within a table is dependent on a descriptor column that, in turn, depends on the primary key.



For 3NF, first, the table must be in 2NF, plus, we want to make sure that the non-key fields are dependent upon ONLY the PK, and not other non-key fields for its existence. This is very similar to to 2NF, except that now you are comparing the non-key fields to OTHER non-key fields. After all, we know that the relationship to the PK is good, because we established that in 2NF.

8 :: Why are recursive relationships are bad? How do you resolve them?

Recursive relationships are an interesting and more complex concept than the relationships you have seen in the previous chapters, such as a one-to-one, one-to-many, and many-to-many. A recursive relationship occurs when there is a relationship between an entity and itself. For example, a one-to-many recursive relationship occurs when an employee is the manager of other employeess. The employee entity is related to itself, and there is a one-to-many relationship between one employee (the manager) and many other employees (the people who report to the manager). Because of the more complex nature of these relationships, we will need slightly more complex methods of mapping them to a schema and displaying them in a stylesheet.

9 :: Is this statement TRUE or FALSE? all databases must be in third normal form?

In general all organization data bases are normalised to 3nf inorder to remove redundancy and efficent access.A data base can also be created with out normalisation.Hence it is not a mandatory that a database should be in 3nf.

10 :: What is an artificial (derived) primary key? When should it be used?

Using a name as the primary key violates the principle of stability. The social security number might be a valid choice, but a foreign employee might not have a social security number. This is a case where a derived, rather than a natural, primary key is appropriate. A derived key is an artificial key that you create. A natural key is one that is already part of the database.

11 :: What is second normal form?

An entity is in the second normal form if all of its attributes depend on the whole (primary) key. In relational terms, every column in a table must be functionally dependent on the whole primary key of that table. Functional dependency indicates that a link exists between the values in two different columns.

If the value of an attribute depends on a column, the value of the attribute must change if the value in the column changes. The attribute is a function of the column. The following explanations make this more specific:

If the table has a one-column primary key, the attribute must depend on that key.
If the table has a composite primary key, the attribute must depend on the values in all its columns taken as a whole, not on one or some of them.
If the attribute also depends on other columns, they must be columns of a candidate key; that is, columns that are unique in every row.
If you do not convert your model to the second normal form, you risk data redundancy and difficulty in changing data. To convert first-normal-form tables to second-normal-form tables, remove columns that are not dependent on the primary key.

12 :: Explain me what is a check constraint?

Check constraint is used to check range of values in a column.

13 :: Explain me what is a sequence?

Sequence is a database object to generate unique number.

14 :: Explain what is OLTP data modelling?

☛ OLTP stands for online transactional processing.
☛ Data models are constructed for transactions is called OLTP data modelling.

15 :: Do you know what is a composite foreign key constraint?

A group of columns in a foreign key, it is called as a composite foreign key constraint

16 :: Explain me what is Data Modeling?

Data model is a conceptual representation of Business Requirement (logic data model) or Data Base objects required for a database and very powerful in expressing and communicating the business requirements and database objects.

17 :: Tell me what is a column (attribute)?

Column also known as field is a vertical alignment of a data and constrains related to that columns.

18 :: Explain what are the important types of Relationships in a data model?

☛ Identifying
☛ Non – Identifying Relationship
☛ Self –Recursive Relationship

19 :: Tell me what is De-Normalization?

☛ De- Normalization is a process of adding redundancy to the data.
☛ It helps us to quickly retrieve the information from the database.

20 :: Tell me what is a sequence?

It is a database object to generate unique number

21 :: Tell me what is forward engineering in a data model?

☛ It is a process by which DDL scripts are generated from the data model.
☛ Data modelling tools have options to create DDL Scripts by connecting with various databases.
☛ With its scripts and database can be created.

22 :: Do you know what does data model contain?

Logical Data Model Contain:
Entry, Super Type, Sub Type, primary key, Alternate key, Inversion key Entry, Rule, Relationship, Definition, Business Rule, Entity, etc.

Physical Data Model Contain:
Table, Column, Primary key Constraint, Unique Index, Non Unique Index, Check constraint, Default value, Foreign key, Comment etc.

23 :: What is a Row?

It is known as tuple or record is the horizontal alignment of the data.

24 :: What is a primary key constraint?

The primary key constraint is imposed on the column data to avoid null value and duplicate values.

25 :: Explain what is index?

Index is imposed on column or set of columns for fastest retrieval of data.