-
2008-08-12 11:23:31
/ MS SQL Server
http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=58ce885d-508b-45c8-9fd3-118edd8e6fffMicrosoft® SQL Server® 2008 Express快速描述SQL Server 2008 Express 是 SQL Server 的免费版本,是学习和构建桌面及小型服务器应用程序的理想选择,且非常适合由 ISV 进行再分发。本页内容快速详细信息概述系统要求说明附加信息相关资源相关下载

下载以下文件快速详细信息版本:10.00.1600.22发布日期:200
查看(628)
评论(1)
-
2008-08-10 15:44:53
/ Oracle入门与认证
http://www.oracledba.com.cn/blog/select file_name,a.bytes / 1024 / 1024 total_size,ceil((nvl(hwm, 1) * 8192) / 1024 / 1024) used_size,a.bytes / 1024 / 1024 - ceil((nvl(hwm, 1) * 8192) / 1024 / 1024) space_morefrom dba_data_files a,(select file_id, max(block_id + blocks - 1) hwmfrom dba_extentsgroup by file_id) bwhere a.file_id = b.file_id(+)and ceil(blocks * 8192 / 1024 / 1024) -ceil((nvl(hwm, 1) * 8192) / 1024 / 1024)
查看(272)
评论(5)
-
2008-08-09 12:30:30
/ Oracle入门与认证
1
查看(1513)
评论(16)
-
2008-08-08 16:48:09
/ Oracle入门与认证
微软官方SQL Server 2008正式中文试用版下载Microsoft® SQL Server® 2008 Enterprise Evaluation:开发人员试用体验http://www.microsoft.com/downloads/details.aspx?FamilyId=6B10C7C1-4F97-42C4-9362-58D4D088CD38&displaylang=zh-cnMicrosoft® SQL Server® 2008 Enterprise Evaluation:IT 专业人员试用体验http://www.microsoft.com/downloads/details.aspx?familyid=265F08BC-1874-4C81-83D8-0D48DBCE6297&displaylang=zh-cnSQL Server 2008 发行说明http://www.microsoft.com/downloads/
查看(445)
评论(11)
-
2008-08-08 08:40:23
/ Oracle入门与认证
表设计的测试有时候一个表的一些列不是所有行有值,但一些列始终有值.这时用1个表来保存还是用2个关联的表保存这些数据查询效率更高?SQL*Plus: Release 9.2.0.1.0 - Production on 星期五 8月 8 07:49:29 2008Copyright (c) 1982, 2002, Oracle Corporation.All rights reserved.连接到:Oracle9i Enterprise Edition Release 9.2.0.1.0 - ProductionWith the Partitioning, OLAP and Oracle Data Mining optionsJServer Release 9.2.0.1.0 - ProductionSQL> select count(*)from tcol80; --有1个id 列x
查看(128)
评论(1)