Skip to content

getsqldata/QueryMultiDb

 
 

Repository files navigation

Project status

License

Build status

codecov

Coverage Status

QueryMultiDb

A command-line tool to query multiple SQL Server databases at once and store results in an excel file.

Command line parameters

The following parameters are supported :

Parameter Description Default Required
outputdirectory Indicates output directory for generated file. The default is the current working directory.
outputfile Indicates the name of the generated file.
overwrite Overwrite output file if it already exists. false
targets Indicates the list of databases to query.
targetsstandardinput Indicates the list of databases to query is read from standard input. false
targetsfile Indicates the file containing the list of databases to query.
query Indicates the query to execute.
queryfile Indicates the file containing the SQL query to execute.
sequential Perform queries one at a time. false
connectiontimeout The time (in seconds) to wait for a connection to open. 5
commandtimeout The time in seconds to wait for the command to execute. 60
parallelism The maximum number of queries running in parallel. 4
startkeypress Wait for a key press to start. false
stopkeypress Wait for a key press to stop. false
progress Reports progress on standard error output. false
nullscolor Indicates the color of the NULL text in excel files. 7F7F7F
shownulls Show NULL values explicitly rather than showing empty value. true
showipaddress Show server's IP address. true
showservername Show server's name. true
showdatabasename Show database's name. true
showextracolumns Show targets' extra columns. true
showlogsheet Show log sheet in excel file. true
showparametersheet Show parameter sheet in excel file. true
showinformationmessages Show parameter sheet in excel file. true
sheetlabels Defines the sheets' labels.
discardresults Discard query results and display counts instead false
applicationname Defines the application name for the SQL server connection.

Example

QueryMultiDb.exe --progress --parallelism 8 --overwrite --queryfile "set001.sql" --outputfile "set001.xlsx" --targetsfile "set001.targets" --shownulls false

Targets

The utility expects a JSON formatted file for specifying database targets. The file can be generated with the DbTargets utility.

Simple example

{
	"DatabaseList": [
		{ "ServerName": "localhost", "DatabaseName": "FUNNY_DB" }
	]
}

Advanced example

{
	"ExtraValue1Title": "test 1",
	"ExtraValue2Title": "test 2",
	"ExtraValue3Title": "test 3",
	"ExtraValue4Title": "test 4",
	"ExtraValue5Title": "test 5",
	"ExtraValue6Title": "test 6",
	"DatabaseList": [
		{
			"ServerName": "localhost",
			"DatabaseName": "FUNNY_DB",
			"ExtraValue1": "😸😹😺",
			"ExtraValue2": "🙈🙉🙊",
			"ExtraValue3": "😨😰😱",
			"ExtraValue4": "😇😈😉",
			"ExtraValue5": "🙍🙎🙏",
			"ExtraValue6": "😀😁😂"
		},
		{
			"ServerName": "localhost",
			"DatabaseName": "NASTY_DB",
			"ExtraValue1": "jumbo",
			"ExtraValue2": "guitar",
			"ExtraValue3": "kitchen",
			"ExtraValue4": "failure",
			"ExtraValue5": "rocknroll",
			"ExtraValue6": "beer"
		}
	]
}

DbTargets

A command line utility to generate targets JSON-formated database files.

Command line parameters

DbTargets.exe <servername> [regexp]

  • servername : The server's name to connect to.
  • regexp : An optional regular expression to filter out database names.

Check Regular Expression Language - Quick Reference for valid regular expressions.

Example

DbTargets.exe sqlserver.name.com ".*log.*" > file.targets

Installation

QueryMultiDb can be installed using several methods.

Download

Chocolatey package and Windows installer are available in appveyor artifacts.

Chocolatey

It can be installed, upgraded and uninstalled using chocolatey. To install QueryMultiDb, run the following command from the command line or from PowerShell: choco install querymultidb

About

A command-line tool to query multiple SQL Server databases at once and store results in an excel file.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.5%
  • PowerShell 0.5%