0

我在 pentaho 用户控制台版本 4.8.0 中。

  1. 如何创建新的 .cda 文件?即extract.cda

  2. 该文件位于服务器内的哪个文件夹?(通常的位置信息会很棒:))

  3. 我有一个名为 CustTable 的表。我有 5 列 custId、userId、name、city 和 state。如何创建一个新的 .cdi 文件,我可以在其中输入 custID 和 userID 并弹出 4 列,即 custId、userId、名称和状态。

例如,如果我输入 custId=304, userId= 42 那么结果应该类似于 304, 42, Bryan, VA

我可以将 SQL 编写为: select custID, userId, name, state from custTable where custId=304 and userID=42;

我怎样才能实现它?

谢谢你。

4

3 回答 3

0

You need to install CDE to your pentaho BI and hope this link you understand more CDE dashboard http://www.youtube.com/watch?v=sxicLR0y8Vg

于 2013-05-24T09:10:31.903 回答
0

你安装CDE了吗?可能是您还没有安装它,这可能会导致混乱。它是 Pentaho 附带的一个额外插件。从市场安装它,或者为了获得更大的灵活性,请在此处使用安装程序脚本:

https://github.com/pmalve/ctools-installer

于 2013-03-26T12:30:33.197 回答
0
  1. 每次使用 CDE 创建仪表板时,您都将拥有仪表板的 cda 文件
  2. 它位于保存仪表板文件的文件夹中,通常为:biserver-ce\pentaho-solutions\xxx
  3. 使用 CDE 在仪表板中创建数据源。使用这个 sql:
从 custtable 中选择 *
其中 custID = ${custid}
和用户 ID = ${用户 ID}

不要忘记为此数据源创建两个参数(custID、userID)

于 2013-03-26T04:08:03.243 回答