SQL Server Views

  Home  MS SQL Server  SQL Server Views


“SQL Server Views frequently Asked Questions by expert members with experience in MS SQL Server views. These interview questions and answers on SQL Server Views will help you strengthen your technical skills, prepare for the interviews and quickly revise the concepts. So get preparation for the SQL Server Views job interview”



7 SQL Server Views Questions And Answers

1⟩ Do you know what are the restrictions that views have to follow?

Since a view is a virtual table – columns of the view cannot be renamed. To change anything in the view, the view must be dropped and create again.

The select statement on the view cannot contain ORDER BY or INTO TEMP

When a table or view is dropped, any views in the same database are also dropped.

It is not possible to create an index on a view

It is not possible to use DELETE to update a view that is defined as a join.

 174 views

2⟩ Explain Partitioned view?

Partitioned view joins the horizontally portioned data. This data may belong to one ore more servers. It makes the data appear as one table. A portioned view can either be local or distributed. A local portioned view resides on the same instance of the SQL server while the distributed may reside on a different server.

Syntax:

The view is then created by UNIONing all the tables and an updateable partitioned View results

Server 1 :

CREATE TABLE Customer1 (CustomerID INTEGER PRIMARY KEY CHECK (CustomerID BETWEEN 1 AND 32999), ... -- Additional column definitions)

Similar tables created for Server 2 and 3

Partitioned view for server 1

CREATE VIEW Customers AS

SELECT * FROM CompanyDatabase.TableOwner.Customer1

UNION ALL

SELECT * FROM Server2.CompanyDatabase.TableOwner.Customer2

UNION ALL

SELECT * FROM Server3.CompanyDatabase.TableOwner.Customer3

 180 views

3⟩ Explain Indexed view?

An index view has a unique clustered index created on it. They exist as rows on the disk. Because they are saved on the disk, the response time to a query is fast at the cost of space consumption. They are more commonly used in scenarios when data modification is less.

Syntax:

Create Index CREATE [UNIQUE ] [ CLUSTERED | NONCLUSTERED ] INDEX index_name ON table_name

The view is created using the CREATE VIEW synatx

 183 views

4⟩ Explain the functionalities that views support?

Views can subset data in a table

They can join multiple tables into one virtual table

Views can provide security and decrease complexity

They save space because only their definition is stored.

They can also be used to create abstraction

Materialized views are commonly used in data warehousing. They represent a snapshot of the data from remote sources.

Views can create other calculated fields based on values in the real underlying tables

 183 views

5⟩ What are views?

A view can be considered as a virtual table. It does not physically exist. It is based on the result set of a SQL statement. A view contains rows and tables just like a real table.

 192 views

6⟩ Explain What are partitioned views and distributed partitioned views?

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.

 228 views

7⟩ Can you explain What is Indexed view? How to create it?

In an indexed view, the data is already computed and stored. Data can be accessed by a unique index. This index is a clustered index. In order to create an index the syntax is

CREATE [UNIQUE], [CLUSTERED | NONCLUSTERED] INDEX index_name

ON {view}

[WITH <index_option>]

[ON filegrp]

 174 views