MS SQL Server Views Question:
Download Questions PDF

Explain What are partitioned views and distributed partitioned views?

SQL Server Views Interview Question
SQL Server Views Interview Question

Answer:

Partitioned views allow data in a large table to be split into smaller tables. These small tables are called as member tables. The split is done based on range of data values in one of the columns.

In a distributed portioned view, each member table is on a separate member server. This means that the member tables are distributed. To locate these tables easily, the database name on each server should be same.

Download SQL Server Views Interview Questions And Answers PDF

Previous QuestionNext Question
What are views?Can you explain What is Indexed view? How to create it?