返回首页

gbase数据、南大通用产品文档:GBase8cSNAPSHOTSNAPSHOT

更新日期:2024年09月11日

SNAPSHOT 表记录当前系统中存储的WDR 快照数据的索引信息、开始时间和结束时
间。只能在系统库中查询到结果,在用户库中无法查询。
名称
类型
描述
示例
snapshot_id
bigint
WDR 快照序号。
1
start_ts
timestamp
WDR 快照的开始时间。
2019-12-28 17:11:27.423742+0
8
end_ts
timestamp
WDR 快照的结束时间。
2019-12-28 17:11:43.67726+08

GBase 8c V5 开发者手册
南大通用数据技术股份有限公司
1085

GBA-03OT-0004
错误码
错误标识
错误信息
GBA-03OT-0004

集群某分片无可用节点
错误出现原因
某个数据分片全部节点损坏
分析与建议
查看集群状态,检查是否有节点离线

示例1:通过本地文件导入导出数据
在基于,可以使用CopyManager 接口,通过流方式,将数据库中的数据导出到本地文
件或者将本地文件导入数据库中,文件格式支持CSV、TEXT 等格式。
样例程序如下,执行时需要加载GBase 8c 的JDBC 驱动。
import java.sql.Connection; import java.sql.DriverManager; import java.io.IOException; import
java.io.FileInputStream; import java.io.FileOutputStream; import java.sql.SQLException;
import org.postgresql.copy.CopyManager; import org.postgresql.core.BaseConnection;
public class Copy{
public static void main(String[] args)
{

GBase 8c V5 开发者手册
南大通用数据技术股份有限公司
311
String urls = new String("jdbc:postgresql://localhost:15432/postgres");//数据库URL
String username =
new String("username");//用户名
String password =
new String("passwd"); //密码
String tablename = new String("migration_table"); //定义表信息
String tablename1 = new String("migration_table_1"); //定义表信息
String driver = "org.postgresql.Driver";
Connection conn = null;
try {
Class.forName(driver);
conn = DriverManager.getConnection(urls, username, password);
} catch (ClassNotFoundException e)
{ e.printStackTrace(System.out);
} catch (SQLException e)
{ e.printStackTrace(System.out);
}
// 将表migration_table 中数据导出到本地文件d:/data.txt
try {
copyToFile(conn, "d:/data.txt", "(SELECT * FROM migration_table)");
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block e.printStackTrace();
}
//将d:/data.txt 中的数据导入到migration_table_1 中。
try {
copyFromFile(conn, "d:/data.txt", tablename1);
} catch (SQLException e) {
// TODO Auto-generated catch block e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block e.printStackTrace();
}
// 将表migration_table_1 中的数据导出到本地文件d:/data1.txt
try {
copyToFile(conn, "d:/data1.txt", tablename1);
} catch (SQLException e) {
// TODO Auto-generated catch block e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block e.printStackTrace();
}
}

GBase 8c V5 开发者手册
南大通用数据技术股份有限公司
312
public static void copyFromFile(Connection connection, String filePath, String tableName)
throws SQLException, IOException {
FileInputStream fileInputStream = null; try {
CopyManager copyManager = new CopyManager((BaseConnection)connection);
fileInputStream = new FileInputStream(filePath);
copyManager.copyIn("COPY " + tableName + " FROM STDIN with (" +
"DELIMITER"+"'"+ delimiter + "'" + "ENCODING " + "'" + encoding + "')",
fileInputStream);
} finally {
if (fileInputStream != null)
{ try {
fileInputStream.close();
} catch (IOException e) { e.printStackTrace();
}
}
}
}
public static void copyToFile(Connection connection, String filePath, String tableOrQuery)
throws SQLException, IOException {
FileOutputStream fileOutputStream = null;
try {
CopyManager copyManager = new CopyManager((BaseConnection)connection);
fileOutputStream = new FileOutputStream(filePath);
copyManager.copyOut("COPY " + tableOrQuery + " TO STDOUT", fileOutputStream);
} finally {
if (fileOutputStream != null) { try {
fileOutputStream.close();
} catch (IOException e)
{ e.printStackTrace();
}
}
}
}
}