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

Database view updation?

Former Member
0 Likes
1,423

Hi guys,

Can any one tell me how the database view is updated automatically when we add a field in the tables used by database view.

Thanks,

GURU

5 REPLIES 5
Read only

Former Member
0 Likes
972

Hi

Database views are created by joining the application related transparent btables

when those transaparent tables are updated then accordingly the Views are get updated as per the joins defined between the tables

Database views are implement an inner join, that is, only records of the primary table (selected via the join operation) for which the corresponding records of the secondary tables also exist are fetched. Inconsistencies between primary and secondary table could, therefore, lead to a reduced selection set.

In database views, the join conditions can be formulated using equality relationships between any base fields. In the other types of view, they must be taken from existing foreign keys. That is, tables can only be collected in a maintenance or help view if they are linked to one another via foreign keys.

Regards

Anji

Read only

hymavathi_oruganti
Active Contributor
0 Likes
972

Hi, using database view, we can update only a single table.

using database view we can update only single table. but we can join multiple tables and read data from multiple tables.

To update multiple tables, we go for maintanace views.

any view is created by joining the database table fields.

so, when the value in the field is updated, obviously the view should have the latest values as the view uses those fields.otherwise synchronization will not be there.

Read only

0 Likes
972

Hi,

I have added a field in the EQUI table which is used by database view ITOB.

It has been updated in one system but in other system it is still not updated.

Is there any reason why the view is not updated?

Thanks,

GURU

Read only

0 Likes
972

in the other syatem, is the table EQUI UPDATED IN THE OTHER SYSTEM?

Read only

0 Likes
972

Yes the table is updated in other system.