what are the forced views

Answers were Sorted based on User's Feedback



what are the forced views..

Answer / kalyan kumar

We can create a view with out table is known as forced view

Is This Answer Correct ?    36 Yes 2 No

what are the forced views..

Answer / devendar

A view can be created even if the defining query of the
view cannot be executed, as long as the CREATE VIEW command
has no syntax errors. We call such a view a view with
errors. For example, if a view refers to a non-existent
table or an invalid column of an existing table, or if the
owner of the view does not have the required privileges,
then the view can still be created and entered into the
data dictionary.

You can only create a view with errors by using the FORCE
option of the CREATE VIEW command:

CREATE FORCE VIEW AS ...;
When a view is created with errors, Oracle returns a
message and leaves the status of the view as INVALID. If
conditions later change so that the query of an invalid
view can be executed, then the view can be recompiled and
become valid. Oracle dynamically compiles the invalid view
if you attempt to use it.

Is This Answer Correct ?    15 Yes 0 No

what are the forced views..

Answer / venkat

forced view a view which we can create regardless of Table
,for this status is view created with comilation errors

Is This Answer Correct ?    16 Yes 3 No

what are the forced views..

Answer / lakshmi

creates a view whether or not base table exists

Is This Answer Correct ?    16 Yes 3 No

what are the forced views..

Answer / sunny

Without creating a table we can create a view by using forced view.

Is This Answer Correct ?    12 Yes 0 No

what are the forced views..

Answer / manoranjan sethy

You can create a view without taking the assistance of base table but base table signature must be required while creating of force view.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More SQL PLSQL Interview Questions

Is it possible to pass parameters to triggers?

0 Answers  


Which sql most popular?

0 Answers  


3. Select sum(a) sum_1,max(a) max_1 ,count(a) count_1 from ( ( select 1 a from dual union all Select to_number(‘2011’) a from dual union all select 1 a from dual) union select 2 b from dual);

1 Answers   Fintellix,


How well can multiple sessions access the same data simultaneously ?

1 Answers   Oracle,


Why do we use subquery?

0 Answers  






What are the popular database management systems in the it industry?

0 Answers  


how many values can the set function of mysql take? : Sql dba

0 Answers  


What is a sql instance vs database?

0 Answers  


Can we use delete in merge statement?

0 Answers  


Can one improve the performance of sql*loader? : aql loader

0 Answers  


Do stored procedures prevent sql injection?

0 Answers  


what is d diff between grant,commit,rollback n savepoint

1 Answers  


Categories