IdMgrDBSetup command group for the AdminTask object
You can use the Jython or Jacl scripting language to manage the federated repository schema using the wsadmin tool. Use the deleteIdMgrPropertyExtensionEntityDatacommand and its parameters in the IdMgrDBSetup group to manage the property extension repository. The command is available in both connected and local mode using the –conntype NONE option.
deleteIdMgrPropertyExtensionEntityData
The deleteIdMgrPropertyExtensionEntityData command deletes property data from the property extension repository. The command also releases the space that is held by the property data in the property extension repository.
Target Object
None.Required parameters
- -name
- Use this parameter to specify the name of the property for which
the data is to be deleted.
You can use a valid namespace prefix to refer to the property in a specific namespace. The default namespace prefix is wim. Use a colon (:) as the delimiter to specify the namespace prefix. For example, you can use your_ext:contact_number
- your_ext is the namespace prefix.
- contact_number is the property name.
(String, required)
Important: You must specify the same namespace prefix that you used to extend the property. You can use the listIdMgrPropertyExtensions command, which is part of the IdMgrDataModel command group, to retrieve this value.
Optional parameters
- -entityTypeNames
- Use this parameter to specify the name of one or more existing
entity types for which the property data is to be deleted. Use the
semicolon (;) as the delimiter to specify multiple entity types.
You can use a valid namespace prefix to refer to the entity type names in a specific namespace. The default namespace prefix used is wim. Use colon (:) to specify the namespace prefix. For example, you can use your_ext:person_account
- your_ext is the namespace prefix.
- person_account is the entity type name.
(String, optional)
Important: You must specify the same namespace prefix that you used to extend the property. You can use the listIdMgrPropertyExtensions command, which is part of the IdMgrDataModel command group, to retrieve this value.
- -dbAdminId
- Use this parameter to specify the login identity of the database
administrator when you run this command in the local mode.
(String, optional)
- -dbAdminPassword
- Use this parameter to specify the password of the database administrator
when you run this command in the local mode.
(String, optional)
Examples
Batch mode example usage:
- Using Jacl:
$AdminTask deleteIdMgrPropertyExtensionEntityData {-name property_name_1}
- Using Jython string:
AdminTask.deleteIdMgrPropertyExtensionEntityData ('[-name property_name_1]')
- Using Jython list:
AdminTask.deleteIdMgrPropertyExtensionEntityData (['-name', 'property_name_1'])
Interactive mode example usage:
- Using Jacl:
$AdminTask deleteIdMgrPropertyExtensionEntityData {-interactive}
- Using Jython string:
AdminTask.deleteIdMgrPropertyExtensionEntityData ('[-interactive]')
- Using Jython list:
AdminTask.deleteIdMgrPropertyExtensionEntityData (['-interactive'])