DBA Data[Home] [Help]

APPS.FND_ADG_UTILITY dependencies on V$DATABASE

Line 1236: from v$database a;

1232: /* Make sure same dbid,name */
1233:
1234: select a.dbid,a.name
1235: into l_dbid,l_dbname
1236: from v$database a;
1237:
1238: execute immediate
1239: 'select a.dbid,a.name,a.open_mode,a.database_role ' ||
1240: ' from v$database@'||p_link_name|| ' a'

Line 1240: ' from v$database@'||p_link_name|| ' a'

1236: from v$database a;
1237:
1238: execute immediate
1239: 'select a.dbid,a.name,a.open_mode,a.database_role ' ||
1240: ' from v$database@'||p_link_name|| ' a'
1241: into l_rpc_dbid,l_rpc_dbname,l_rpc_open_mode,l_rpc_database_role;
1242:
1243: if ( l_dbid <> l_rpc_dbid or
1244: l_dbname <> l_rpc_dbname )