Tagged Questions
2
votes
1answer
415 views
Error using Liquibase on SQL Server
I'm experimenting with Liquibase, trying to get it to copy one database to another. Unfortunately, I keep getting this error:
Implicit conversion from data type varchar to varbinary is not ...
2
votes
3answers
857 views
Couple of questions from a liquibase noob
Im evaluating liquibase for a project starting today.
Has anybody used it to create procedures, functions, basically all of the plsql stuff?
If not, is it possible to write embedded sql code in the ...
1
vote
1answer
396 views
Liquibase drop constraint without knowing it's name
We use liquibase to keep track of our database changes..
First changeSet contains those lines:
<column name="SHORT_ID" type="INTEGER">
<constraints unique="true" />
</column>
...
0
votes
2answers
51 views
triggers in sql files with oracle 11g database don't work
I have a problem with Oracle 11g and Liquibase. I been looking for an good answer everywere. In my db-changelog.xml I point to a sql file where I have triggers. This does not work at all. I have ...
0
votes
2answers
210 views
With Liquibase, is there a difference between using a unique <createIndex> and using <column> with a unique constraint?
Liquibase has two ways to define a column as unique:
When creating the table, using <constraints> on the column:
<createTable tableName="my_table">
<column name="my_column">
...
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: ...