mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
oracle views fixed
This commit is contained in:
@@ -4,9 +4,10 @@ select avv.*,
|
||||
from (select
|
||||
view_name as "pure_name",
|
||||
-- owner as "schema_name",
|
||||
SUBSTR(text_vc, 1, 3900) AS "create_sql"
|
||||
-- SUBSTR(text_vc, 1, 3900) AS "create_sql"
|
||||
text as "create_sql"
|
||||
from all_views av
|
||||
where owner = '$owner' and text_vc is not null
|
||||
where owner = '$owner' and text is not null
|
||||
) avv
|
||||
where 'views:' || "pure_name" =OBJECT_ID_CONDITION
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user