随着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数据库技术问题需要咨询,请联系我!
以下官方手册为SAP IQ 16.0 SP03中文版:
集合 UDF my_interpolate 示例是 OLAP 样式集合 UDF,会尝试在每个方向上执行任 何相邻空值集到最近非空值的线性插值操作,从而将空值填入序列。
my_interpolate 定义
要以合理的开销运行,my_interpolate 必须通过 固定宽度、基于行的窗口运行, 但用 户能根据预计的相邻空值数上限设置窗口宽度。 如果输入给定行的值不是空值, 则 该行的结果与输入值相同。这种函数可接收一组双精度浮点值, 然后生成一组最终 双精度值。
#include "extfnapiv4.h"
#include <stdlib.h>
#include <assert.h>
// MY_INTERPOLATE
//
// OLAP-style aggregate UDF that accepts a double precision
// floating point argument. If the current argument value is
// not NULL, then the result value is the same as the
// argument value. On the other hand, if the current row's
// argument value is NULL, then the result, where possible,
// will be the arithmetic interpolation across the nearest
// preceding and nearest following values that are not NULL.
// In all cases the result is also a double precision value.
//
// The start function creates a structure for maintaining the
// argument values within the window including their NULLness.
// The finish function then deallocates this structure.
//
// Since there are some strict aggregate usage restrictions
// for this aggregate (must be used with a row-based window
// frame that includes the current row), the corresponding
// SQL declaration will look like:
//
// CREATE AGGREGATE FUNCTION my_interpolate(IN arg1 DOUBLE)
// RETURNS DOUBLE
// OVER REQUIRED
// WINDOW FRAME REQUIRED
// RANGE NOT ALLOWED
// PRECEDING REQUIRED
// UNBOUNDED PRECEDING NOT ALLOWED
// FOLLOWING REQUIRED
// UNBOUNDED FOLLOWING NOT ALLOWED
// EXTERNAL NAME 'my_interpolate@libudfex'
typedef struct my_window { int _allocated_elem;
int _first_used;
int _next_insert_loc;
int *_is_null; double *_dbl_val;
int _num_rows_in_frame;
} my_window;
#if defined extern "C" {
#endif
cplusplus
static void my_interpolate_reset(a_v3_extfn_aggregate_context
*cntxt)
{
assert(cntxt->_user_data);
my_window *cptr = (my_window *)cntxt->_user_data;
cptr->_first_used = 0;
cptr->_next_insert_loc = 0;
cptr->_num_rows_in_frame = 0;
for (int i=0; i<cptr->_allocated_elem; i++) { cptr->_is_null[i] = 1;
}
}
static void my_interpolate_start(a_v3_extfn_aggregate_context
*cntxt)
{
my_window *cptr = (my_window *)cntxt->_user_data;
// Make sure function was defined correctly if (!cntxt->_is_window_used)
{
cntxt->set_error(cntxt, 20001, "Function requires window"); return;
}
if (cntxt->_window_has_unbounded_preceding || cntxt->_window_has_unbounded_following)
{
cntxt->set_error(cntxt, 20002, "Window cannot be unbounded"); return;
}
if (cntxt->_window_is_range_based)
{
cntxt->set_error(cntxt, 20003, "Window must be row based"); return;
}
if (!cptr) {
//
cptr = (my_window *)malloc(sizeof(my_window)); if (cptr) {
cptr->_is_null = 0;
cptr->_dbl_val = 0;
cptr->_num_rows_in_frame = 0;
cptr->_allocated_elem = ( int )cntxt->_max_rows_in_frame;
cptr->_is_null = (int *)malloc(cptr->_allocated_elem
* sizeof(int));
cptr->_dbl_val = (double *)malloc(cptr->_allocated_elem
* sizeof(double));
cntxt->_user_data = cptr;
}
}
if (!cptr || !cptr->_is_null || !cptr->_dbl_val) {
// Terminate this query
cntxt->set_error(cntxt, 20000, "Unable to allocate memory"); return;
}
my_interpolate_reset(cntxt);
}
static void my_interpolate_finish(a_v3_extfn_aggregate_context
*cntxt)
{
if (cntxt->_user_data) {
my_window *cptr = (my_window *)cntxt->_user_data; if (cptr->_is_null) {
free(cptr->_is_null); cptr->_is_null = 0;
}
if (cptr->_dbl_val) { free(cptr->_dbl_val); cptr->_dbl_val = 0;
}
free(cntxt->_user_data); cntxt->_user_data = 0;
}
}
static void my_interpolate_next_value(a_v3_extfn_aggregate_context
*cntxt,
{
an_extfn_value arg; double arg1;
void *arg_handle)
my_window *cptr = (my_window *)cntxt->_user_data;
// Get the one argument, and stash its value
// within the rotating window arrays
//
int curr_cell_num = cptr->_next_insert_loc % cptr-
>_allocated_elem;
if (cntxt->get_value( arg_handle, 1, &arg ) && arg.data != NULL ) { arg1 = *((double *)arg.data);
cptr->_dbl_val[curr_cell_num] = arg1; cptr->_is_null[curr_cell_num] = 0;
} else {
cptr->_is_null[curr_cell_num] = 1;
}
// Then increment the insertion location and number of rows in frame
cptr->_next_insert_loc = ((cptr->_next_insert_loc + 1)
% cptr->_allocated_elem); cptr->_num_rows_in_frame++;
}
static void my_interpolate_drop_value(a_v3_extfn_aggregate_context
*cntxt,
void * /*arg_handle*/)
{
my_window *cptr = (my_window *)cntxt->_user_data;
// Drop one value from the window by incrementing past it and
// decrement the number of rows in the frame
cptr->_first_used = ((cptr->_first_used + 1) % cptr-
>_allocated_elem);
cptr->_num_rows_in_frame--;
}
static void my_interpolate_evaluate(a_v3_extfn_aggregate_context
*cntxt,
void *arg_handle)
{
an_extfn_value outval;
my_window *cptr = (my_window *)cntxt->_user_data; double result;
int result_is_null = 1; double preceding_value;
int preceding_value_is_null = 1; double preceding_distance = 0; double following_value;
int following_value_is_null = 1; double following_distance = 0;
int j;
// Determine which cell is the current cell int curr_cell_num =
((int)(cntxt->_result_row_from_start_of_partition-1))%cptr-
>_allocated_elem; int tmp_cell_num;
int result_row_offset_from_start_of_frame = cptr->_first_used <= curr_cell_num ?
( curr_cell_num - cptr->_first_used ) :
( curr_cell_num + cptr->_allocated_elem - cptr-
>_first_used );
// Compute the result value
if (cptr->_is_null[curr_cell_num] == 0) {
//
// If the current rows input value is not NULL, then there is
// no need to interpolate, just use that input value.
//
result = cptr->_dbl_val[curr_cell_num]; result_is_null = 0;
//
} else {
//
// If the current rows input value is NULL, then we do
// need to interpolate to find the correct result value.
// First, find the nearest following non-NULL argument
// value after the current row.
//
int rows_following = cptr->_num_rows_in_frame - result_row_offset_from_start_of_frame - 1;
for (j=0; j<rows_following; j++) {
tmp_cell_num = ((curr_cell_num + j + 1) % cptr-
>_allocated_elem);
if (cptr->_is_null[tmp_cell_num] == 0) { following_value = cptr->_dbl_val[tmp_cell_num]; following_value_is_null = 0;
following_distance = j + 1; break;
}
}
// Second, find the nearest preceding non-NULL
// argument value before the current row.
//
int rows_before = result_row_offset_from_start_of_frame; for (j=0; j<rows_before; j++) {
tmp_cell_num = ((curr_cell_num + cptr->_allocated_elem - j - 1)
% cptr->_allocated_elem); if (cptr->_is_null[tmp_cell_num] == 0) {
preceding_value = cptr->_dbl_val[tmp_cell_num]; preceding_value_is_null = 0;
preceding_distance = j + 1; break;
}
}
// Finally, see what we can come up with for a result value
//
if (preceding_value_is_null && !following_value_is_null) {
//
// |
Example: |
|
// |
||
// |
Inputs: NULL |
Result of my_interpolate: 40.0 |
// |
NULL |
40.0 |
// |
40.0 |
40.0 |
// |
// |
Example: |
|
// |
||
// |
Inputs: NULL |
Result of my_interpolate: 40.0 |
// |
NULL |
40.0 |
// |
40.0 |
40.0 |
// |
// No choice but to mirror the nearest following non-NULL value
result = following_value; result_is_null = 0;
//
} else if (!preceding_value_is_null && following_value_is_null) {
//
// No choice but to mirror the nearest preceding non-NULL value
// Example:
//
// Inputs: 10.0 Result of my_interpolate: 10.0
// NULL 10.0
//
result = preceding_value; result_is_null = 0;
//
} else if (!preceding_value_is_null && !following_value_is_null)
{
//
// Here we get to do real interpolation based on the
// nearest preceding non-NULL value, the nearest following
// non-NULL value, and the relative distances to each.
// Examples:
//
// Inputs: 10.0 Result of my_interpolate: 10.0
// NULL 20.0
// NULL 30.0
// 40.0 40.0
//
// Inputs: 10.0 Result of my_interpolate: 10.0
// NULL 25.0
// 40.0 40.0
//
result = ( preceding_value
+ ( (following_value - preceding_value)
* ( preceding_distance
/ (preceding_distance +
following_distance)))); result_is_null = 0;
}
}
// And last, pass the result value out outval.type = DT_DOUBLE; outval.piece_len = sizeof(double);
if (result_is_null) { outval.data = 0;
} else {
outval.data = &result;
}
cntxt->set_value( arg_handle, &outval, 0 );
}
static a_v3_extfn_aggregate my_interpolate_descriptor =
{
&my_interpolate_start,
&my_interpolate_finish,
&my_interpolate_reset,
&my_interpolate_next_value, //( timeseries_expression )
&my_interpolate_evaluate,
&my_interpolate_drop_value, NULL, // cume_eval,
NULL, // next_subaggregate_extfn NULL, // drop_subaggregate_extfn
NULL, // evaluate_superaggregate_extfn NULL, // reserved1_must_be_null
NULL, // reserved2_must_be_null NULL, // reserved3_must_be_null NULL, // reserved4_must_be_null NULL, // reserved5_must_be_null 0, // indicators
0, // context size
0, // context alignment
0.0, //external_bytes_per_group
( double )sizeof( double ), // external bytes per row 0, // reserved6_must_be_null
0, // reserved7_must_be_null
0, // reserved8_must_be_null
0, // reserved9_must_be_null
0, // reserved10_must_be_null NULL // _for_server_internal_use
};
a_v3_extfn_aggregate *my_interpolate()
{ return &my_interpolate_descriptor; }
#if defined
}
#endif
cplusplus
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。+-------------------------------------华丽的分割线-------------------------------------------------------------------------