Please enter search query.
Search <book_title>...
InfoScale™ 9.0 Cluster Server Implementation Guide for Oracle - Windows
Last Published:
2025-04-13
Product(s):
InfoScale & Storage Foundation (9.0)
Platform: Windows
- Introducing the VCS agents for Oracle and NetApp
- Installing and configuring VCS
- Installing and configuring Oracle
- Prerequisites for installing Oracle
- Managing storage using Windows Logical Disk Manager
- Managing storage using NetApp filer
- Configuring Oracle on the first node
- Associating the database with the listener
- Configuring the Oracle database
- Configuring the Oracle service group
- Administering the Oracle service group
- Troubleshooting
- Appendix A. Resource type definitions
- Appendix B. Sample configuration
- Appendix C. Oracle Enterprise Manager 10g Grid Control with VCS
- Making the additional agent highly available
About the Info function
The Info function provides static and dynamic information about the state of the database.
The function retrieves the following static information:
Version | InstanceNo |
HostName | StartupTime |
Parallel | Thread |
InstanceRole | InstanceName |
The entry point retrieves the following dynamic information:
InstanceStatus | Logins |
DatabaseStatus | ShutdownPending |
You can add additional attributes by adding SQL statements to the file %VCS_HOME%\bin\Oracle\scripts\info\db_info.sql. Here %VCS_Home% is the product installation directory, typically C:\Program Files\Veritas\Cluster Server.
For example:
select 'static:HostName:'||host_name from v$instance; select 'dynamic:ShutdownPending:'||shutdown_pending from v$instance;
The format of the selected record must be as follows:
attribute_type:userkey_name:userkey_value
The variable attribute_type can take the value static and/or dynamic.