当前位置: 首页 > 图文教程 > 网络编程 > ASP > Microsoft SQL Server 7.0数据库设置与数据结构

ASP
ASP简单入门教程(2):ASP环境配置
ASP简单入门教程(3):ASP语法
ASP简单入门教程(4):ASP变量
ASP简单入门教程(5):ASP子程序
HTTP 500 - 内部服务器错误(补充内容)
ASP教程:IIS中配置多站点
ASP实例教程:Content Rotator (ASP 3.0)
ASP实例教程:Content Linking组件
ASP实例教程:Browser Capabilities组件
ASP实例教程:AdRotator组件
ASP实例教程:Dictionary对象
ASP实例教程:File对象
ASP实例教程:Drive对象
ASP实例教程:TextStream对象
关于学习ASP的20个测试题目
ASP实例教程:Server对象
ASP实例教程:Session对象
ASP实例教程:用户信息和服务器
asp教程:解决IIS安装问题
ASP网站数据库被挂木马的处理办法

ASP 中的 Microsoft SQL Server 7.0数据库设置与数据结构


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 169 ::
收藏到网摘: n/a

  SQL Server 7.0页(Page)的大小?

8K ,SQL Server 6.X页的大小为2K。

SQL Server 7.0每一列的最大值为多少?

由于同一列的数据一定要在同一页上,因此每一列最大值为8092字节。

SQL Server 7.0扩展(Extent)的大小为多少?

64K,即8页,较小的表可与其它数据库对象共享同一扩展。

SQL Server 7.0有那几种数据类型?

Integers(整型):bit、int、smallint、tinyint。
Decimal(小数):decimal、numeric。
Money and small money(货币):Money、small money
Datetime and smalldatetime(日期):Datetime、smalldatetime。
Numerics(数字):cursor、timestamp、uniqueidentifier。
Unicode Character Strings(Unicode字符串):nchar、nvarchar、ntext。
Binary Strings(二进制串):binary、varbinary、image。
SQL Server 7.0的bit数据类型与SQL Server 6.5有何不同?

SQL Server 7.0创建表格时, bit数据类型可以为null(空),但是与SQL Server 6.5版的bit数据类型相同,无法在数据为bit字段创建索引,如果数据库兼容模型为6.X则bit字段不可为null。

SQL Server 7.0的char及varchar数据类型允许的最大值为多少?

8000字节。