SQL Server CE数据库大小问题
我有一份来自一家倒闭公司的申请。它似乎使用 SQL Server CE 数据库。我搜索了系统,找不到任何 .sdf
文件。看来数据库已经变得太大了。知道如何找到数据库并更改最大大小吗?
错误信息:
无法记录应用程序启动。 - System.Data.EntityCommandExecutionException:发生错误 从商店提供商的数据读取器读取时。看内在 详细信息例外。 --->
System.Data.SqlServerCe.SqlCeException:数据库文件较大 大于配置的最大数据库大小。此设置生效 仅在第一个并发数据库连接上。 [ 所需最大 数据库大小(以 MB 为单位;如果未知则为 0)= 257]
I have an application from a company that went out of business. It appears to use the SQL Server CE database. I have searched the system and can't find any .sdf
files. It appears that the database has grown too big. Any idea how I can find the DB and change the maximum size?
ERROR message:
Unable to log application start.
- System.Data.EntityCommandExecutionException: An error occurred
while reading from the store provider's data reader. See the inner
exception for details. --->System.Data.SqlServerCe.SqlCeException: The database file is larger
than the configured maximum database size. This setting takes effect
on the first concurrent database connection only. [ Required Max
Database Size (in MB; 0 if unknown) = 257 ]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要找到连接字符串并添加:Max Database Size=1024
(最大值为 4000)
You need to locate the connection string and add: Max Database Size=1024
(Max is 4000)