Talk about views

Answers were Sorted based on User's Feedback



Talk about views..

Answer / santosh kumar

View is the logical representation of subset of data from
one or more table.(This is database object but depends on
the table).
there are two types of view.....
1. simple view
2. complex view
SIMPLE VIEW
note:- 1. based on one table.
2. We can perform dml in this.
3. can not contain group function.
4. can not contain group by clause.
5. dml can not be perform when the base table have
not null(primary key, not null) constraint on
any column and that is not selected in the view.

COMPLEX VIEW
note:- 1. based on one or more table.
2. We can perform dml in this always.
3. can contain group function.
4. can contain group by clause.

Is This Answer Correct ?    20 Yes 5 No

Talk about views..

Answer / kiran kumar

DML operation can not perform on complex view
if the SELECT statement in a view contain in any one of the
following
1) DISTINCT operation
2) Aggregate functions
3) Group by or HAVING clause

Is This Answer Correct ?    6 Yes 1 No

Talk about views..

Answer / satish asnani

Answer from Santosh Kumar is correct with slight
improvement. The simple views are actually called Updateable
Views and Complex views are called Non-Updateable Views.
Updateable means we can perform DML operations(Insert,
Update & Delete) on such views. Non-Updateable means we
cannot perform DML operations.

Is This Answer Correct ?    5 Yes 1 No

Talk about views..

Answer / subbu

Yes the above is true. In simple a View is nothing but a
snapshot of original table/tables.

Is This Answer Correct ?    5 Yes 4 No

Talk about views..

Answer / santosh kumar

Hi Friends,
This is Santosh Kumar, I just want to update one important
point in my answer that i missed before is
1. complex view cann't be updated always but by using
autonomous transaction in trigger we can update complex view
also........
thanks,
Santosh Kumar

Is This Answer Correct ?    1 Yes 0 No

Talk about views..

Answer / satish asnani

Simple and complex views do not occupy HD space. The data
remains with the base table and views are just stored
queries which fetch data from base tables. But Materialized
Views maintain a copy of the records in their own space.
That is Materialized views as name suggests store a local
copy of the records from base tables and definitely occupy
HD space.

Is This Answer Correct ?    1 Yes 0 No

Talk about views..

Answer / sunitha

View is a logical representation of subset of data.
there are simple,complex and materialized views.
View does't take any space in database.
view are used for security purpose.

Is This Answer Correct ?    0 Yes 0 No

Talk about views..

Answer / udaykumar

view is a virtual memory.it doesn't contain the data but it
has a structure.
simple
complex
materialized
snapshot
force
inline
parametric

Is This Answer Correct ?    1 Yes 2 No

Talk about views..

Answer / joe

View is stored query.
it have not contain data. And have not take memory.
simple,complex,materialized

Is This Answer Correct ?    0 Yes 3 No

Talk about views..

Answer / karthi

view is same as table..the output of the query will be
stored in View..it is used to store the records in table
and also to retrieve it..

Is This Answer Correct ?    0 Yes 9 No

Post New Answer

More SQL PLSQL Interview Questions

declare v_count number(8,3); v_sal scott.emp.sal%type := '&P_sal'; cursor cur_name is select sal from scott.emp where sal between (v_sal-100) and (v_sal +1000); begin v_count :=nvl(sql%rowcount ,0); if v_count = 0 then dbms_output.put_line('no records are fetch in the given sal range'); else dbms_output.put_line('There is/are '||to_char(v_count)|| ' salaries are selected in the given range '); end if; end; in the above programm .....for any sal range ....always it shows the following message.. no records are fetch in the given sal range please find the mistake and share with me...with thansk and regards..sarao....

3 Answers   Satyam,


What is the benefit of foreign key?

0 Answers  


what is query cache in mysql? : Sql dba

0 Answers  


How to return more than one value from a function?

11 Answers   Satyam,


What is varchar example?

0 Answers  






how to create object in plsql

3 Answers   Microsoft,


Is left join faster than join?

0 Answers  


How do you use join?

0 Answers  


What is the limitation on the block size of pl/sql?

0 Answers  


What happens if a procedure that updates a column of table X is called in a database trigger of the same table ?

1 Answers  


What is the best sql course?

0 Answers  


Why do we use set serveroutput on?

0 Answers  


Categories