Hi all,
Is there a way in t-sql that will allow me to retrieve the statements of a view. e.g.
select * from systable_code where view_name = 'my_view'
and the results would be something like...
ID sql
1 select * from tbl_customers
I am creating an application that should allow to compare the two views code as it is in the database.
Thanks,
Husain