Tagged Questions

0
votes
2answers
40 views

how to delete index on mysql table ?

Hi, I have a table generated by GORM (Grails Domain). It has foreign key / index that generated random characters like FKAC7AAF67162A158F. I need to remove that field that not nee …
0
votes
3answers
60 views

Prevent error when dropping not existing sequences, creating existing users.

Hi, 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 …
1
vote
2answers
53 views

Couple of questions from a liquibase noob

Hi, 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 …
0
votes
1answer
30 views

Liquibase noob strikes again - Error on sqlFile tag.

Hi, 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 sc …
0
votes
1answer
29 views

liquibase - Cant get sample to work

Hi, 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. …
0
votes
1answer
185 views

How to work with liquibase, a concrete example

Following the quickstart on liquibase i've created a changeset (very dumb :) ) Code: <?xml version="1.0" encoding="UTF-8"?> <databaseChangeLog xmlns="http://www.liqui …
0
votes
1answer
123 views

how to insert html tag inside sql in Liquibase migration ?

Hi , I need to update my data that have html tag inside so wrote this on liquibase <sql> update table_something set table_content = " something <br/> in the next line …
1
vote
2answers
316 views

Hibernate using JPA (annotated Entities) and liquibase

liquibase is a perfect alternative to hibernate's hbm2ddl_auto property if you are using xml-mapping. But Im using JPA annotation (hibernate annotations). Is it possible to use liq …