在Linux上使用Microsoft SQL – 安装SQL Server命令行工具

我们在上一篇博客中分享了《在Linux上使用Microsoft SQL – 安装SQL》今天我们来分享如何在Linux系统中安装SQL Server命令行工具,便于我们使用命令行进行数据库操作。

1、下载Microsoft Centos 存储库配置文件

sudo curl -o /etc/yum.repos.d/msprod.repo https://packages.microsoft.com/config/rhel/7/prod.repo

2、安装mssql-tools

sudo yum install -y mssql-tools unixODBC-devel

3、为了方便使用,我们需要在环境变量中添加 /opt/mssql-tools/bin/

echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc
source ~/.bashrc

4、连接SQL Server

-S:SQL Server 名称

-U:用户名

-P:SA密码

localhost:本机连接

连接命令解释
sqlcmd -S localhost -U SA -P '<YourPassword>'

5、连接成功会提示1>,那么就可以对数据库进行操作及使用了。

此文章为原创文章,作者:胖哥叨逼叨,如若转载,请与我联系并注明出处:https://www.pangshare.com/1693.htm

(2)
打赏 微信扫一扫 微信扫一扫
上一篇 2019年8月15日 下午2:01
下一篇 2019年8月18日 下午1:53

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注