Difference between revisions of "Bop odump"
From SDU
| Line 32: | Line 32: | ||
== Examples == | == Examples == | ||
| − | * Dump the Reference number for all Requests | + | * Dump the Reference number for all Requests: |
bop_odmp domsrvr cr "" ref_num | bop_odmp domsrvr cr "" ref_num | ||
| − | * Dump all | + | * Dump all Incidents attached to Problem 12 and still active: |
bop_odump domsrvr in " problem.ref_num='12' AND active=1 " | bop_odump domsrvr in " problem.ref_num='12' AND active=1 " | ||
| − | * Dump all Requests that belong to an Analyst with the username Fred, show | + | * Dump all Requests that belong to an Analyst with the username Fred, show the Affected user name: |
| − | bop_odump domsrvr cr " assignee.userid='fred' " | + | bop_odump domsrvr cr " assignee.userid='fred' " customer.combo_name |
Revision as of 20:10, 11 February 2008
Use this command to dump the object information (attributes) from the database. Not quite as useful as pdm_extract (doesn't support formatting the output and doesn't show by default all fields), but allows the use of references in the object dotted notation.
Usage
pdm_odump <domsrvr_name> <object_factory> <where_clause> [attributes]
| Parameter | Description | Remarks | |
|---|---|---|---|
| <domsrvr_name> | the name of the object engine that is interrogated. | required - usually this is simply domsrvr | |
| <object_factory> | the name of the object that you want to dump | required for example 'cr', 'chg', 'alg', 'nr' | |
| <where_clause> | additional filter for the list, has the form of an SQL 'where' clause | required - just put "" for an empty clause | |
| [attributes] | list of attributes of the object to return from the search | the list of attributes is space separated. |
Examples
- Dump the Reference number for all Requests:
bop_odmp domsrvr cr "" ref_num
- Dump all Incidents attached to Problem 12 and still active:
bop_odump domsrvr in " problem.ref_num='12' AND active=1 "
- Dump all Requests that belong to an Analyst with the username Fred, show the Affected user name:
bop_odump domsrvr cr " assignee.userid='fred' " customer.combo_name
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.
To discuss or ask questions about this article, select the discussion tab above.