Mysql迁移工具,源参数字符串| sql server 的连接字符串

发布于 2024-07-30 02:46:49 字数 259 浏览 0 评论 0原文

我总是无法“获取列表失败错误”。

这是我在 ASP.NET 中的连接字符串,

"Data Source=maywood\XSQLSERVER;Initial Catalog=maywood_test;Integrated Security=SSPI"

我应该在 MySQL 迁移工具中为源参数字符串输入什么

,仅供参考,“maywood”是我的计算机名称,我使用的是 SQL Server 2000。

I always got failed to "fetching of list failed error".

This is my connection string in ASP.NET

"Data Source=maywood\XSQLSERVER;Initial Catalog=maywood_test;Integrated Security=SSPI"

What exactly should I input at MySQL migration tool for source parameter string

FYI,'maywood' is my computer name and I am using SQL Server 2000.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唔猫 2024-08-06 02:46:49

您已集成 Integrated Security=SSPI 设置 - 也许您应该尝试手动将 UID 和密码设置为您知道正确的值。

Data Source=maywood\XSQLSERVER;Initial Catalog=maywood_test;
User ID=myUsername;Password=myPassword;

集成安全性使用您用于登录的 Windows 系统的凭据 - 这些凭据可能对您尝试访问的数据库无效。

You have integrated Integrated Security=SSPI set -- perhaps you should try setting the UID and Password manually to values that you know are correct.

Data Source=maywood\XSQLSERVER;Initial Catalog=maywood_test;
User ID=myUsername;Password=myPassword;

Integrated Security uses the credentials from the Windows system that you're using to log in -- these credentials might not be valid for the database you're trying to access.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文