oracle view fix

This commit is contained in:
Jan Prochazka
2024-12-13 11:07:08 +01:00
parent 33db85f03b
commit ad4a599800
3 changed files with 20 additions and 20 deletions

View File

@@ -4,7 +4,7 @@ from (select
view_name as "pure_name",
text as "create_sql"
from all_views av
where owner = 'C##test' and text is not null
where owner = '$owner' and text is not null
) avv
where 'views:' || "pure_name" is not null
`;