随着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
- 安全性管理指南
- 实用程序指南
Open Client 和 Open Server 15.7 支持将 text、 unitext 和 image 作为存储过 程的输入参数以及动态 SQL 语句的参数。
为了便于针对此功能的使用开展登录协商,已经新增了两种连接功能:
• CS_RPCPARAM_LOB – 客户端应用程序向服务器发送此请求功 能,从而确定大对象 (LOB) 数据类型能否作为存储过程的输入参 数。如果服务器无法支持此功能,则会在初次登录协商中清除此功 能位。如果您尝试向这种服务器发送 LOB 参数,则会发生错误。
• CS_RPCPARAM_NOLOB – 客户端应用程序发送此响应功能,以 请求服务器拒绝将 LOB 数据作为参数发送。此功能在缺省情况下 处于打开状态。
将少量 LOB 数据作为参数发送
将少量 LOB 数据作为存储过程的输入参数或预准备 SQL 语句的参数发 送与发送非 LOB 参数相同。
要发送少量 LOB 数据,请使用 ct_param() 或 ct_setparam() 为命令和数据 分配内存并将它们直接发送到服务器。
当使用 text、 unitext 或 image 参数时,必须设置 CS_DATAFMT 结构的 maxlength 字段。maxlength 值指示是一次将所有 LOB 数据发送到服务器 还是通过数据流将其传输到服务器。如果 maxlength 大于零,将会在一 个块中发送所有 LOB 数据。如果 maxlength 设置为 CS_UNUSED,则会 按数据流发送 LOB 数据,即使用一组 ct_send_data() 调用成块发送数 据。块大小为零表示数据流结束。
示例 1 将少量 LOB 数据作为存储过程的输入参数发送:
CS_TEXT textvar[50]; CS_DATAFMT paramfmt; CS_INT datalen; CS_SMALLINT ind;
...
ct_command(cmd, CS_RPC_CMD, ...)
/*
** Clear and setup the CS_DATAFMT structure, then pass
** each of the parameters for the RPC.
*/
memset(¶mfmt, 0, sizeof(paramfmt));
/*
** First parameter, an integer.
*/
strcpy(paramfmt.name, "@intparam"); paramfmt.namelen = CS_NULLTERM; paramfmt.datatype = CS_INT_TYPE; paramfmt.maxlength = CS_UNUSED; paramfmt.status = CS_INPUTVALUE; paramfmt.locale = NULL;
ct_param(cmd, ¶mfmt, (CS_VOID *)&intvar, sizeof(CS_INT), ind))
/*
** Second parameter, a (small) text parameter.
*/
strcpy((CS_CHAR *)textvar, "The Open Client and Open
Server products both include Bulk-Library and CS-Library.°±);
datalen = sizeof(textvar); strcpy(paramfmt.name, "@textparam"); paramfmt.namelen = CS_NULLTERM; paramfmt.datatype = CS_TEXT_TYPE; paramfmt.maxlength = EX_MYMAXTEXTLEN; paramfmt.status = CS_INPUTVALUE; paramfmt.locale = NULL;
ct_setparam(cmd, ¶mfmt, (CS_VOID *)&textvar,
&datalen, &ind);
ct_send(cmd); ct_results(cmd, &res_type);
...
示例 2 使用预准备语句发送少量 LOB 数据:
/*
** Prepare the sql statement.
*/
sprintf(statement, "select title_id from mybooks where title like (?) ");
/*
** Send the prepared statement to the server
*/
ct_dynamic(cmd, CS_PREPARE, "my_dyn_stmt", CS_NULLTERM, statement, CS_NULLTERM);
ct_send(cmd); handle_results(cmd);
/*
** Prompt user to provide a value for title
*/
printf("Enter title id value - enter an X if you wish to stop:\n");
while (toupper(title[0]) != 'X')
{
printf("Retrieve detail record for title:?"); fgets(mytexttitle, 50, stdin);
/*
** Execute the dynamic statement.
*/
ct_dynamic(cmd, CS_EXECUTE, "my_dyn_stmt", CS_NULLTERM, NULL, CS_UNUSED);
/*
** Define the input parameter
*/
memset(&data_format, 0, sizeof(data_format)); data_format.status = CS_INPUTVALUE; data_format.namelen = CS_NULLTERM ; data_format.datatype = CS_TEXT_TYPE; data_format.format = CS_FMT_NULLTERM; data_format.maxlength = EX_MYMAXTEXTLEN; ct_setparam(cmd, &data_format,
(CS_VOID *)mytexttitle, &datalen, &ind);
ct_send(cmd); handle_results(cmd);
...
}
将大量 LOB 数据作为参数发送
大量 LOB 数据是通过数据流发送到服务器的,以便更好地管理资源。 在循环中使用 ct_send_data() 可将数据成块发送到服务器。
若要成块发送 LOB 数据参数,请使用以下设置定义该参数:
• 将 CS_DATAFMT 结构的 datatype 字段设置为 CS_TEXT_TYPE、 CS_UNITEXT_TYPE 或 CS_IMAGE_TYPE。
• 将 CS_DATAFMT 结构的 maxlength 字段设置为 CS_UNUSED。
• 将 ct_param() 函数的 *data 指针参数设置为 NULL。
• 将 ct_param() 函数的 datalen 参数设置为 0。
示例 1 成块发送大 LOB 数据参数:
#define BUFSIZE 2048
int fp;
char sendbuf[BUFSIZE]
/*
** Clear and setup the CS_DATAFMT structure, then pass
** each of the parameters for the RPC.
*/
memset(¶mfmt, 0, sizeof(paramfmt)); strcpy(paramfmt.name, "@intparam"); paramfmt.namelen = CS_NULLTERM; paramfmt.datatype = CS_INT_TYPE; paramfmt.maxlength = CS_UNUSED; paramfmt.status = CS_INPUTVALUE; paramfmt.locale = NULL;
ct_param(cmd, ¶mfmt, (CS_VOID *)&intvar, sizeof(CS_INT), 0))
/*
** Text parameter, sent as a BLOB.
*/
strcpy(paramfmt.name, "@textparam"); paramfmt.namelen = CS_NULLTERM; paramfmt.datatype = CS_TEXT_TYPE; paramfmt.maxlength = CS_UNUSED; paramfmt.status = CS_INPUTVALUE; paramfmt.locale = NULL;
/*
** Although the actual data will not be sent here, we
** must invoke ct_setparam() for this parameter to send
** the parameter format (paramfmt) information to the
** server, prior to sending all parameter data.
** Set *data to NULL and datalen = 0, to indicate that
** the length of text data is unknown and we want to
** send it in chunks to the server with ct_send_data().
*/
ct_setparam(cmd, ¶mfmt, NULL, 0, 0);
/*
** Another LOB parameter (image), sent in chunks with
** ct_send_data()
*/
strcpy(paramfmt.name, "@textparam"); paramfmt.namelen = CS_NULLTERM; paramfmt.datatype = CS_IMAGE_TYPE; paramfmt.maxlength = CS_UNUSED; paramfmt.status = CS_INPUTVALUE; paramfmt.locale = NULL;
/*
** Just like the previous parameter, invoke
** ct_setparam() for this parameter to send the
** parameter format.
*/
ct_setparam(cmd, ¶mfmt, NULL, 0, 0);
/*
** Repeat this sequence of filling paramfmt and calling
** ct_param() for any subsequent parameter that needs
** to be sent before finally sending the data chunks for
** the LOB type parameters.
*/
strcpy(paramfmt.name, "@any_otherparam"); paramfmt.namelen = CS_NULLTERM; paramfmt.datatype = CS_MONEY_TYPE;
...
/*
** Send the first LOB (text) parameter in chunks of
** 'BUFSIZE' to the server.We must end with a 0 bytes
** write to indicate the end of the current parameter.
*/
fp = open("huge_text_file", O_RDWR, 0666);
do
{
num_read = read(fp, sendbuf, BUFSIZE); ct_send_data(cmd, (CS_VOID *)sendbuf, num_read);
} while (num_read != 0);
/*
** Repeat the ct_send_data() loop for the next LOB
** parameter.
** Send the image parameter in chunks of 'BUFSIZE'
** to the server as well and end with a 0 bytes write
** to indicate the end of the current parameter.
*/
fp = open("large_image_file", O_RDWR, 0666); do
{
num_read = read(fp, sendbuf, BUFSIZE); ct_send_data(cmd, (CS_VOID *)sendbuf, num_read);
} while (num_read != 0);
/*
** Ensure that all the data is flushed to the server
*/ ct_send(cmd);
示例 2 使用预准备 SQL 语句发送 LOB 数据:
/*
** Prepare the sql statement.
*/
sprintf(statement, "select title_id from mybooks where title like (?) ");
/*
** Send the prepared statement to the server
*/
ct_dynamic(cmd, CS_PREPARE, "mydyn_stmt", CS_NULLTERM, statement, CS_NULLTERM);
ct_send(cmd); handle_results();
/*
** Promt user to provide a value for title
*/
printf("Enter title id value - enter an X if you wish to stop:\n");
while (toupper(myblobtitle[0]) != 'X')
{
printf("Retrieve detail record for title:?"); fgets(myblobtitle, 50, stdin);
/*
** Execute the dynamic statement.
*/
ct_dynamic(cmd, CS_PREPARE, "my_dyn_stmt", CS_NULLTERM, statement, CS_NULLTERM);
/*
** Define the input parameter, a TEXT type that we want to send in chunks to the server.
*/
memset(&data_format, 0, sizeof(data_format)) ; data_format.namelen = CS_NULLTERM ; data_format.datatype = CS_TEXT_TYPE; data_format.maxlength = CS_UNUSED; data_format.status = CS_INPUTVALUE; ct_setparam(cmd, &data_format, NULL, 0, 0);
/*
** Send the 'myblobtitle' data in chunks of
** 'CHUNKSIZE' to the server with ct_send_data() and
** end with 0 bytes to indicate the end of data for
** this parameter.This is just an example to show
** how chunks can be sent.(myblobtitle[] is used as
** a simple example.This could also be replaced by
** large file which would be read in chunks from disk
** for example).
*/
bytesleft = strlen(myblobtitle); bufp = myblobtitle;
do
{
sendbytes = min(bytesleft, CHUNKSIZE); ct_send_data(cmd, (CS_VOID *)bufp, sendbytes); bufp += bufp + sendbytes;
bytesleft -= sendbytes;
} while (bytesleft > 0)
/*
** End with 0 bytes to indicate the end of current data.
*/
ct_send_data(cmd, (CS_VOID *)bufp, 0);
/*
** Insure that all the data is sent to the server.
*/ ct_send(cmd);
handle_results(cmd)
...
}
/*
** Deallocate the prepared statement and finish up.
*/
ct_dynamic(cmd, CS_DEALLOC, "my_dyn_stmt", CS_NULLTERM, NULL, CS_UNUSED);
ct_send(cmd); handle_results(cmd);
在 Open Server 中检索 LOB 参数
Open Server 可以使用 srv_xferdata 一次检索全部 LOB 参数数据,也可以 使用新的 srv_get_data 例程成块检索 LOB 参数数据。当参数长度设置为 CS_UNUSED 时,Open Server 成块检索 LOB 参数。请参见 第 60 页上的 “ srv_get_data ”。
示例 检索 LOB 参数的说明:
/*
** Retrieve the description of the parameters coming
** from client
*/
for (paramnum = 1; paramnum <= numparams; paramnum++)
{
/*
** Get a description of the parameter.
*/
ret= srv_descfmt(spp, CS_GET, SRV_RPCDATA, paramnum, &(paramfmtp[paramnum - 1]));
/*
** Allocate space for the parameters and bind the
** data.
*/
if (paramfmtp[paramnum-1].maxlength >= 0)
{
if (paramfmtp[paramnum-1].maxlength > 0)
{
data[paramnum-1] = calloc(1, paramfmtp[paramnum-1].maxlength);
}
else
{
ind[paramnum-1] = CS_NULLDATA;
}
}
else
{
/*
** Allocate a large size buffer for BLOB data
** (which length is unknown yet)
*/
blobbuf[blobnum] = malloc(BUFSIZE); blobnum++;
}
srv_bind(spp, CS_GET, SRV_RPCDATA, paramnum,
&(paramfmtp[paramnum-1]), data[paramnum-1],
&(len[paramnum-1]), &(ind[paramnum-1]))
/*
** For every LOB parameter, call srv_get_data() in
** a loop as long as it succeeds
/*
for (i = 0; i < blobnum ; i++)
{
bufp = blobbuf[i]; bloblen[i] = 0;
do
{
ret = srv_get_data(spp, bufp, BUFSIZE,
&outlen); bufp += outlen;
bloblen[i] += outlen;
} while (ret == CS_SUCCEED);
/*
** Check for the correct return code
*/
if (ret != CS_END_DATA)
{
return CS_FAIL;
}
}
/*
** And receive remaining client data srv_xferdata()
*/
ret = srv_xferdata(spp, CS_GET, SRV_RPCDATA);
}
srv_get_data
成块从客户端读取 text、 unitext 或 image 参数流。
语法 CS_RETCODE srv_get_data(spp, bp, buflen, outlenp)
SRV_PROC *spp; CS_BYTE *bp; CS_INT buflen; CS_INT *outlenp;
参数 • spp – 指向内部线程控制结构的指针。
• bp – 指向存储客户端数据的缓冲区的指针。
• buflen – *bp 指针的大小。它表示每块中传输的字节数。
• outlenp – 输出参数 outlenp 中包含读入 *bp 缓冲区的字节数。
返回值 • CS_SUCCEED – srv_get_data() 已成功运行,更多数据待处理。
• CS_FAIL – 例程失败。
• CS_END_DATA – srv_get_data() 已读取完整个 text、unitext 或 image
参数。
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。+-------------------------------------华丽的分割线-------------------------------------------------------------------------