刚换SQL Server2008 不久,感觉运行速度、编辑提示都比05版的提升不少,但是在维护考试系统中遇到一个05中没有的问题:05中有“打开表”可以编辑所有数据行,到了08变成了“打开前1000行”和“编辑前200行”:考试系统中的数据怎么也有几千行,怎么编辑以后的数据?
方法一:修改设置 进入"工具"---选项---SQL Server对象资源管理器---命令---“编辑前行”,值改为1000(自定)。修改后为: www.dedecms.com
方法二:修改SQL语句
先打开想要编辑200行以上的表,如图再右侧获取sql语句:[sql]SELECT TOP (200) questionId, theChapter, theType, point, degree, fraction, questionContent, blankNumber, isOrdinal, correctAnswer, isValid FROM t_gangjinhunningtujiegou_tiankongti 修改top()中的值即可。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn