Re : NullPointerException when running generateChangeLog using MySQL and...
Glad I was able to help. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : generatechangelog creates changelog with most tables without column
Were you ever able to resolve this? I'm running into a similar issue now using Liquibase 3.2.2 and MySQl 5.6. Out of approximately 200 tables in my database (all of which have columns), only 2 show up...
View ArticleGenerate XML/ SQL output with data types of target database
I need to convert the structure of PostgreSQL databases to Oracle. In PostgreSQL, I have a postgres database with data. In Oracle I have a blank database in which I want to write postgres database...
View ArticleCreate another database from changelog: automatic data type conversion issue
I get the changelog from PostgreSQL database with the command: liquibase \ --driver=org.postgresql.Driver \ --classpath="C:\db_drivers\postgresql-9.3-1102.jdbc3.jar" \...
View ArticleRe : Generate XML/ SQL output with data types of target database
Actually, it is necessary to manually correct the data types in the generated file. Data types are not converted automatically. For example: ... <changeSet author="Alexey (generated)"...
View ArticleRe : Create another database from changelog: automatic data type conversion...
The answer is - yes . But it is necessary to manually correct the data types in the generated file. Data types are not converted automatically.
View ArticleMySql: DateTime size doesn't get picked by createTable / addColumn changesets
Running the following changeset using liquibase-3.2.2 (on mySql 5.6): < createTable tableName = "myTable" > < column name = "myId" type = "BIGINT(20) UNSIGNED" >...
View ArticleMySql: Can't create non-PK column with autoIncrement using createTable...
Running the following changeset using liquibase-3.2.2 (on mySql 5.6): < createTable tableName = "myTable" > < column name = "myId1" type = "BIGINT(20) UNSIGNED" >...
View Articlecannot sign up on liquibase.jira.com
I can't currently sign up to liquibase.jira.com. My email is rejected as not coming from an allowed domain: Whoops! The email address provided is not from an allowed domain. Seems to be a recent Jira...
View ArticleCould not initialize class...
Getting this issue when I try to run maven test. Not sure what's causing the issue as these test ran before without issues. My dependencies are being managed by maven Caused by:...
View ArticleRe : Could not initialize class...
Any time you see a NoClassDefFound error, the problem is almost certainly an issue with the classpath. You can diagnoze the issue further by running maven with the -X switch to enable debug output....
View ArticleRe : MySql: DateTime size doesn't get picked by createTable / addColumn...
(also, FYI, I couldn't find a way to open a JIRA ticket in https://liquibase.jira.com/ - it didn't allow me to create a user using any of my email addresses saying my domain is not allowed) Same...
View ArticlegenerateChangeLog don't identify different schemas, just "dbo" (MSSQL 2008)
Hello! I'm studying using liquibase in our project. We have a database in SQL Server 2008, with 2 schemas and this schemas are different from "dbo". When I test the generateChangeLog in a database with...
View ArticleRe : generateChangeLog don't identify different schemas, just "dbo" (MSSQL 2008)
You might try setting logLevel=DEBUG in you liquibase.properties file to get a better idea what liquibase is doing in this case. Steve Donie Principal Software Engineer Datical, Inc....
View ArticletagDatabase not taged
Here is about my changelog:----------------------------- <changeSet id="1" author="biker"> <tagDatabase tag="v0"/> </changeSet> <changeSet id="2" author="biker"> <sqlFile...
View ArticleRe : tagDatabase not taged
In above case, my database is mysql. when I changed to oracle,it works well. I guess the problem maybe about the precision of the column dateexecuted . It is different in mysql and oracle
View ArticleRe : Could not initialize class...
Ok so I added the -X flag but, still unsure what is causing this issue. See link for stacktrace.
View ArticleLiquibase 3.3 with Vertica DB : "DATABASECHANGELOG" already exists
Hi, I have an issue when using Liquibase on Vertica DB. The first execution works but the second time I have the following message : DEBUG 9/3/14 10:30 AM: liquibase: Executing UPDATE database command:...
View ArticleRe : generateChangeLog don't identify different schemas, just "dbo" (MSSQL 2008)
Tnks in reply Steve! I tried what you say, and I got the query executed. Tnks! But now, I saw that it only runs for only one schema. Now, I have two questions: How can I generate to all my schemas? How...
View ArticleAttribute 'onUpdateSQL' is not allowed to appear in element 'preConditions'
Hi, I have the following changeLog.xml: <?xml version="1.0" encoding="UTF-8"?> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"...
View Article