Hello,
This is my first thread in this forum and I hope to find some answers. I am trying to make a query from a linked table (PRODDTA_F0006) and a select query (F0911), but when I am running it, I am getting the following message:
ODBC - call failed
[Oracle][ODBC][Ora]ORA-01013: user requested cancel of current operation (#1013)
I am using Windows 2000 with Office XP and the database is Oracle 8.0. Does anyone know something that can help?
This is my first thread in this forum and I hope to find some answers. I am trying to make a query from a linked table (PRODDTA_F0006) and a select query (F0911), but when I am running it, I am getting the following message:
ODBC - call failed
[Oracle][ODBC][Ora]ORA-01013: user requested cancel of current operation (#1013)
I am using Windows 2000 with Office XP and the database is Oracle 8.0. Does anyone know something that can help?
Code:
SELECT
F0911.GLAN8,
PRODDTA_F0006.MCRP05,
F0911.GLPN,
Count(F0911.Amount) AS CountOfAmount,
Sum(F0911.Amount) AS SumOfAmount
FROM F0911
INNER JOIN PRODDTA_F0006 ON F0911.GLMCU=PRODDTA_F0006.MCMCU
GROUP BY
F0911.GLAN8, PRODDTA_F0006.MCRP05, F0911.GLPN;