Tagged Questions

3
votes
3answers
268 views

Any tools to export the whole Oracle DB as SQL scripts

Here is my problem, I wants to create a baseline on our development Dateabase (Oracle 10g), and check into our svn for version control, and after this we will use liquibase to help us manage the ...
1
vote
2answers
318 views

Liquibase - uploading many Oracle triggers in one file

I have a number of Oracle triggers stored in a file which we upload to our DB using sqlplus. We want to use liquibase instead to manage this, but I don't really want to split out the triggers into ...
0
votes
1answer
75 views

Liquibase creating index for Oracle fails

I'm trying to create an index with Liquibase Here is the changeSet <changeSet id=".... <createIndex tableName="xyz" indexName="abc"> <column name="column1"/> ...
0
votes
3answers
832 views

Prevent error when dropping not existing sequences, creating existing users

I have a bunch of sql scripts that create / drop sequences, users and other objects. I'm running these scripts through liquibase, but they fail because oracle complains when I try to drop a non ...
0
votes
1answer
588 views

Liquibase noob strikes again - Error on sqlFile tag

Im using the sqlFile to include an sql script that creates tables using oracle specific commands (NOCACHE, NO PARALLEL, stuff like that). My master.xml file includes all sql scripts and executes them. ...
0
votes
1answer
636 views

liquibase - Cant get sample to work

Im trying to get to run a very simple example in liquibase 1.9.5 (see at the end). When I run liquibase --changeLogFile=test_sample.xml update I get this error message. Migration Failed: ...