Questions tagged [liquibase-hibernate]

Liquibase plugin for Hibernate that lets this be configured as a comparison database for Liquibase commands.

Liquibase plugin for Hibernate that lets this be configured as a comparison database for diff, diffChangeLog and generateChangeLog commands of Liquibase.

163 questions
0
votes
0 answers

Liquibase does not work on changing Spring Boot profile

I am using Liquibase with SQL Server 2014 for my Spring Boot project. I am trying to populate a few tables at startup and update basic information in there. Everything works properly all the time, but the moment I change the Spring Boot profile,…
codeworks
  • 149
  • 1
  • 15
0
votes
0 answers

Liquibase yaml inserts

We are using a stack on SpringBoot, Hibernate and Liquibase. I have a sql file with 24000 inserts. When I converted it into yaml (for versioning purposes), I got a huge yaml file which I split into 16 yamls. Insertion using the master file using the…
javagirl
  • 41
  • 1
  • 7
0
votes
0 answers

Rollback tab is not working in liquibase while running application no error in console out put

I am using drop table tag. , but the given table is not being rolled back. Here is the code:
0
votes
0 answers

The Liquibase in my JHipster project is making all my date types TINYBLOB

My liquibase makes my date types to be TINYBLOB, for example this what all my generated changelog files look like I would like whenever i generate changelog files with mvn liquibase:diff my date types…
Ndumiso
  • 220
  • 4
  • 13
0
votes
0 answers

Illegal argument: . . . exception in . . . with cause = null

I am trying to add functionality to an existing JAVA Spring/Angular JS web application that uses REST calls along with JPA/Hibernate/Liquibase. I have followed what is there and while I have worked through a lot of errors I cannot figure out what is…
0
votes
0 answers

Gettng memory leak error while adding new changeset in liquibase

i am adding new changeset in liquibase and i got error: "C:\Program Files\Java\jdk1.8.0_171\bin\java" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2017.3.4\lib\idea_rt.jar=51315:C:\Program Files\JetBrains\IntelliJ IDEA…
ankit
  • 2,591
  • 2
  • 29
  • 54
0
votes
0 answers

Liquibase does not create fields correctly

I have this portion of XML Liquibase script, to creates some columns in a table:
Andrea Bevilacqua
  • 1,197
  • 3
  • 15
  • 27
0
votes
1 answer

Error Regarding Running Stored procedure using liquibase

I am try to execute the stored procedure using liquibase having the / delimiter in sql file the Database Is db2. The problem is it is giving me error as DB2 SQL Error: SQLCODE=-104, SQLSTATE=42601, SQLERRMC=END-OF-STATEMENT;demoTable = ((demovar;)…
Abhishek
  • 101
  • 3
  • 8
0
votes
2 answers

spring-boot with liquibase @OneToMany mapping

I have two entity Person and Address. And Person can have multiple Address.
Mehraj Malik
  • 14,872
  • 15
  • 58
  • 85
0
votes
1 answer

JHipster - How to generate Entity with a field as List of String?

I'm using jhipster-generator 4.14.5 and im trying to generate an Entity with a field Persons. But Persons is a List of String List Persons. How can i achieve it in JHipster. I tried to generate a simple field as String, then i changed the…
3logy
  • 2,634
  • 8
  • 46
  • 99
0
votes
2 answers

How to Call Oracle stored procedure through liquibase Changelog File XML

I am using following syntax in Changelog file CALL LiquiInsert('ABC','1.0.3.4','ABC'); It get call well from sqlplus that is outside of liquibase but…
0
votes
1 answer

Liquibase Stored Procedure

I am trying to call Liquibase Stored Procedure Through Tag it gives me error as sql code DB2 SQL Error: SQLCODE=-440, SQLSTATE=42884 I Am Tring to call as follows : : CALL TestProcedure('abc','xyz') it executed well from outside…
0
votes
1 answer

Liquibase changelog does not exist - ChangeLogParseException

I am trying to use liquibase on startup in my JEE+WildFly app. When launching AS, liquibase throws ChangeLogParseException: 09:41:40,602 ERROR [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0021: Deploy of deployment "bets.war" was…
0
votes
2 answers

Liquibase Continue on Error Implementation

My requirement is as follows As i run demo.sql file using the Liquibase. It consist of the 10 sql statements. At the 5th statement if it encounters error, it should completely roll back all the changes. My requirement is to continue it till…
Abhishek
  • 101
  • 3
  • 8
0
votes
1 answer

Liquibase compare and update databases

I would like to use liquibase in my spring boot app. My requirement is that I have a dummy schema which is populated with tables every time I change the entity classes. This is done by hibernate's ddl create. There are many identical schemas to the…
Arul Rozario
  • 83
  • 10
1 2 3
10
11