随着Sybase被完全整合到SAP下,Sybase原来的支持网站被SAP Support Portal取代。
只有购买了SAP服务的用户才能使用账号登录SAP Support Portal进行介质下载、补丁升级、报Incident等。
目前,原Sybase所有产品(包括:Adaptive Server Enterprise、Sybase IQ、Replication Server、PowerDesigner等)的官方手册仍然可以从https://infocenter.sybase.com/help/index.jsp进行浏览或下载。暂不清楚该网站https://infocenter.sybase.com/help/index.jsp何时会被完全迁移到SAP Support上!
Sybase官方手册英文版有html和pdf两种格式,而中文版手册只有pdf一种格式。为了国内Sybase用户更方便、快捷地搜索Sybase常见产品的官方手册内容,特将中文版Sybase官方手册转为html格式!
Sybase产品官方手册中文版的html格式所有内容的版权归SAP公司所有!本博客站长是Sybase数据库的铁杆粉丝!
如有Sybase数据库技术问题需要咨询,请联系我!
以下官方手册为ASE 15.7 ESD#2中文版:
- 新增功能公告 适用于 Windows、Linux 和 UNIX 的 Open Server 15.7 和 SDK 15.7
- 新增功能摘要
- 新增功能指南
- ASE 15.7 发行公告
- 配置指南(windows)
- 安装指南(windows)
- 参考手册:构件块
- 参考手册:命令
- 参考手册:过程
- 参考手册:表
- Transact-SQL® 用户指南
- 系统管理指南,卷 1
- 系统管理指南,卷 2
- 性能和调优系列:基础知识
- 性能和调优系列:锁定和并发控制
- 性能和调优系列:监控表
- 性能和调优系列:物理数据库调优
- 性能和调优系列:查询处理和抽象计划
- 性能和调优系列:使用 sp_sysmon 监控 Adaptive Server
- 性能和调优系列:利用统计分析改进性能
- 程序员参考 jConnect for JDBC 7.0.7
- Adaptive Server Enterprise 中的 Java
- 组件集成服务用户指南
- Ribo 用户指南
- 内存数据库用户指南
- Sybase Control Center for Adaptive Server® Enterprise
- 安全性管理指南
- 实用程序指南
derived_stat
说明 返回指定的对象和索引的派生统计信息。
语法 derived_stat("object_name" | object_id, index_name | index_id, ["partition_name" | partition_id,] "statistic")
参数 object_name
是您所需的对象的名称。如果未指定完全限定对象名, derived_stat 将 搜索当前数据库。
object_id
是 object_name 的替代参数,并且是您所需对象的对象 ID。object_id 必 须位于当前数据库中
index_name
是属于您感兴趣的指定对象的索引的名称。
index_id
是 index_name 的替代参数,并且是您所需的指定对象的索引 ID。
partition_name
是分区的名称,属于您所需的特定分区。 partition_name 是可选参数。 当您使用 partition_name 或 partition_id 时, Adaptive Server 会返回目标 分区而不是整个对象的统计信息。
partition_id
是 partition_name 的替代 参数,是 您所 需的指 定对象 的分区 ID。
partition_id 是可选参数。
“statistic”
要返回的派生统计信息。可用统计信息为:
• data page cluster ratio 或 dpcr — 对象 / 索引对的数据页集群比
• index page cluster ratio 或 ipcr — 对象 / 索引对的索引页集群比
• data row cluster ratio 或 drcr — 对象 / 索引对的数据行集群比
• large io efficiency 或 lgio — 对象 / 索引对的大 I/O 效率
• space utilization 或 sput — 对象 / 索引对的空间利用率
示例 示例 1 为 titles 表的 titleidind 索引选择空间利用率:
select derived_stat("titles", "titleidind", "space utilization")
示例 2 为 titles 表的索引 ID 2 选择数据页集群比。请注意,您可以使用
"dpcr" 或 "data page cluster ratio":
select derived_stat("titles", 2, "dpcr")
示例 3 由于未指定分区 ID 或名称,将报告有关整个对象的统计信息:
11> select derived_stat(object_id("t1"), 2, "drcr")
2> go
---------------------------
0.576923
示例 4 报告分区 tl_928003396 的统计信息:
11> select derived_stat(object_id("t1"), 0, "t1_928003306", "drcr")
2> go
---------------------------
1.000000
(1 row affected)
示例 5 使用来自 syspartitions 的数据,为给定表的所有索引选择派生的统 计信息:
select convert(varchar(30), name) as name, indid,
convert(decimal(5, 3), derived_stat(id, indid, 'sput')) as 'sput', convert(decimal(5, 3), derived_stat(id, indid, 'dpcr')) as 'dpcr', convert(decimal(5, 3), derived_stat(id, indid, 'drcr')) as 'drcr', convert(decimal(5, 3), derived_stat(id, indid, 'lgio')) as 'lgio'
from syspartitions where id = object_id('titles') go
name indid sput dpcr drcr lgio
------------------------------ ------ -------- -------- -------- -------- titleidind_2133579608 1 0.895 1.000 1.000 1.000
titleind_2133579608 2 0.000 1.000 0.688 1.000
(2 rows affected)
示例 6 为 分区表 的所有 索引和 分区选 择派生 的统计 信息。此 处,
mymsgs_rr4 是循环分区表,它在创建时带有全局索引和局部索引。
11> select * into mymsgs_rr4 partition by roundrobin 4 lock datarows 2> from master..sysmessages
2> go
(7597 rows affected)
11> create clustered index mymsgs_rr4_clustind on mymsgs_rr4(error, severity) 2> go
1> create index mymsgs_rr4_ncind1 on mymsgs_rr4(severity) 2> go
1> create index mymsgs_rr4_ncind2 on mymsgs_rr4(langid, dlevel) local index 2> go
2> update statistics mymsgs_rr4 1>
2> select convert(varchar(10), object_name(id)) as name,
3> (select convert(varchar(20), i.name) from sysindexes i 4> where i.id = p.id and i.indid = p.indid),
5> convert(varchar(30), name) as ptnname, indid,
6> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'sput')) as 'sput', 7> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'dpcr')) as 'dpcr', 8> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'drcr')) as 'drcr', 9> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'lgio')) as 'lgio' 10> from syspartitions p
11> where id = object_id('mymsgs_rr4')
name ptnname indid sput dpcr drcr lgio
----------------------------- -------------------------- ----- ---- ---- ---- ----
mymsgs_rr4 |
mymsgs_rr4 |
mymsgs_rr4_786098810 |
0 |
0.90 1.000 1.00 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4 |
mymsgs_rr4_802098867 |
0 |
0.90 1.000 1.00 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4 |
mymsgs_rr4_818098924 |
0 |
0.89 1.000 1.00 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4 |
mymsgs_rr4_834098981 |
0 |
0.90 1.000 1.00 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4_clustind |
mymsgs_rr4_clustind_850099038 |
2 |
0.83 0.995 1.00 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4_ncind1 |
mymsgs_rr4_ncind1_882099152 |
3 |
0.99 0.445 0.88 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4_ncind2 |
mymsgs_rr4_ncind2_898099209 |
4 |
0.15 1.000 1.00 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4_ncind2 |
mymsgs_rr4_ncind2_914099266 |
4 |
0.88 1.000 1.00 |
1.000 |
mymsgs_rr4 |
mymsgs_rr4_ncind2 |
mymsgs_rr4_ncind2_930099323 4 |
0.877 1.000 1.000 |
1.000 |
|
mymsgs_rr4 |
mymsgs_rr4_ncind2 |
mymsgs_rr4_ncind2_946099380 4 |
0.945 0.993 1.000 |
1.000 |
示例 7 为当前数据库中的全部所有页锁定表选择派生统计信息:
22> select convert(varchar(10), object_name(id)) as name
3> (select convert(varchar(20), i.name) from sysindexes i 4> where i.id = p.id and i.indid = p.indid),
5> convert(varchar(30), name) as ptnname, indid,
6> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'sput')) as 'sput', 7> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'dpcr')) as 'dpcr', 8> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'drcr')) as 'drcr', 9> convert(decimal(5, 3), derived_stat(id, indid, partitionid, 'lgio')) as 'lgio' 10> from syspartitions p
11> where lockscheme(id) = "allpages"
12> and (select o.type from sysobjects o where o.id = p.id) = 'U'
name ptnname indid sput dpcr drcr lgio
----------- ----------------- --------------------------- ----- ---- ---- ---- ----
stores |
stores |
stores_18096074 |
0 0.276 1.000 1.000 1.000 |
discounts |
discounts |
discounts_50096188 |
0 0.075 1.000 1.000 1.000 |
au_pix |
au_pix |
au_pix_82096302 |
0 0.000 1.000 1.000 1.000 |
au_pix |
tau_pix |
tau_pix_82096302 |
255 NULL NULL NULL NULL |
blurbs |
blurbs |
blurbs_114096416 |
0 0.055 1.000 1.000 1.000 |
blurbs |
tblurbs |
tblurbs_114096416 |
255 NULL NULL NULL NULL |
t1apl |
t1apl |
t1apl_1497053338 |
0 0.095 1.000 1.000 1.000 |
t1apl |
t1apl |
t1apl_1513053395 |
0 |
0.082 |
1.000 |
1.000 |
1.000 |
t1apl |
t1apl |
t1apl_1529053452 |
0 |
0.095 |
1.000 |
1.000 |
1.000 |
t1apl |
t1apl_ncind |
t1apl_ncind_1545053509 |
2 |
0.149 |
0.000 |
1.000 |
1.000 |
t1apl |
t1apl_ncind_local |
t1apl_ncind_local_1561053566 |
3 |
0.066 |
0.000 |
1.000 |
1.000 |
t1apl |
t1apl_ncind_local |
t1apl_ncind_local_1577053623 |
3 |
0.057 |
0.000 |
1.000 |
1.000 |
t1apl |
t1apl_ncind_local |
t1apl_ncind_local_1593053680 |
3 |
0.066 |
0.000 |
1.000 |
1.000 |
authors |
auidind |
auidind_1941578924 |
1 |
0.966 |
0.000 |
1.000 |
1.000 |
authors |
aunmind |
aunmind_1941578924 |
2 |
0.303 |
0.000 |
1.000 |
1.000 |
publishers |
pubind |
pubind_1973579038 |
1 |
0.059 |
0.000 |
1.000 |
1.000 |
roysched |
roysched |
roysched_2005579152 |
0 |
0.324 |
1.000 |
1.000 |
1.000 |
roysched |
titleidind |
titleidind_2005579152 |
2 |
0.777 |
1.000 |
0.941 |
1.000 |
sales |
salesind |
salesind_2037579266 |
1 |
0.444 |
0.000 |
1.000 |
1.000 |
salesdetai |
salesdetail |
salesdetail_2069579380 |
0 |
0.614 |
1.000 |
1.000 |
1.000 |
salesdetai |
titleidind |
titleidind_2069579380 |
2 |
0.518 |
1.000 |
0.752 |
1.000 |
salesdetai |
salesdetailind |
salesdetailind_2069579380 |
3 |
0.794 |
1.000 |
0.726 |
1.000 |
titleautho |
taind |
taind_2101579494 |
1 |
0.397 |
0.000 |
1.000 |
1.000 |
titleautho |
auidind |
auidind_2101579494 |
2 |
0.285 |
0.000 |
1.000 |
1.000 |
titleautho |
titleidind |
titleidind_2101579494 |
3 |
0.223 |
0.000 |
1.000 |
1.000 |
titles |
titleidind |
titleidind_2133579608 |
1 |
0.895 |
1.000 |
1.000 |
1.000 |
titles |
titleind |
titleind_2133579608 |
2 |
0.402 |
1.000 |
0.688 |
1.000 |
(27 rows affected)
用法 • derived_stat 返回双精度值。
• derived_stat 返回的值与 optdiag 实用程序提供的值匹配。
• 如果指定对象或索引不存在,则 derived_stat 返回 NULL。
• 在错误消息中指定无效的统计类型结果。
• 使用可选的 partition_name 或 partition_id 报告有关目标分区的请求的 统计信息,否则, derived_stat 报告整个对象的统计信息。
• derived_stat 会放弃尚未在高速缓存中的对象的描述符,而不是消耗 资源。
• 如果提供:
• 四个参数 — derived_stat 将第三个参数用作分区,并返回有关第 四个参数的派生统计信息。
• 三个参数 — derived_stat 假定您不指定分区并返回由第三个参数 指定的派生统计信息。
标准 符合 ANSI SQL 的级别 Transact-SQL 扩展。
权限 对 derived_stat 的权限检查因您的细化权限设置而异。
细化权限已启用 |
在启用细化权限的情况下,您必须是表的所有者或具有 manage database 权限 才能执行 derived_stat |
细化权限已禁用 |
在禁用细化权限的情况下,您必须是表所有者或具有 sa_role 的用户才能执行 derived_stat。 |
另请参见 文档 《性能和调优指南》 :
• “单个表的访问方法和查询开销”
• “统计表与用 optdiag 显示统计信息”
实用程序 optdiag
Sybase SQL Anywhere数据库恢复工具ReadASADB:
之前就已经研发成功了能够从Sybase SQL Anywhere的DB文件中恢复数据的工具: ReadASADB。此工具支持ASA v5.0, v6.0, v7.0, v8.0, v9.0, v10.0, v11.0, v12.0, v16.0, v17.0等版本。
能够从损坏的SQL Anywhere数据文件(.db)和UltraLite数据文件(.udb)上提取数据的非常规恢复工具。
恢复Sybase SQL Anywhere的工具在国内处于领先水平。
Sybase SQL Anywhere数据库恢复工具ReadASADB功能
能够从损坏的SQL Anywhere数据文件(.db)和UltraLite数据文件(.udb)上提取数据的非常规恢复工具
- 适用于所有的SQL Anywhere版本 包括:5.x,6.x,7.x,8.x,9.x,10.x,11.x,12.x,16.x,17.x
- 适用于所有的UltraLite版本
- 能够恢复出来表结构和数据
- 能够恢复自定义数据类型
- 能够恢复存储过程等对象的语法
- 能够导出到目标数据库
- 能够导出到SQL文件并生成导入脚本
- 支持多种字符集,包括:cp850、cp936、gb18030、utf8等
- 能够恢复未加密或者简单加密类型的数据
- 简单易用
- 限制:不支持AES加密的数据文件
SQL Anywhere数据库非常规恢复工具ReadASADB使用介绍
Sybase SQL Anywhere数据库恢复工具ReadASADB适用场景
各种误操作:
- 误截断表(truncate table)
- 误删除表(drop table)
- 错误的where条件误删数据
- 误删除db或log文件
- 误删除表中的字段
Sybase SQL Anywhere数据库恢复工具ReadASADB的应用场景:
1.因为物理磁盘故障、操作系统、系统软件方面或者掉电等等原因导致的Sybase SQL Anywhere数据库无法打开的情况;
2.误操作,包括truncate table,drop table,不正确的where条件导致的误删除等;
Sybase SQL Anywhere无法打开时,比较常见的错误是:Assertion failed。
如:
1、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Checkpoint log: invalid bitmap page -- transaction rolled back
2、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Page number on page does not match page requested -- transaction rolled back
3、Internal database error *** ERROR *** Assertion failed:200502 (9.0.2.2451) Checksum failure on page 23 -- transaction rolled back
4、File is shorter than expected
5、Internal database error *** ERROR *** Assertion failed: 201116 Invalid free list index page found while processing checkpoint log -- transaction rolled back
6、*** ERROR *** Assertion failed: 51901 Page for requested record not a table page or record not present on page
7、*** ERROR *** Assertion failed: 201417 (7.0.4.3541) Invalid count or free space offset detected on a table page
8、Internal database error *** ERROR *** Assertion failed: 201425 (8.0.3.5594) Invalid count or free space offset detected on a free list page -- transaction rolled back.
9、Internal database error *** ERROR *** Assertion failed: 100702 (8.0.1.2600) Unable to modify indexes for a row referenced in rollback log -- transaction rolled back
Sybase ASE数据库恢复工具READSYBDEVICE:
一个不依赖数据库管理系统、直接从Sybase数据库设备文件上提取数据的业内领先的恢复工具!能够从损坏的Sybase ASE设备文件(.dat)上提取数据的非常规恢复工具。
Sybase ASE数据库恢复工具READSYBDEVICE的主要功能:
- 被勒索病毒加密数据文件及备份文件情况下的恢复;
- 系统崩溃只剩下数据文件的情况下的恢复,甚至数据库文件不存在而只有损坏的备份文件情况下的恢复;
- 因断电、硬盘坏道等造成数据库文件损坏情况下的恢复;
- delete数据恢复、误update数据恢复、误删除表(drop)恢复、误truncate表恢复 等;
- 各种Sybase内部系统表损坏、索引错误的修复;
- master数据库损坏而无法正常运行情况下的恢复;
- Sybase数据库被标记为可疑,不可用等情况的恢复;
- Sybase数据库中数据文件内部出现坏块情况下的恢复;
- Sybase数据库无数据文件但有日志文件的情况下的恢复;
- Sybase数据库只有数据文件无任何日志文件的情况下的恢复;
- Sybase数据文件被误删除情况下的碎片提取恢复;
- 磁盘阵列上的Sybase数据库被误格式化情况下的数据库恢复;
- 数据库sysobjects等系统表损坏无法正常应用情况下的恢复;
- Sybase数据库还原数据库出现失败情况下的恢复;
- Sybase数据库只剩下损坏的备份文件情况下的恢复。
Sybase ASE数据库恢复工具READSYBDEVICE支持的版本:
Sybase ASE 11.0.x,11.5.x,11.9.x,12.0.x,12.5.x,15.0.x,15.5.x,15.7.x,16.0.xSQL Server数据库恢复工具SQLRescue:
一个不依赖数据库管理系统、直接从SQL Server数据库文件上提取数据的业内领先的恢复工具!能够从损坏的SQL Server数据库文件(.mdf)上提取数据的非常规恢复工具。
SQL Server数据库恢复工具SQLRescue的主要功能:
- 系统崩溃只剩下数据文件的情况下的恢复,即无日志文件或者日志文件损坏情况下的恢复;
- 断电导致数据库文件损坏情况下的恢复;
- 硬盘坏道造成数据库损坏情况下的恢复;
- 数据文件内部存在坏页情况下的恢复;
- 企业管理器误删除数据表记录,管理软件误删除数据表记录的恢复;
- 并闩锁错误、格式化、误删除后导致软件不能使用的情况;
- 无法读取并闩锁页sysindexes失败情况下的修复;
- 数据文件被误删除情况下的碎片提取恢复;
- 系统表损坏、索引错误、误删除数据库表、删除记录的数据找回;
- master数据库损坏而无法正常运行情况下的恢复;
- 数据文件无法附加情况下的数据恢复;
- 数据库被标记为可疑,质疑,不可用等情况的恢复;
- 数据库sysobjects等系统表损坏情况下的恢复;
- 数据被误(drop、delete、truncate)删除表数据的恢复,误update后的数据恢复等;
- 还原时报一致性错误,错误823等情况下的数据恢复,各种错误提示的数据库文件修复;
- 数据库被误格式化等情况下的数据库恢复;
- 日志收缩造成数据库损坏情况下的恢复;
- 仅剩损坏的备份文件情况下的恢复。
SQL Server数据库恢复工具SQLRescue技术特点:
只要SQL Server数据库的数据文件存在,我们就有办法帮您从数据文件中找回重要数据。- 从数据文件中直接恢复数据
- 不能附加时直接恢复数据并生成新的数据库
- 系统表损坏的数据库修复
- 快速修复SQL 823错误、连接中断错误
SQL Server数据库恢复工具SQLRescue支持的版本:
Microsoft SQL Server 7.0, 2000, 2005, 2008, 2008R2, 2012, 2014, 2016, 2017,2019。+-------------------------------------华丽的分割线-------------------------------------------------------------------------