Re : SQL server Windows Authentication Error
Sure, i already have Sqljdbc_auth.dll available as same path as SQL jdbc driver, but still it didn't work.Upon further looking i managed to fix the error , sqljdbc_auth.dll should be copied under...
View ArticleRe : SQL server Windows Authentication Error
Yes - because it is a native DLL, it needs to be on the Windows System Path. The driver jars are loaded based on the Java classpath, which is different. Glad you were able to get this working. Steve...
View ArticleSql statement is finished, but changeset not marked as executed
Hi,I have the following changeset executing <?xml version="1.0" encoding="UTF-8" standalone="no"?><databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"...
View ArticleLiquibase does not seem to recognize new rows for changeset
Hi,I have 2 DBs On MySQL. Working1 and Reference1. Initially,Working1 is empty. I genereated Chagne set from Reference1 which got lots of DDL and DMLs (Inserts). liquibase --changeLogFile=file_name.xml...
View ArticleConnecting to Azure SQL with Azure Active Directory Integration
I posted this on SO, but also wanted to draw attention to the post from this...
View ArticleRe : Connecting to Azure SQL with Azure Active Directory Integration
I was able to get this to work. I am not very familiar with Java (we use Liquibase with a C# project), so I think some of the Java pieces tripped me up.There were a few things I had to do to make this...
View ArticleRe : Connecting to Azure SQL with Azure Active Directory Integration
Thanks for documenting this! Would you mind if I re-used your content on the main liquibase.org site? Steve DoniePrincipal Software EngineerLiquibase Community EngagementDatical, Inc....
View ArticleRe : Connecting to Azure SQL with Azure Active Directory Integration
Not at all. Happy to help contribute!
View ArticleRe : How to use Snowflake extension
I was also working with liquibase for a while.If it helps here's the example how I did it.https://github.com/hello-ish/liquibase-snowflake-sampleNOTE: Many thanks and credit goes to Bruce.
View Articleliquibase skips quotes for default value 'infinity' - PostgresSQL
HelloI'm using PostgresSQL server and there are columns which have default value set up to 'infinity'. But liquibase removes quotes and i have error related to syntax in generated sql. But it works...
View Articledollar sign in procedure - Postgres
HiI'm trying to move stored procedure between PostgresSQL instances using sql type of changeLogFile but getting following error related to dollar signs in procedure:Liquibase Pro 3.8.7 by Datical...
View Articleprecondition is not working for schema
Hi, I want to have "IF NOT EXIST" functionality for my schema creation in Oracle. I am using liquibase for ddl and spring boot application. <changeSet author="admin" id="1"> <preConditions...
View ArticleRe : Liquibase does not seem to recognize new rows for changeset
I added 2 rows to a table in Referece1 DB Please clarify, are those data inserts? Data is not taken into account for diffChangeLog. As noted here
View ArticleRe : precondition is not working for schema
If not exists, and other flow control logic are not valid ddl statements to converted into xml using the ddl workflow. This is because the ddl is created as a comparison between 2 states of the...
View ArticleRe : dollar sign in procedure - Postgres
Would you mind sharing the whole script? It looks similar to this issue.So instead of using REPLACE PROCEDURE public.sp_test() LANGUAGE plpgsqlAS $procedure$begintryREPLACE PROCEDURE public.sp_test()...
View ArticleRe : Sql statement is finished, but changeset not marked as executed
Hi Brent,Would you mind posting the complete output from the command line? You can either redirect the output >>logfile.txt or you can use:liquibase --logFile=<fileName> --logLevel=debug...
View ArticleRe : liquibase skips quotes for default value 'infinity' - PostgresSQL
Hi Taras,Are you generating changelogs where it isn't handled right? Or are they trying to specify it in an xml/yaml/json changelog but the generated SQL isn't correct?Could you please post the problem...
View ArticleRe : Exporting data from pg_catalog (PostgreSQL)
Hi!Would you mind sharing your commandline output? It may also be helpful to add --logLevel=FINEST argument to get more diagnostic output.Thanks,Ronak
View ArticleRe : Loaddata is is working for db2 database
Hi k20.sudarshana,Would love to help, may I get some clarification? Looking at your test.csv, I see only column headers, are you saying there is no data?Could we see the commandline out put? maybe use...
View ArticleRe : precondition is not working for schema
Thanks Ronak.Its my mistake. ChangeSet is executing after adding the property runAlways=true. I am using SpringBoot application, so I will restart and check the application often. So, without...
View Article