Liquibase not working when deploying
Re : Problems building Liquibase
Introduction to MSBI
Liquibase is NOT fully supporting for SAP HANA DB
1. ALTER (modify or adding column)
3. In Squence creation, ordered = false is NOT supported
4. trigger syntax needs to be changed as per SAP HANA DB
Please help to give suggestions or direction that without any making changes in the liquibase-changes.xml and also in liquibase core library changes, How to make common liquibase-changes.xml for both DBs ? and also so In order to work ALTER command need to change the liquibase core libraries.. how to avoid to touch the core libraries changes?
Future of Liquibase as open source project
Re : Future of Liquibase as open source project
Most of the problem comes down to a poor 3.7 vs. 3.6 release management on my part. After the 3.6 release I started on changes for 3.7 with a hope of being able to release that soon. However, for various reasons that release has dragged on far longer than I had hoped while always feeling like it is “nearly there”. My time has been spent more on 3.7 but, in the meantime the 3.6 release has suffered as I’ve not had the time to also inspect and test the pull requests.
Now that the holidays have finished up, I was already planning on shifting my focus back to a 3.6 release based on the open pull requests. I’m planning on having a new release out by Jan 15th. As far as the commits that go into the datical repository, I’ve tended to merge those changes back into Liquibase near release time for each major release, so the changes that are in there will be in 3.7 as well.
It is definitely apparent that the project has grown enough that it’s past my ability to manage both incoming contributions and future work. Pull requests are great because most of the bug/feature work is done, but it does still take time for me to review and test the changes as well as ensure they do not break anything else.
Re : Future of Liquibase as open source project
Liquibase to revert back to a previous state
ArrayIndexOutOfBoundsException with Liquibase 3.6.2
Re : Liquibase to revert back to a previous state
Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/
Re : Future of Liquibase as open source project
I'll also comment on the hibernate thread as well, thanks
Liquibase for SQL Server 2008R2, DATABASECHANGLOGLOCK table creation failed.
Liquibase on SQL SERVER 2008R2, create table Databasechangeloglock failed.
Re : Deployment_id in 3.5.3
Re : Deployment_id in 3.5.3
Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/
Liquibase run on Server Procedure Functions triggers
Hello,
I have some question about Liquibase .
I explain a little bit about how we use Liquibase
Liquibase-maven-plugin version 3.6.2
Dbchangelog-3.4.xsd
Dbms=”db2,mssql,oracle,mysql,postgresql”
Our source we used in sql tag or sqlfile is DB2
First : Liquibase for procedure and Functions and triggers didn’t create appropriated code for MSSQL, MYSQL, Oracle, PostgreSQL .
We tried with sql tag, sqlfile , createprocedure tag craetefunction tag, createtrigger tag but unfortunately it didn’t generate correctly
Second: I want to run the project on Server .which is the best approach?
as an example can I use:
java -jar <myProject.jar> updateSQL
Sincerely
Reza Sadeghpour
DataTypes changing and constraints disparission after generating databasechangelog
I am using SQL Server 2014 and liquibase 3.4.2. I used liquibase to generate the changelog XML format. After generating my changelog, some datatypes have changed in a weird way, for example :
nvarchar(MAX)
changed tovarchar(MAX)
whilenvarchar(20)
andnvarchar(100)
haven't change.time(7)
turns totime(16)
And some primary key conditions have been ommited :
[MyID] INT IDENTITY (1, 1) NOT FOR REPLICATION NOT NULL
turns to :
[MyID] INT IDENTITY (1, 1) NOT NULL,
Here's my commande to generate the changelog :
C:\Program Files\liquibase-3.4.2-bin>java -jar liquibase.jar --classpath="C:\Pro
gram Files\SQLjdbc\sqljdbc4-2.0.jar" --driver=com.microsoft.sqlserver.jdbc.SQLSe
rverDriver --url=jdbc:sqlserver://myIP:myPort;databaseName=MyDB --username=Myusername
--password=mypwd --changeLogFile=C:\changelogsqlserver.xml generateChangeLog
Liquibase 'generateChangeLog' Successful
I'm newbie to liquibase and database migration. Any help would be appreciated.
If you need more details please notify me.
Is "NOT FOR REPLICATION" constraint supported in Liquibase ?
Re : Is "NOT FOR REPLICATION" constraint supported in Liquibase ?
Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/