Hi all,
I have found some discussions about the wis 30270 error. One of these talks about decimal and local.
I have this mistake when I use decimal or timestamp into a derivate table.
For example:
WITH
sysdate AS NATIVE ( "BI_COLLAUDO",
'select sysdate from dual',
"SYSDATE" TIMESTAMP
)
SELECT
sysdate."SYSDATE"
FROM
sysdate
If I use a varchar all works fine :
WITH
stringa_from_dual AS NATIVE ( "SKYBI_COLLAUDO",
'SELECT ''aaaa'' as campo
FROM dual',
"CAMPO" VARCHAR (4)
)
SELECT
stringa_from_dual."CAMPO"
FROM
stringa_from_dual
The mistake occurs only with Webi. It doesn't occur using IDT or Data Federation Administration Tool.
Do you have some ideas about this?
Thanks in advance,
Francesco