mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -04:00
21 lines
464 B
Plaintext
21 lines
464 B
Plaintext
create or replace package body gold_override as
|
|
|
|
function load_objvar_overrides(p_schema varchar2) return cursortype
|
|
as
|
|
result_cursor cursortype;
|
|
begin
|
|
open result_cursor for
|
|
'select /*+ ORDERED USE_NL(T)*/ ' ||
|
|
't.object_id, t.name_id, t.type, t.value ' ||
|
|
'from ' ||
|
|
p_schema || 'object_list l, ' ||
|
|
'object_variables t ' ||
|
|
'where l.object_id = t.object_id ' ||
|
|
'and nvl(t.detached,0) = 0';
|
|
|
|
return result_cursor;
|
|
end;
|
|
|
|
end;
|
|
/
|