27: begin
28: begin
29: select version
30: into dbversion
31: from v$instance;
32:
33: exception
34: when others then
35: null;
185: begin
186:
187: select host_name
188: into node_name
189: from v$instance;
190:
191: return node_name;
192:
193: exception