Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.

Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |

Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
- Adapter Configuration Files
- The adapter.conf File
- The simplifiedConfiguration.xml File
- The orm.xml File
- The reconciliation_types.txt File
- The reconciliation_rules.txt File (for backwards compatibility)
- The transformations.txt File
- The discriminator.properties File
- The replication_config.txt File
- The fixed_values.txt File
- The persistence.xml File
The discriminator.properties File
This file maps each supported CI type (that is also used as a discriminator value in orm.xml) to a comma-separated list of possible corresponding values of the discriminator column, or a condition to match possible values of the discriminator column.
If a condition is used, use the syntax: like(condition)
, where condition
is a string that can contain the following wildcards:
-
% (percent sign) - allows you to match any string of any length (including a zero length string)
-
_ (underscore) - allows you to match a single character
For example, like(%unix%)
will match unix, linux, unix-aix, and so on. Like conditions may only be applied to string columns.
You can also have a single discriminator value mapped to any value that does not belong to another discriminator by stating 'all-other'.
If the adapter you are creating uses discriminator capabilities, you must define all the discriminator values in the discriminator.properties file.
Example of Discriminator Mapping:
For example, the adapter supports the CI types node
, nt
, and unix
, and the database contains a single table named t_nodes
that contains a column called type. If the type is 10001, the row represents a node; if the type is 10004, it represents a unix machine, and so on. The discriminator.properties file might look like this:
node=10001, 10005 nt=10002,10003 unix=2% mainframe=all-other
The orm.xml file includes the following code:
<entity class="generic_db_adapter.node" > <table name="t_nodes" /> ... <inheritance strategy="SINGLE_TABLE" /> <discriminator-value>node</discriminator-value> <discriminator-column name="type" /> ... </entity> <entity class="generic_db_adapter.nt" name="nt"> <discriminator-value>nt</discriminator-value> <attributes> </entity> <entity class="generic_db_adapter.unix" name="unix"> <discriminator-value>unix</discriminator-value> <attributes> </entity>
The discriminator_column attribute is then calculated as follows:
-
If type contains
10002
or10003
for a certain entry, the entry is mapped to the nt CIT. -
If type contains
10001
or10005
for a certain entry, the entry is mapped to the node CIT. -
If type starts with
2
for a certain entry, the entry is mapped to the unix CIT. -
Any other value in the type column is mapped to the mainframe CIT.
Note The node CIT is also the parent of nt and unix.
We welcome your comments!
To open the configured email client on this computer, open an email window.
Otherwise, copy the information below to a web mail client, and send this email to ovdoc-asm@hpe.com.
Help Topic ID:
Product:
Topic Title:
Feedback: