Re : How do I use --logLevel?
I have the same question. Unless I'm also using it incorrectly (which is hardly inconceivable), --logLevel seems to be a supported flag, with 0 functionality.
View ArticleRe : How do I use --logLevel?
The built-in logger for liquibase is fairly basic. It outputs to the console (stderr stream, I think), not to a file. The different levels available are debug, info, warning, severe, and off. I think...
View ArticleFunctional index code generated gives error in MS SQL Server
I have this following index in my SQL Server DatabaseCREATE NONCLUSTERED INDEX XCR_ACTIVE ON dbo.CS_PA_VEH_BASE ( ETL_ACTIVE_FL ) WHERE ETL_ACTIVE_FL = 'N' ON "default";for which liquibase gives out...
View ArticleRe : How to create conditional indexes using createIndex?
Hi Guys I am having similar issue and both append and computed="true" is not helping me.DB: SQL ServerLiquibase version: 3.6.3I have this following index in my SQL Server Database CREATE...
View ArticleRe : How to create conditional indexes using createIndex?
Following works BUT it must be in a separate changeset than the createtable<createIndex indexName="XCR_ACTIVE" tableName="Z_CS_CAPV_VEH_DELTA"> <column...
View ArticleRe : Default value with constraint name
Hi Nathan,Is it now possible to set the default constraint name? I am using liquibase 3.6.3, generated db changelog which gives out the following<column defaultValue="NOKEY"...
View ArticleRunning multiple databases (mssql,postgreSql): Syntax error occurs for...
Thanks in advance for any input. My company has an application that has been running on mssql and and the tests are run on H2 in memory, however we want to transition over to using postgreSql for our...
View Articleliquibase with active directory
liquibase does not seem to allow connection to mssql with active directory credentials. Using domain prefix and no prefex results in login failure.
View ArticleImproving Community Support
It’s an exciting time for the Liquibase community. The latest release, 3.7, has over 350 commits from the community and from Datical. Datical has dedicated several engineers to the Liquibase open...
View ArticleRe : Improving Community Support
We'd love to hear feedback from the Liquibase Community! Datical is committed to Liquibase and we prize feedback from the community of users and contributors.
View ArticleRe : Redshift support
I have fixed several bugs with liquibase redshift support. Could one of you review my changes?https://github.com/liquibase/liquibase-redshift/pull/7Thanks,-Michael
View ArticleRe : liquibase with active directory
I have just configured liquibase to work with Windows authentication, both with password prompt (Kerberos) and without (Integrated). Literally 2 days ago :) It works.If you could provide more details...
View ArticleRe : liquibase with active directory
Example with integrated Auth (using jTDS driver)--driver=net.sourceforge.jtds.jdbc.Driver...
View ArticleRe : liquibase with active directory
thanks, Nikita. I completely forgot to include integratedsecurity=true. i didnt use jtds but will look into it now.
View ArticleSuggestion: Make attribute constraintName required in addUniqueConstraint
Hi,I would prefer it if the constraintName attribute was mandatory for all the changes which add constraints (such as addUniqueConstraint).I deploy the same application to 2 different databases. One is...
View ArticleRe : Suggestion: Make attribute constraintName required in addUniqueConstraint
I think this is a good idea. One clarification though - it probably isn't liquibase that is generating the names, it is the database engine itself. Steve DoniePrincipal Software EngineerDatical, Inc....
View ArticleRedshift extension new release
I have also posted about this here: https://github.com/liquibase/liquibase-redshift/issues/8But are there plans for a new release of the redshift extension for liquibase? What would be involved in...
View ArticleRe : Suggestion: Make attribute constraintName required in addUniqueConstraint
I see. That explains the different names, of course. Thank you for clarifying!
View ArticleWhat's the exact procedure in liquibase-hibernate's diff?
I need to know if Liquibase "only" triggers Hibernate's mapping functions.Let's say I'm working with an application server that can't support Hibernate as JPA-Provider. Entities, Injections, database...
View ArticleNo serializers associated with the filename or extension for generating json...
$LIQB_HOME/liquibase --driver=oracle.jdbc.OracleDriver \ --classpath=ojdbc7.jar \ --changeLogFile=work/ChangeLogs/hr_$dt.json \ --url="jdbc:oracle:thin:@vbox2:1521/pdbpoc" \...
View Article