我正在寻找使用Pentaho自定义标题。我有一个示例excel文件。我在下面附上
为了与postgres集成,我使用excel input
获取字段并使用postgres进行映射。执行完这些步骤之后,我想从postgres中提取数据,并在excel标题中创建另一个excel文件,其中包含数据类型。我在下面附上的所需格式
注意
1行 - Student
是工作表的名称
2行 - Datatype
3行 - Column name
更新
获取数据类型我运行了此查询
select table_name, column_name, data_type from information_schema.columns where
table_catalog='database name' and table_name='table name'