I am trying to migrate/convert the default Postgres database to a SQL Server 2012 standard on the same server (or different server if migrated sucessfully).
When I do a backup and restore on the same server using default database everything is fine.
But when backuping up the database, changing sucessfully to the new SQL server and restoring, now I come up the some funny warning messages in the command line window:
java.lang.NullPointerException
at java.util.Hashtable.put(Unknown Source)
at java.util.Properties.setProperty(Unknown Source)
at com.adventnet.persistence.service.DatabaseFactory.validateDataSource(DatabaseFactory.java:357)
at com.adventnet.persistence.service.DatabaseFactory.startDB(DatabaseFactory.java:562)
at com.adventnet.servicedesk.tools.RestoreSDBackup.restoreDatabase(RestoreSDBackup.java:350)
at com.adventnet.servicedesk.tools.RestoreSDBackup.main(RestoreSDBackup.java:145)
at com.adventnet.servicedesk.tools.RestoreDialog$5.run(RestoreDialog.java:188)
at java.lang.Thread.run(Unknown Source)
Unable to restore database : null
null
Nov 10, 2016 10:20:10 AM com.adventnet.db.api.RelationalAPI <clinit>
SEVERE: haltjvm.on.dbcrash is set to [false]
java.lang.NullPointerException
We are on a merging and consolidating process and have SD and OPManager to migrate their Databases to our centralized SQL server, and our concern is that the procedures are basically the same for both products. Would the results be the same as well?