evan-miller-jumpmind on 3.14
0003960: Mapped Oracle NVARCHAR… (compare)
evan-miller-jumpmind on 3.14
0003961: Mapped Oracle XMLTYPE … (compare)
evan-miller-jumpmind on 3.14
0003964: Mapped Oracle REAL typ… (compare)
evan-miller-jumpmind on 3.14
0003966: Mapped Oracle CLOB and… Merge branch '3.14' of https://… (compare)
erilong on 3.14
0005411: After installing Swagg… (compare)
erilong on 3.14
0005410: Cancel load and some b… (compare)
evan-miller-jumpmind on 3.14
0003965: Mapped Oracle LONG typ… (compare)
evan-miller-jumpmind on 3.14
0004191: Prevented dbexport fro… (compare)
evan-miller-jumpmind on 3.14
0003419: Prevented SQLite from … (compare)
evan-miller-jumpmind on 3.14
0004001: Added null check for p… (compare)
evan-miller-jumpmind on 3.14
0004001: Fixed newid() and news… (compare)
erilong on 3.14
add server migration to appendix (compare)
evan-miller-jumpmind on 3.14
0005408: Added hashCode() and e… (compare)
evan-miller-jumpmind on 3.13
0005405: Fixed sym_trigger_hist… (compare)
evan-miller-jumpmind on 3.14
0005406: Fixed sym_trigger_hist… (compare)
evan-miller-jumpmind on 3.14
0005399: Renamed loadCustomJobs… (compare)
evan-miller-jumpmind on 3.13
0005399: Renamed loadCustomJobs… (compare)
evan-miller-jumpmind on 3.14
0005399: Adjusted JobManager.lo… (compare)
evan-miller-jumpmind on 3.13
0005399: Adjusted JobManager.lo… (compare)
philipmarzullo64 on 3.14
0005398: Batch Locking issue wh… (compare)
@joshahicks I managed to get connected using DBeaver on my Mac (through an SSH tunnel). However I'm still getting the connection refused error when running the following command
../bin/symadmin --engine corp-000 create-sym-tables
this is the configuration of corp-000
(yes, the actual database name is databasename
)
db.url=jdbc:sybase:Tds:localhost:5000/databasename
I'm facing an issue now when trying to create-sym-tables
- it's giving an error
java.sql.SQLException: JZ0SB: Parameter index out of range: 1.
Any ideas?
Hi, I am upgrading from 3.8 to 3.13 and noticed that the entries in the sym_outgoing_batch table for channel_id = 'heartbeat' are being inserted but when the target node is offline that the sym_outgoing_batch.status of the previous entries are no longer updated. Hence when the node comes back online it can have many 'outdated superfluous' heartbeat entries that must be synched rather than just the most recent. I noticed that in revision 0003883 5/03/19 that the PushHeartbeatListener.heartbeat() method was changed from
log.debug("Updating my node info");
engine.getOutgoingBatchService().markHeartbeatAsSent(); <---- this has been removed
engine.getNodeService().updateNodeHostForCurrentNode();
log.debug("Done updating my node info");
to
log.debug("Updating my node info");
if (engine.getOutgoingBatchService().countOutgoingBatchesUnsentHeartbeat() == 0) {
engine.getNodeService().updateNodeHostForCurrentNode();
}
log.debug("Done updating my node info");
Is there some other functionality that replaced the updating of the 'outdated' sym_outgoing_batch heartbeat entries that I need to configure for 3.13 or is it now intended for these to be synched?