slackbuilds/development/azuredatastudio
Martin Bångens a1205d66c5
development/azuredatastudio: Added (data mgmt tool).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-07-29 08:13:33 +07:00
..
README development/azuredatastudio: Added (data mgmt tool). 2023-07-29 08:13:33 +07:00
azuredatastudio.SlackBuild development/azuredatastudio: Added (data mgmt tool). 2023-07-29 08:13:33 +07:00
azuredatastudio.desktop development/azuredatastudio: Added (data mgmt tool). 2023-07-29 08:13:33 +07:00
azuredatastudio.info development/azuredatastudio: Added (data mgmt tool). 2023-07-29 08:13:33 +07:00
doinst.sh development/azuredatastudio: Added (data mgmt tool). 2023-07-29 08:13:33 +07:00
slack-desc development/azuredatastudio: Added (data mgmt tool). 2023-07-29 08:13:33 +07:00

README

Azure Data Studio is a data management and development tool with
connectivity to popular cloud and on-premises databases.
Azure Data Studio supports Windows, macOS, and Linux, with immediate
capability to connect to Azure SQL and SQL Server. Browse the
extension library for additional database support options including
MySQL, PostreSQL, and MongoDB.

How to get started with SQL Server 20022 and docker, run:

docker pull mcr.microsoft.com/mssql/server:2022-latest

docker run -e "ACCEPT_EULA=Y" \
   -e "MSSQL_SA_PASSWORD=QW3rtyui" \
   -p 1433:1433 --name mssql2022 \
   -d \
   mcr.microsoft.com/mssql/server:2022-latest


Log in with:
Server=localhost,1433
User name=sa
Password=QW3rtyui


Optional dependencies:
docker docker-cli