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

Updates to the table from the database level.

Former Member
0 Likes
784

Hi Dear All,

If we do some updates to the table at the Database Level, like i deleted some records from the table at the Oracle level. But I'm still able to see the same deleted records from the Data Dictionary(SE11) at the application level.

Can you pl explain the mechanism, that how it is possible and why.

best regards

Mahesh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
749

transparent tables store data directly....if you delete some data from transparent tables, the same is reflected in the database (oracle) but the reverse is not true...if you modify the database table contents directly...the dictionary table remains intact...

transparent tables have a one-to-one relationship with the database tables....

hope that clarifies a bit....

(somebody correct me if i am horribly wrong)

Hi Dear All,

If we do some updates to the table at the Database Level, like i deleted some records from the table at the Oracle level. But I'm still able to see the same deleted records from the Data Dictionary(SE11) at the application level.

Can you pl explain the mechanism, that how it is possible and why.

best regards

Mahesh

4 REPLIES 4
Read only

Former Member
0 Likes
749

hi,

sorry i didnt get about the oracle level.

and the point is we can delete by writing a code delete database table but not advisable.

Read only

Former Member
0 Likes
750

transparent tables store data directly....if you delete some data from transparent tables, the same is reflected in the database (oracle) but the reverse is not true...if you modify the database table contents directly...the dictionary table remains intact...

transparent tables have a one-to-one relationship with the database tables....

hope that clarifies a bit....

(somebody correct me if i am horribly wrong)

Read only

Former Member
0 Likes
749

Not possible!!!

Else do 1 thng go to the table and go to database table utilty

and then adujst database table

Hope it helps

Read only

0 Likes
749

Hi,

Thanks for the replies, but my doubt is there still. How can we get the data from the table, eventhough there is no data at the underlying database.

Hi Bhanu,

Even after adjusting database table also, i'm able to see the records

Thanks