*/
public void insertTablesUsingAuxBeanNotSup(final String db1, final String db2) throws Exception {
// inserts a correct table in the first database
insertTable(db1);
// creates the auxiliary bean
ItfTransactionMisc00 slsbTransactionMisc00 = EJBHelper.getBeanRemoteInstance(SLSBTransactionMisc00.class,
ItfTransactionMisc00.class);
// calls insert table for the auxiliary bean in the second database
slsbTransactionMisc00.insertTableWithNotSupported(db2);
// makes an illegal insertion to force a rollback.
makeSQLError(db2);
}