Hi, I’m trying to use liquibase, but I have a problem when using generateChangeLog. In fact when generating change log of some views quite big I see that liquibase truncate the select of the View. Seems only a certain number of characters are allowed. The database I’m using is SQL Server 2005 and the driver is jtds-1.2.5.jar
What version of liquibase are you using? I believe there was a change in 2.0 to try to pull more chars, it was a limitation of what sqlserver was providing us through the information_schema.
It is an issue with the data we get back from INFORMATION_SCHEMA.VIEWS. There was a couple attempts to use a different function to get the view definition, but they did not work either.
At this point, I don’t know if it’s a limitation of sqlserver or if there is a workaround