Run the following query in Query Builder to find the sql behind a view without having to go into SQL Developer or other Oracle database tool such as Toad :
SELECT text FROM all_views WHERE view_name = 'INSERT_VIEW_NAME'
Modified on: Tue, 25 May, 2021 at 11:19 AM
Run the following query in Query Builder to find the sql behind a view without having to go into SQL Developer or other Oracle database tool such as Toad :
SELECT text FROM all_views WHERE view_name = 'INSERT_VIEW_NAME'
Did you find it helpful? Yes No
Send feedback