diff --git a/migration/migrate_oracle.sh b/migration/migrate_oracle.sh index 7ff6d4fba8..6ed006048a 100644 --- a/migration/migrate_oracle.sh +++ b/migration/migrate_oracle.sh @@ -5,7 +5,7 @@ # mode (the default mode -- this strips out all the "commit" statements) # and a commit mode for deployment. You need to pipe the output of this # script into sqlplus, for example: -# ./migrate.sh 313-314/ commit | sqlplus adempiere/adempiere +# ./migrate_oracle.sh 313-314/ commit | sqlplus adempiere/adempiere # Contributed by Chris Farley - northernbrewer diff --git a/migration/migrate_postgresql.sh b/migration/migrate_postgresql.sh index a0f7ef5751..fc95be2f68 100644 --- a/migration/migrate_postgresql.sh +++ b/migration/migrate_postgresql.sh @@ -5,7 +5,7 @@ # mode (the default mode -- this strips out all the "commit" statements) # and a commit mode for deployment. You need to pipe the output of this # script into sqlplus, for example: -# ./migrate.sh 313-314 commit | psql -U adempiere -d adempiere > 313-314.lst +# ./migrate_postgresql.sh 313-314 commit | psql -U adempiere -d adempiere > 313-314.lst # Original contribution by by Chris Farley - northernbrewer # Adapted to postgresql by Carlos Ruiz - globalqss