If you're a consultant or system administrator working in a Manhattan SCALE environment, you'll probably need to identify where the system's databases live. Whether you're onboarding to a new client environment or troubleshooting a production issue, knowing the server and database names is foundational. SCALE uses two separate databases, and depending on the version, there are two different ways to access the connection information.
If you're running an older version of Manhattan SCALE, such as SCALE 2019, you can use a utility built into the SCALE Toolbox called Encrypt Database Connection.
Follow these steps to retrieve the connection details for both databases:


This will return the entire decrypted connection string for the selected database, including:
If you're working in a newer version of Manhattan SCALE (ex: SCALE 2023 or later), the Toolbox utility is no longer available. Instead, SCALE provides a built-in PowerShell command to retrieve connection details.
From the SCALE application server, open PowerShell and run the following command:
Get-ScaleDefaultDB -Showall

This will return details for both SCALE and System databases, including:
Sample output:
EnvironmentName : Systemaabf6698-37ae-45ee
Database : SCALE2023Sys
DatabaseServer : SCALE2023
StorageAccountName :
BuildNumber : 23.0.1938.0
ConnectionCheck : Valid
User : ScaleSqlUser
EnvironmentName : Defaultaabf6698-37ae-45ee
Database : SCALE2023
DatabaseServer : SCALE2023
StorageAccountName :
BuildNumber : 23.0.1938.0
ConnectionCheck : Valid
User : ScaleSqlUser
Note that the password is not included in this output, which is a win from a security standpoint.
Whether you're stepping into a new client environment or need to validate connection information for troubleshooting quickly, these tools make it easy to surface the core database configuration in SCALE.