Sharing DBA experience to all -- Oracle,MS SQL, DB2 , Netezza DBA,postgreSQL,AWS Redshift,MySQL,oracle SAP
scripts to find view list from the schema
select table_schema as schema_name,
table_name as view_name
from information_schema.views
where table_schema in ('app_username')
order by schema_name,
view_name;
No comments:
Post a Comment