Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

views

Former Member
0 Likes
733

Will the views get effected when updating the database?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
713

Hi,

yes, the view will also be updated automatically when we update the database.

reward points if useful.

regards

vivek

5 REPLIES 5
Read only

Former Member
0 Likes
713

yes

Read only

Former Member
0 Likes
713

hi,

View are improves perfromance in the following aspects

1. If you want to use more than two table in 'JOIN' condition better to use Views . It will improves performance of a program

2. If you want to use mutiple FOR ALL ENTRIES clause, better to club all SELECT statement in a view.

note:

1.Views does not contain data in it. It fetches data from the database only depending on the condition ...

2.Views are part of data dictionary. They are a window to view the data in database

3.views can be used to give security to data. users can be allowed to view only basic data only

Regards

Reshma

Read only

Former Member
0 Likes
714

Hi,

yes, the view will also be updated automatically when we update the database.

reward points if useful.

regards

vivek

Read only

Former Member
0 Likes
713

hi,

yes def vies by themselves dont have any data they hold the data from tables only oaccording to certain condotions so when u update tables it will affect the corresponding views also

reward if helpful

ravi

Read only

Former Member
0 Likes
713

Hi,

Views will not be afftected when updating the database tables.

Views data will be fetched during runtime.

Reward if useful,

Thanks,

USR