如何截断VS2010数据连接中的SQL表
我有使用 MDF 文件的 VS2010(是 SQL CE 吗?我不确定)。
该表中的所有数据都是不需要的,我想截断它。或者我想编写数据脚本并重做它...但我找不到执行此操作的命令,更不用说 TRUNCATE TABLE 不是受支持的命令(WTF)
这里发生了什么?
I have VS2010 using a MDF file (is that SQL CE? I'm not sure).
All that data in that table is unneeded, and I want to truncate it. Or I'd like to script out the data and redo it... but I can't find the commands to do so, not to mention TRUNCATE TABLE is not a supported command (WTF)
What's going on here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为
truncate
在 CE 上不可用。请改用delete
。在 CE 中它也会为您做同样的事情。这里讨论:
http://social.msdn .microsoft.com/Forums/en-US/sqlce/thread/5d4c571a-9875-4d84-a6ce-3a6f99a5e88d
I do not think that
truncate
is available on CE. Usedelete
instead. It will do the same for you in CE.Discussed here:
http://social.msdn.microsoft.com/Forums/en-US/sqlce/thread/5d4c571a-9875-4d84-a6ce-3a6f99a5e88d