Chapter 16 – View Functions

“Cowards die many times before their deaths; the valiant never taste of death but once.”

- William Shakespeare

The Fundamentals of Views

View Fundamentals

A view is a virtual table.

A view may define a subset of columns

A view can even define a subset of rows if it has a WHERE clause

A view never duplicates data or stores the data separately

View definitions are stored in the Data Dictionary, not the user's space

Views provide security

View Advantages

An additional level of security is provided.

Helps the business user not miss join conditions.

Help control read and update privileges.

Unaffected when new columns are added to a table.

Unaffected when a column is dropped unless its referenced in the view.

View Recommendations

Only load utilities should ever have direct access to tables during the
ETL process. Create one view per base table.

The above is designed to introduce View fundamentals, View advantages and View recommendations.

Creating a Simple View to Restrict Sensitive Columns

image

The purposes of views is to restrict access to certain columns, derive columns or Join Tables and to restrict access to certain rows (if a WHERE clause is used). This view does not allow the user to see the column salary.

Creating a Simple View to Restrict Rows

image

The purposes of views is to restrict access to certain columns, derive columns or Join Tables and to restrict access to certain rows (if a WHERE clause is used). This view does not allow the user to see information about rows unless the rows have a Dept_No of either 300 or 400.

Basic Rules for Views

No ORDER BY inside the View  CREATE (exceptions exist)

All Aggregation needs to have an ALIAS

Any Derived columns (such as Math) needs an ALIAS

image

Above are the basic rules of Views with excellent examples.

Exception to the ORDER BY Rule inside a View

image

There are EXCEPTIONS to the ORDER BY rule as an ANSI OLAP statements also works inside a View.

Views sometimes CREATED for Formatting

CREATE VIEW  Order_View  AS

SELECT

  Order_Number          AS Ord_No

 ,Customer_Number   AS Cust_No

 ,to_char (Order_Date, 'DD Mon YYYY') as Ord_Date

 ,Order_Total

 FROM Order_Table ;

SELECT *

FROM Order_View

ORDER BY Ord_Date ;

image

Views are designed to do many things. In the example above, this view formats data.

Creating a View to Join Tables Together

CREATE VIEW  OrdCust_V  AS

SELECT  Order_Number   AS Ord_No

,O.Customer_Number        AS Cust_No

,to_char (Order_Date, 'DD Mon YYYY') as Ord_Date

,Order_Total, Customer_Name

FROM  Order_Table as O INNER JOIN Customer_Table as C

ON O.Customer_Number = C.Customer_Number ;

SELECT *

FROM OrdCust_V

ORDER BY Ord_Date ;

image

This view is designed to join two tables together. By creating a view, we have now made it easier for the user community to join these tables by merely selecting the columns you want from the view.

Another Way to Alias Columns in a View CREATE

image

SELECT *

FROM E_View

ORDER BY Mnth_Sal ;

image

Will this View CREATE work or will it error? It works fine because it’s aliased above!

The Standard Way Most Aliasing is done

image

The ALIAS for Salary / 12 that’ll be used in this example is Sal_Monthly. This form of aliasing is most often used.

What Happens When Both Aliasing Options Are Present

image

SELECT *

FROM Emp_v3

ORDER BY 3 ;

image

The ALIAS for Salary / 12 that’ll be used in this example is Mnth_Sal. It came first at the top, even though it is aliased in the SELECT list also.

Resolving Aliasing Problems in a View CREATE

image

SELECT *

FROM Emp_v3

ORDER BY Sal_Mnth ;

What happens when this query runs?

What will happen in the above query?

Answer to Resolving Aliasing Problems in a View CREATE

image

SELECT *

FROM Emp_v3

ORDER BY Sal_Mnth ;

What happens when this query runs?

ErrorSal_Mnth is unrecognized

The query above errors because Sal_Mnth is an unrecognized alias. That is because we did our aliasing at the top so this makes the alias right after Salary/12 non-valid for use when querying the view.

Aggregates on View Aggregates

CREATE VIEW Aggreg_Order_v  AS

SELECT Customer_Number

,Order_DateAS  Yr_Mth_Orders

,COUNT(Order_Total)AS Order_Cnt

,SUM(Order_Total)AS  Order_Sum

,AVG(Order_Total)AS  Order_Avg

FROMOrder_Table

GROUP BY  Customer_Number, Order_Date ;

image

The example above show how we put a SUM on the aggregate Order_Sum!

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset