Explain Data integration also with its type.

 Data integration is a data preprocessing technique that combines data from multiple sources and provides users a unified view of these data. These sources may include multiple databases, data cubes, or flat files. One of the most well-known implementations of data integration is building an enterprise's data warehouse. The benefit of a data warehouse enables a business to perform analyses based on the data in the data warehouse. 


There are mainly 2 major approaches for data integration:-

Tight Coupling: In tight coupling, data is combined from different sources into a single physical location through the process of ETL -Extraction, Transformation, and Loading

Loose Coupling: In loose coupling data only remains in the actual source databases. In this approach, an interface is provided that takes a query from the user and transforms it in a way the source database can understand, and then sends the query directly to the source databases to obtain the result.

Comments

Popular posts from this blog

Legislations and IT in Nepal MCQ IT Officer(PSC)

Discuss classification or taxonomy of virtualization at different levels.

Suppose that a data warehouse consists of the three dimensions time, doctor, and patient, and the two measures count and charge, where a charge is the fee that a doctor charges a patient for a visit. a) Draw a schema diagram for the above data warehouse using one of the schemas. [star, snowflake, fact constellation] b) Starting with the base cuboid [day, doctor, patient], what specific OLAP operations should be performed in order to list the total fee collected by each doctor in 2004? c) To obtain the same list, write an SQL query assuming the data are stored in a relational database with the schema fee (day, month, year, doctor, hospital, patient, count, charge)