# Error with parameters generateChangelog command

**URL:** https://forum.liquibase.org/t/error-with-parameters-generatechangelog-command/3295
**Category:** General Discussion
**Created:** [October 14, 2015, 11:24pm UTC](https://forum.liquibase.org/t/error-with-parameters-generatechangelog-command/3295 "2015-10-14T23:24:00Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![PauloEnmanuel](https://avatars.discourse-cdn.com/v4/letter/p/a4c791/32.png) [@PauloEnmanuel](https://forum.liquibase.org/u/PauloEnmanuel)
#### Post date: [October 14, 2015, 11:24pm UTC](https://forum.liquibase.org/t/error-with-parameters-generatechangelog-command/3295/1 "2015-10-14T23:24:00Z")

</div>

Hi. I’m trying to execute the following command :

liquibase.bat --changeSetAuthor=Paulo --changeLogFile=C:\Users\paulo.tavares\Documents\Visual Studio 2015\Projects\DSC\ERC.DataSourceControl.Tests\bin\Debug\dsctest\_testdb.xml --driver=com.mysql.jdbc.Driver --classpath=C:\Users\paulo.tavares\Documents\Visual Studio 2015\Projects\DSC\ERC.DataSourceControl.Tests\bin\Debug\lib\mysql-connector-java.5.1.36-bin.jar --url=“jdbc:mysql://localhost/dsctest\_testdb?tinyInt1isBit=false” --username=root generateChangeLog

When I execute it liquibase tells me that there’s a parameter missing. I read all the documentation and I cant find anything. All the routes are pointing correctly. Can someone tell me what am I missing?

---

<div class="post-metadata">

### Author: ![un1443625524348r72id](https://avatars.discourse-cdn.com/v4/letter/u/dc4da7/32.png) [@un1443625524348r72id](https://forum.liquibase.org/u/un1443625524348r72id)
#### Post date: [October 14, 2015, 11:24pm UTC](https://forum.liquibase.org/t/error-with-parameters-generatechangelog-command/3295/2 "2015-10-14T23:24:00Z")

</div>

Yeah, I ended up figuring out that was the deal. Thanks anyway 🙂

---

<div class="post-metadata">

### Author: ![un1382561729492r88id](https://avatars.discourse-cdn.com/v4/letter/u/c4cdca/32.png) [@un1382561729492r88id](https://forum.liquibase.org/u/un1382561729492r88id)
#### Post date: [October 14, 2015, 11:24pm UTC](https://forum.liquibase.org/t/error-with-parameters-generatechangelog-command/3295/3 "2015-10-14T23:24:00Z")

</div>

Can you include the actual error message?

As a first guess, I would say that the problem is probably with the spaces in the different file paths. You probably need quotes around those. So rather than:

-changeLogFile=C:\Users\paulo.tavares\Documents\Visual Studio 2015\Projects\DSC\ERC.DataSourceControl.Tests\bin\Debug\dsctest\_testdb.xml

you should do this:

–changeLogFile=“C:\Users\paulo.tavares\Documents\Visual Studio 2015\Projects\DSC\ERC.DataSourceControl.Tests\bin\Debug\dsctest\_testdb.xml”  
Steve Donie  
Principal Software Engineer  
Datical, Inc. [http://www.datical.com/](http://www.datical.com/)
