我正在尝试使用外表将数据从SQL Server中的表中提取到PostgreSQL中。示例:
addRowMainComponent(index) {
this.form.rowsMain[index].componentRows.push('')
}
我的问题是第一个字段CREATE FOREIGN TABLE test
(testguid text ,
name text )
SERVER test_server
OPTIONS (schema_name 'dbo', table_name 'test');
是SQL Server中的GUID数据类型。类似于ca902d1e-1082-e711-80bf-005056bdd6cd。这在PostgreSQL中是空白的。其他非GUID字段正确显示。
有人有解决方法吗?