Hi,
I am testing some BI tools like Tableau, Power BI and Qlik with Caché using ODBC driver
Is there another way to connect them with Caché?
Hi,
I am testing some BI tools like Tableau, Power BI and Qlik with Caché using ODBC driver
Is there another way to connect them with Caché?
I am trying to create a Procedure in Caché, but this message is showing:
<UNDEFINED>frmit+118^%qaqpsq *mt("v",1)
This is the procedure:
CREATE PROCEDURE testebi.sp_cargainicial()
BEGIN
INSERT INTO testebi.Fato_Atendimentos (
PK_OsProcedimento )
SELECT ID
from dado.TblOsProcedimento ;
UPDATE testebi.Fato_Atendimentos as A SET PrimeiraOS = 1
FROM
(select min(convert(int,data)) data, paciente
from dado.arqordemservico
group by paciente) as b
WHERE a.fk_paciente = b.paciente and a.fk_Data = b.data;
end
It works if I try to create the procedure with onl