ogg 如何验证某张表有没有同步 oracle
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ogg 如何验证某张表有没有同步 oracle相关的知识,希望对你有一定的参考价值。
参考技术A ggsciinfo all
进程没有abend,同步就没什么问题。
数据库层面,可以简单检查一下两边表的数据量。
Oracle用sql查询某张表的字段信息(字段类型长度等)
查看某张表所有的字段信息
-- 查看某张表所有的字段信息
select
t.table_name, -- 表名
t.column_name, -- 字段名
t.data_type, -- 字段类型
t.data_length -- 字段长度
from
user_tab_columns t
where
t.table_name='表名';
查看某张表的某个字段信息
-- 查看某张表的某个字段信息
select
t.table_name, -- 表名
t.column_name, -- 字段名
t.data_type, -- 字段类型
t.data_length -- 字段长度
from
user_tab_columns t
where
t.table_name='表名' and t.column_name='字段名';
以上是关于ogg 如何验证某张表有没有同步 oracle的主要内容,如果未能解决你的问题,请参考以下文章
大数据实时数据同步超级详细的生产环境OGG(GoldenGate)12.2实时异构同步Oracle数据部署方案(下)
大数据实时数据同步超级详细的生产环境OGG(GoldenGate)12.2实时异构同步Oracle数据部署方案(上)
大数据实时数据同步超级详细的生产环境OGG(GoldenGate)12.2实时异构同步Oracle数据部署方案(下)