在 APP_DATA 中的 SQL Server Express 数据库上运行 aspnet_regsql
当我在向导模式下运行 aspnet_regsql 命令时,即使在数据库服务器名称中指定“.\SQLEXPRESS”,也无法选择 SQL Sever Express 数据库文件。我该如何解决这个问题?
When I run the aspnet_regsql command in wizard mode, there is no way to select an SQL Sever Express database file even after specifying ".\SQLEXPRESS" in the database server name. How can I work around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在此处找到了答案。
这不能从向导界面完成。执行此操作的命令行参数是:
aspnet_regsql -A all -C "数据源=.\SQLEXPRESS;集成安全性=True;用户实例=True" -d "C:\MyProject\APP_DATA\aspnetdb.mdf"
Found the answer here.
This can not be done from the wizard interface. The command line parameter to do this is:
aspnet_regsql -A all -C "Data Source=.\SQLEXPRESS;Integrated Security=True;User Instance=True" -d "C:\MyProject\APP_DATA\aspnetdb.mdf"