Using SQL commands to shorten the Request ID field
This section contains information about:
Only administrators running BMC Remedy AR System with an SQL database can update existing request ID field values by directly accessing the SQL database. The syntax for direct access is different for each SQL database that BMC Remedy AR System supports.
To use the methods described in this section, you must be familiar with basic commands in the SQL command interface. SQL commands bypass BMC Remedy AR System completely. If you bypass BMC Remedy AR System, verify that all data is valid when you are finished.
Finding the name of the table
Before you can shorten the request ID field value, you must find the table holding the form being changed.
To find the table name
- Find the correct schema ID for the form with the following query:
Select SchemaId, name from arschema order by 2
This query returns a list of schema IDs and associated form names. - Find the correct field ID with the following query. (The example assumes that the schema ID is 43.)
Select FieldId, FieldName from field where SchemaId = 43
This query returns a list of field IDs and associated field names. - Use the schema ID, field ID, and information in the following table to construct the table name.
AR System table name constructs
Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*