Good morning,
I'm having trouble executing a stored procedure and a stored query on HFSQL.
I've created and deployed the stored procedure and the query, I've scheduled the procedure (that uses the query) and executed it but nothing changes on the database. Below the code I've used. Any suggesrtions?
Procedure:
PROCEDURE stored_procedure_update_ztl_scaduti()
data is Date = DateSys()
HExecuteQuery(stored_query_update_ztl_scaduti, hQueryDefault, data)
Query:
UPDATE
ZTL
SET
STA_ID = 'X'
I'm having trouble executing a stored procedure and a stored query on HFSQL.
I've created and deployed the stored procedure and the query, I've scheduled the procedure (that uses the query) and executed it but nothing changes on the database. Below the code I've used. Any suggesrtions?
Procedure:
PROCEDURE stored_procedure_update_ztl_scaduti()
data is Date = DateSys()
HExecuteQuery(stored_query_update_ztl_scaduti, hQueryDefault, data)
Query:
UPDATE
ZTL
SET
STA_ID = 'X'