Hi,
Is it possible to dynamically set the data source for the query below?
We have multiple environments and users want to run the same report against them by picking the environment from the drop down list on the report.
Production:
| dbquery "InstrumentDB" "select top 10 * from Instrument.dbo.Program"
Staging:
| dbquery "InstrumentDBStaging" "select top 10 * from Instrument.dbo.Program"
... View more