Hi all,
we are calling a stored procedure from cron and sometimes it just hangs. Unfortunately, when I try to view running sessions, hdbsql crashes:
i2s@vega3:~$ hdbsql
Welcome to the SAP HANA Database interactive terminal.
Type: \h for help with commands
\q to quit
hdbsql=> SELECT C.CONNECTION_ID, PS.STATEMENT_STRING FROM M_CONNECTIONS C JOIN M_PREPARED_STATEMENTS PS ON C.CONNECTION_ID = PS.CONNECTION_ID AND C.CURRENT_STATEMENT_ID = PS.STATEMENT_ID WHERE C.CONNECTION_STATUS = 'RUNNING' AND C.CONNECTION_TYPE = 'Remote';
Segmentation fault
It is hdbsql version 1.00.48. Strangely, running the same query from a remote hdbsql works just fine. Could this be fixed please.
-- Micha