返回首页

gbase数据、南大通用产品文档:GBase8a删除旧的distribution

更新日期:2024年09月11日

操作步骤
步骤1:确认当前的distribution id,在当前示例中新的Distribution ID 为3,旧的
Distribution ID 为1:

GBase 8a MPP Cluster 产品手册
4 管理员指南
文档版本953(2022-04-10)
南大通用数据技术股份有限公司
235
$ gcadmin showdistribution vc vc1
Distribution ID: 3 | State: new | Total segment num: 3
Primary Segment Node IP
Segment ID
Duplicate Segment node IP
=========================================================================
|

GBA-02DR-0024

GBase 8a MPP Cluster 产品手册
7 附录
文档版本953(2022-09-15)
南大通用数据技术股份有限公司
1652
错误码
错误标识
错误信息
GBA-02DR-0024

Gcluster
read
%s
table
error
on
node %s
错误出现原因
查询集群层gclusterdb.nodedatamap 出错
分析与建议
查看日志,找到出错节点,查看集群层gclusterdb.nodedatamap 是否正常

当传递给 rleapyear() 函数的是闰年时,它返回 1(TRUE),当不是时,它返回 0
(FALSE)。

语法
mint rleapyear(year)
mint year;
year
整数。

用法
参数 year 必须是日期的年份组件,而不是该日期本身。您必须必须以完整的形式
(2007),而不是缩写的形式(07)来表达 year。

返回代码
1
该年份为闰年。
0
该年份不是闰年。
示例

GBase 8s ESQL/C 编程指南
南大通用数据技术股份有限公司
- 890 -
demo 目录在 rleapyear.ec 文件中包含此样例程序。
/*
* rleapyear.ec *

The following program accepts a date entered from the console and stores this date into an
int4, which stores the date in an internal format. It then converts the internal format into an array
of three short integers that contain the month, day, and year portions of the date. It then tests the
year value to see if the year is a leap year.
*/

#include

main()
{
int4 i_date;
mint errnum;
short mdy_array[3];
char date[20];
mint x;

static char fmtstr[9] = "mmddyyyy";

printf("RLEAPYEAR Sample Program running.\n\n");

/* Allow user to enter a date */
printf("Enter a date as a single string, month.day.year\n");
gets(date);

printf("\nThe date string is %s.\n", date);

/* Put entered date in internal format */
if (x = rdefmtdate(&i_date, fmtstr, date))
printf("Error %d on rdefmtdate conversion\n", x);
else

GBase 8s ESQL/C 编程指南
南大通用数据技术股份有限公司
- 891 -
{

/* Convert internal format into a MDY array */
if ((errnum = rjulmdy(i_date, mdy_array)) == 0)
{
/* Check if it is a leap year */
if (rleapyear(mdy_array[2]))
printf("%d is a leap year\n", mdy_array[2]);
else
printf("%d is not a leap year\n", mdy_array[2]);
}
else
printf("rjulmdy() call failed with error %d", errnum);
}

printf("\nRLEAPYEAR Sample Program over.\n\n");
}
输出
RLEAPYEAR Sample ESQL Program running.

Enter a date as a single string, month.day.year
10.12.07

The date string is 10.12.07.
2007 is not a leap year

RLEAPYEAR Sample Program over.