# Galaxy Repository — Connection Information ## Database Connection | Parameter | Value | |-----------------|----------------| | Server | localhost (default instance) | | Database Name | ZB | | Port | 1433 (default) | | Authentication | Windows Auth | | Username | dohertj2 | ## sqlcmd Usage ``` sqlcmd -S localhost -d ZB -E -Q "YOUR QUERY HERE" ``` - `-S localhost` — default instance - `-d ZB` — database name - `-E` — Windows Authentication (dohertj2) ## Notes - The Galaxy Repository is a SQL Server database created and managed by AVEVA System Platform (formerly Wonderware). - Typically accessed via SQL Server Management Studio (SSMS), `sqlcmd`, or programmatically via ODBC/ADO.NET/pyodbc.