Network Deployment (Distributed operating systems), v8.0 > Reference > Commands (wsadmin scripting)
IdMgrDBSetup command group
Use the Jython or Jacl scripting language to manage the federated repository schema using wsadmin. 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.
Required parameters
-name
Name of the property for which the data is to be deleted. We 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)
We 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
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)
We 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 example...
### Jacl
$AdminTask deleteIdMgrPropertyExtensionEntityData {-name property_name_1}
Jython string: AdminTask.deleteIdMgrPropertyExtensionEntityData ('[-name property_name_1]')
Use Jython list: AdminTask.deleteIdMgrPropertyExtensionEntityData (['-name', 'property_name_1'])
Interactive example...
### Jacl
$AdminTask deleteIdMgrPropertyExtensionEntityData {-interactive}
Jython string: AdminTask.deleteIdMgrPropertyExtensionEntityData ('[-interactive]')
Use Jython list: AdminTask.deleteIdMgrPropertyExtensionEntityData (['-interactive'])
Use the wsadmin scripting AdminTask object for scripted administration
Related
Commands using wsadmin.sh
IdMgrDataModel command group