If you installed this formula with the registration option (default), you'll need to manually remove [ODBC Driver 13 for SQL Server] section from odbcinst.ini after the formula is uninstalled. This can be done by executing the following command: odbcinst -u -d -n "ODBC Driver 13 for SQL Server"
时间: 2024-03-10 08:50:55 浏览: 134
这个提示是在卸载 Microsoft ODBC Driver for SQL Server 时出现的,它提醒你需要手动从 `odbcinst.ini` 文件中删除 `[ODBC Driver 13 for SQL Server]` 部分,以确保完全卸载该驱动程序。
要删除 `[ODBC Driver 13 for SQL Server]` 部分,请按照以下步骤操作:
1. 打开终端窗口,并输入以下命令进入 `odbcinst.ini` 文件所在的目录:
```
cd /usr/local/etc/
```
2. 使用文本编辑器(如 vim)打开 `odbcinst.ini` 文件,例如:
```
sudo vim odbcinst.ini
```
3. 在文件中查找 `[ODBC Driver 13 for SQL Server]` 部分,并将其删除。
4. 保存并关闭文件。
5. 运行以下命令以确保 `[ODBC Driver 13 for SQL Server]` 部分已被删除:
```
odbcinst -q -d
```
如果该命令的输出中不再包含 `[ODBC Driver 13 for SQL Server]` 部分,则说明该驱动程序已被完全卸载。
希望这些步骤可以帮助你成功删除 `[ODBC Driver 13 for SQL Server]` 部分。
相关问题
If you installed this formula with the registration option (default), you'll need to manually remove [ODBC Driver 13 for SQL Server] section from odbcinst.ini after the formula is uninstalled. This can be done by executing the following command: odbcinst -u -d -n "ODBC Driver 13 for SQL Server" ==> Summary 🍺 /opt/homebrew/Cellar/msodbcsql/13.1.9.2: 10 files, 2.6MB, built in 15 seconds ==> Caveats ==> msodbcsql If you installed this formula with the registration option (default), you'll need to manually remove [ODBC Driver 13 for SQL Server] section from odbcinst.ini after the formula is uninstalled. This can be done by executing the following command: odbcinst -u -d -n "ODBC Driver 13 for SQL Server"
这个提示意味着,如果你使用默认的注册选项安装了 Microsoft ODBC Driver for SQL Server,那么在卸载该公式后,你需要手动从 `odbcinst.ini` 中删除 `[ODBC Driver 13 for SQL Server]` 部分。这可以通过执行以下命令来完成:
```
odbcinst -u -d -n "ODBC Driver 13 for SQL Server"
```
执行此命令将会从 `odbcinst.ini` 中删除 `[ODBC Driver 13 for SQL Server]` 部分。
请注意,`odbcinst.ini` 文件通常位于 `/etc` 目录下。如果你使用的是 macOS 平台,则可能需要使用超级用户权限才能编辑该文件。
希望这可以帮助你解决问题。
阅读全文