How to get the create statement of sql view
656582Aug 25 2008 — edited Aug 26 2008I have a technical problem
There is a view in the database, say "topstudentsview" and sql statement is "select * from students where marks > 90;"
My question is how to get the sql statement of the view. I want to get the sql statement of topstudentsview
The equivalent in MS Sql is
sp_helptext 'topstudentsview'
How in Oracle?
Thank you