Data Warehouse Developer

  Home  Data Warehouse  Data Warehouse Developer


“Data Warehouse Developer related Frequently Asked Questions by expert members with professional career as Data Warehouse Developer. These list of interview questions and answers will help you strengthen your technical skills, prepare for the new job interview and quickly revise your concepts”



55 Data Warehouse Developer Questions And Answers

41⟩ Explain me why do we override the execute method is struts?

As part of Struts Framework, we can develop the Action Servlet, ActionForm servlets (ActionServlet means what class extends the Action class, and ActionForm means what class extends the Action Form class) and other servlet classes.

In case of ActionForm class, we can develop validate() method. This method will return the ActionErrors object. In this method we can write the validation code. If this method returns null or ActionErrors with size=0, the web container will call execute() as part of the Action class.

If it returns size > 0, it will not call the execute() method. It will rather execute the jsp, servlet or html file as value for the input attribute as part of the attribute in struts-config.xml file.

 126 views

42⟩ What is the functions of a load manager?

A load manager extracts data from the source system. Fast load the extracted data into temporary data store. Perform simple transformations into structure similar to the one in the data warehouse.

 131 views

44⟩ Can you define metadata?

Metadata is simply defined as data about data. In other words, we can say that metadata is the summarized data that leads us to the detailed data.

 125 views

46⟩ Do you know what is XMLA?

☛ XMLA is XML for Analysis which can be considered as a standard for accessing data in OLAP, data mining or data sources on the internet. It is Simple Object Access Protocol.XMLA uses ‘discover’ and ‘Execute’ methods. Discover fetches information from the internet while Execute allows the applications to execute against the data sources.

☛ XMLA is an industry standard for accessing data in analytical systems, such as OLAP. It is based on XML, SOAP and HTTP.

☛ XMLA specifies MDXML as the query language. In the XMLA 1.1 version, the only construct in MDXML is an MDX statement enclosed in the tag

 143 views

47⟩ Explain me what is the difference between view and materialized view?

View:

☛ Tail raid data representation is provided by a view to access data from its table.

☛ It has logical structure that does not occupy space.

☛ Changes get affected in corresponding tables.

Materialized view:

☛ Pre-calculated data persists in materialized view.

☛ It has physical data space occupation.

☛ Changes will not get affected in corresponding tables.

 126 views

48⟩ Explain me the functions of a warehouse manager?

The warehouse manager performs consistency and referential integrity checks, creates the indexes, business views, partition views against the base data, transforms and merge the source data into the temporary store into the published data warehouse, backs up the data in the data warehouse, and archives the data that has reached the end of its captured life.

 121 views

51⟩ Do you know what is load manager?

A load manager performs the operations required to extract and load the process. The size and complexity of load manager varies between specific solutions from data warehouse to data warehouse.

 132 views

52⟩ Tell us how do you load the time dimension?

Time dimensions are usually loaded by a program that loops through all possible dates appearing in the data. It is not unusual for 100 years to be represented in a time dimension, with one row per day.

 129 views

54⟩ Can you define data warehouse?

Data warehouse is a subject oriented, integrated, time-variant, and nonvolatile collection of data that supports management's decision-making process.

 141 views