当尝试在Pentaho中运行插入/更新或LookUp函数来获取我的SQL表时,它显示此错误,任何人都知道,我如何修复它?
Error getting views from schema [null]
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'HAVING TABLE_TYPE IN ('VIEW',null,null,null,null) ORD
我用的是五角星PDI 7.1。我正在尝试将数据从Mysql转换到Mysql,改变数据的结构。
我正在读取源表(customers),对于每一行,我必须运行另一个查询来计算余额。我试图使用来完成它,但可能不是最好的方法。
我必须运行这样的查询来获得平衡:
SELECT
SUM(
CASE WHEN direzione='ENTRATA' THEN -importo ELSE +importo END
)
FROM Movimento WHERE contoFidelizzato_id = ?
我应该设置从上一步中获取的参数。有什么建议?
我是个五角星新手
我已经创建了一个Trasformation,其中我创建了一个节点"Execute SQL script“,并将其插入到SQL script框中:
declare
result number;
begin
-- Call the procedure
prc_my_procedure(result);
end;
我已经签署了"Execute as a single statement“标志,我运行了转换,它工作了,因为我已经检查了它在Oracle数据库中做了什么,但是我如何读取过程返回的变量"result”的内容,以便在转换的下一步中使用它
我一直试图打印出一个五角星,但我不断得到编译错误。
public class star
{
public static void main(String[] args)
{
int[][] star1 =new int[first][last];
int first = 5;
int last = 2;
for(int i = 0; i < 5; i++)
{
for(int j = 0; j < 2; j++)
(char) star1[i][j] == "*";