Forked from goyalmohit/export-data-using-liquibase
Created
September 21, 2022 13:13
-
-
Save divukman/6ac990ba772bf9520aae42c885524259 to your computer and use it in GitHub Desktop.
Revisions
-
goyalmohit revised this gist
Mar 2, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,10 @@ liquibase --driver=com.microsoft.sqlserver.jdbc.SQLServerDriver --classpath="C:\\Program Files\\Microsoft JDBC Driver 6.0 for SQL Server\\sqljdbc_6.0\\enu\\jre8" --url="jdbc:sqlserver://localhost:1433;databaseName=AdventureWorks2017;integratedSecurity=false;" --changeLogFile="D:\Source\generateChangeLog--PersonSchema.xml" --username=liquibase --password=liquibase@123 --logLevel=info --defaultSchemaName=dbo --diffTypes=data -
goyalmohit created this gist
Feb 22, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ liquibase --driver=com.microsoft.sqlserver.jdbc.SQLServerDriver --classpath="C:\\Program Files\\Microsoft JDBC Driver 6.0 for SQL Server\\sqljdbc_6.0\\enu\\jre8" --url="jdbc:sqlserver://<SQL Server name or IP>:1433;databaseName=AdventureWorks2017;integratedSecurity=false;" --changeLogFile="D:\Source\generateChangeLog--PersonSchema.xml" --username=liquibase --password=liquibase --logLevel=info --defaultSchemaName=dbo --diffTypes=data generateChangeLog