mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-28 11:56:00 +00:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
module.exports = `
|
|
select avv.*,
|
|
ora_hash("create_sql") as "hash_code"
|
|
from (select
|
|
view_name as "pure_name",
|
|
owner as "schema_name",
|
|
SUBSTR(text_vc, 1, 3900) AS "create_sql"
|
|
from all_views av
|
|
where text_vc is not null
|
|
) avv
|
|
where "pure_name" =OBJECT_ID_CONDITION
|
|
`;
|