--
You received this message because you are subscribed to a topic in the Google Groups "iDempiere" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/idempiere/R30tD1Tan6g/unsubscribe.
To unsubscribe from this group and all its topics, send an email to idempiere+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/idempiere/0da927a5-80a3-4f8c-b80e-dae8d5f67dden%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/idempiere/CAEd1mAX7PFBtAMK_Wzjtx%2Bru7RsNMGWxnYXZoTUzNLX66BwwFQ%40mail.gmail.com.
To view this discussion visit https://groups.google.com/d/msgid/idempiere/CAP4vBhh79g1Nf6HEqY4rNMt1LvZNi%3DKieuBKw8cV-_QAeVL_-g%40mail.gmail.com.
You received this message because you are subscribed to the Google Groups "iDempiere" group.
To unsubscribe from this group and stop receiving emails from it, send an email to idempiere+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/idempiere/229ad72c-8012-447e-9dc0-de6022ddd619n%40googlegroups.com.
The codebase contains release 12 of iDempiere from github. There's specifically one folder that's of interest right now, this one:
…migration-historic\360lts-i1.0a\postgresql And maybe this script.
…migration-historic\migrate_postgresql.sh The script is for linux so it can't be run since we're on windows, but that doesn't really matter. What it does is just run each sql script in a folder one by one.
Today I have a database in postgresql that's based on ADempiere 3.60LTS. All the sql scripts in the folder …migration-historic\360lts-i1.0a\postgresql are supposed to be run to upgrade to first version of iDempiere, version i1.0a. I've tried it but it runs into a lot of errors. Most of them can probably be ignored though and the cause could be that they've been executed earlier to implement some specific feature. I've tried to run through them using the script using the command like this on a linux server: "./migrate_postgresql.sh 360lts-i1.0a | psql -v ON_ERROR_STOP=1 -h localhost -p 5432 -U adempiere -d adempiere 2>&1 | tee 360lts-i1.0a.TEST.ls".
Database information:
url: localhost
port: 5432
username: *****
password: *****
The database is a copy of my current ADempiere 3.60LTS and it's upgraded to PostgreSQL v16. So, you can't harm anything. I can easily make a new copy for you if you want to rerun something.
I've installed "Command line tools", i.e psql commands and added C:\Program Files\PostgreSQL\16\bin to path.
So, this is what I want you to do:
Is this doable? Is there anything else you need?
---------------- end of instructions -----------------
Let me start by understanding the scope - how many scripts there are, what the migration shell script does, and the structure of the SQL files.
------------------