Command Line with parameters doesn' work

Discussion of open issues, suggestions and bugs regarding database management and development tools for SQL Server
Post Reply
marco.garbin
Posts: 1
Joined: Thu 08 Oct 2015 22:45

Command Line with parameters doesn' work

Post by marco.garbin » Thu 08 Oct 2015 23:05

I have Windows 7 professional in italian languages.
I have made a simple report with a parameter in the query like
select * from DONAZIONI where CALLED_NUMBER = @param1

But if i try to run the report via command line with the option /patameters:param1="45501" on the report i don't found value.

alexa

Re: Command Line with parameters doesn' work

Post by alexa » Fri 09 Oct 2015 08:34

Please use the following command line string:

Code: Select all

dbforgesql /datareport /reportfile:"D:\Software\Digitalk\ReportMarco.rdb" /parameters pippo:45501 /format:PDF /result email:"[email protected]"

Post Reply