}
private void copyTable(final String tableName, final XConnection sourceConnection, final XConnection destConnection) throws Exception, IOException, java.lang.Exception
{
final XInteractionHandler interAction = new CopyTableInterActionHandler(this);
final XComponentContext context = getComponentContext();
final XPropertySet sourceDescriptor = DataAccessDescriptorFactory.get(context).createDataAccessDescriptor();
sourceDescriptor.setPropertyValue("CommandType", CommandType.TABLE);
sourceDescriptor.setPropertyValue("Command", tableName);
sourceDescriptor.setPropertyValue("ActiveConnection", sourceConnection);