Open DBeaver, add a new Microsoft SQL Server connection, supply the JDBC URL, credentials, and test; DBeaver will auto-install the driver, letting you run T-SQL instantly.
DBeaver offers a free, multi-platform IDE with JDBC support, visual ERD, data import/export, and plug-ins that make managing SQL Server as easy as PostgreSQL or MySQL.
Ensure Microsoft SQL Server is reachable via TCP/IP, note the host, port (default 1433), database name, and a login with "SQL Server Authentication" or Active Directory credentials.
Click the plug-icon ➜ Database ➜ New Connection.
Type "sql" in the filter and pick "Microsoft SQL Server".
Fill Host, Port, Database, User, and Password. Toggle "Save password" if desired.
Click Test Connection. DBeaver downloads the MS SQL JDBC driver automatically. A green check confirms success; press Finish.
Yes. Open the Edit Driver Settings ➜ Driver Properties tab and paste a URL such as:jdbc:sqlserver://prod-db.acme.com:1433;databaseName=shop;encrypt=true;trustServerCertificate=false
Enable Auto-commit for quick DML, raise Fetch size for large exports, and activate Server Time Zone when timestamps look off.
Open a SQL Editor tab connected to shop
and run the example below. Results appear in the bottom grid and can be exported to CSV or JSON.
Yes. The first time you create a connection, DBeaver prompts to download the Microsoft JDBC driver. Click “Download” and proceed.
Absolutely. Use the same wizard, enter the Azure server name, enable encrypt, and supply the login in the format user@server
.
Right-click the connection ➜ Export. Share the generated .dbeaver
file; teammates can import it via File ➜ Import ➜ DBeaver Project.