Skip to content

Latest commit

 

History

History
146 lines (104 loc) · 8.04 KB

File metadata and controls

146 lines (104 loc) · 8.04 KB

SQL Management Tools - Overview

Costa Rica

GitHub GitHub brown9804

Last updated: 2025-07-17


List of References (Click to expand)
Category Tool Company Description Key Features When to Use
On-Premises - SQL Server Management Studio (SSMS)
- DBeaver
- MS
- DBeaver Corp
- Comprehensive tool for managing Microsoft SQL Server components.
- Universal database management tool supporting various databases with a user-friendly interface.
- Full GUI support, rich script editors for T-SQL, integration with Azure, performance monitoring tools
- Supports multiple databases, advanced SQL editor, data visualization tools
- Ideal for managing SQL Server environments on-premises.
- Suitable for managing multiple types of databases with a consistent interface.
Third-Party Clouds - Adminer
- HeidiSQL
- Adminer
- HeidiSQL Project
- Lightweight, full-featured database management tool deployable as a single PHP file.
- Open-source tool for managing MySQL, MariaDB, and SQL Server databases.
- Simple deployment, supports multiple databases, user-friendly interface
- Easy-to-use interface, advanced query editor, data export/import capabilities
- Best for quick, lightweight database management tasks.
- Ideal for managing MySQL, MariaDB, and SQL Server databases with a free, open-source tool.
Azure - Azure Data Studio
- Azure SQL Managed Instance
Microsoft - Cross-platform database tool with modern editor experience and integrated terminal.
- Fully managed PaaS database offering with a free trial for 12 months.
- Supports SQL Server and Azure SQL Database, integrated terminal, extensions, built-in charting
- Automated backups, high compatibility with SQL Server, high availability, scalable performance
- Perfect for cross-platform environments needing a modern, extensible tool.
- Best for migrating SQL Server workloads to the cloud with minimal changes and benefiting from PaaS.

Note

Make sure you have configured the network access, adding your IP as part of the whitelist.

image

On-Premises Tools

SQL Server Management Studio (SSMS)

A comprehensive tool for managing Microsoft SQL Server components.

  1. Download and Install:

    image
  2. Connect to a Server:

    • Open SSMS and click onConnect in the Object Explorer.

    • Enter your server name and authentication details.

      image
  3. Manage Databases:

    • Use the Object Explorer to navigate and manage your databases.

    • Right-click on databases to create new ones, run queries, or perform other management tasks.

      image

DBeaver

A universal database management tool supporting various databases with a user-friendly interface.

  1. Download and Install:
    • Visit the DBeaver download page.
    • Choose the appropriate version for your operating system and install it.
  2. Create a Database Connection:
    • Open DBeaver and click onNew Database Connection.
    • Select your database type and enter the connection details.
  3. Run SQL Queries:
    • Use the SQL Editor to write and execute queries.
    • View results in the results pane.

Third-Party Clouds

Adminer

A lightweight, full-featured database management tool deployable as a single PHP file.

  1. Download Adminer:
  2. Deploy Adminer:
    • Upload the PHP file to your web server.
    • Access it via your web browser.
  3. Connect to a Database:
    • Enter your database connection details on the Adminer login page.
    • Manage your database through the Adminer interface.

HeidiSQL

An open-source tool for managing MySQL, MariaDB, and SQL Server databases.

  1. Download and Install:
  2. Create a New Session:
    • Open HeidiSQL and click onNew to create a new session.
    • Enter your database connection details.
  3. Manage Databases:
    • Use the interface to browse, query, and manage your databases.

Azure Tools

Azure Data Studio

A cross-platform database tool with a modern editor experience and integrated terminal.

  1. Download and Install:

    • Download Azure Data Studio from the official website.

    • Follow the installation instructions for your operating system.

      image
  2. Connect to a Database:

    • Open Azure Data Studio and click on New Connection.

    • Enter your database connection details.

      image
  3. Use the Editor:

    • Write and execute SQL queries in the editor.

    • View results and manage your database.

      image

Azure SQL Managed Instance

A fully managed PaaS database offering with a free trial for 12 months.

  1. Create an Azure Account:

  2. Create a SQL Managed Instance:

    • Go to the Azure portal and navigate to SQL Managed Instances.

    • Click on Create and follow the prompts to set up your instance.

      image
  3. Connect and Manage:

    • Use Azure Data Studio or SSMS to connect to your managed instance.
    • Perform database management tasks as needed.
Total views

Refresh Date: 2025-07-18