Andrius Kurtinaitis:
Is there a way to migrate an Oracle database from Liferay 6.1 beta3 to beta4?
I tried to run b4 on the b3 database with the hope that it will migrate automatically but it complained about non-existing columns.
Does someone have a script?
I have created some structures and data useful for testing so it would be nice if I do not have to recreate them again.
No script that I know of. Since Liferay does not support Beta-to-Beta upgrades, we don't issue scripts. You'd have to compare the schemas and add the missing tables. I would wager that this would not be too hard, though. follow this algoritm:
while startup_errors; do
read error from log file;
add missing column that it complains about;
if (column_must_be_deleted) then you_are_screwed;
done
if that doesnt fix things then it may be more complicated and not possible without looking at code diffs between B3 and B4.