cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error opening the cursor for the remote database - group by not supported in select statement

Syed_2
Explorer
0 Kudos
1,103

Hi, when i execute a SQL query with group by clause over a virtual table (from success factors provisioned through SDA), I get the following error;

SAP DBTech JDBC: [403]: internal error: Error opening the cursor for the remote database Error parsing query: ERRORS <ERROR - group by is not supported in select statement

How do i get over this?

I'll appreciate any help.

 

 

Accepted Solutions (0)

Answers (1)

Answers (1)

Subhendu
Explorer
0 Kudos

Try to materialize/persist the remote table into HANA Cloud like-
Create table <tab_name> as selecr * from <Virtual_table>;
now you can use the group by clause in top of this newly created <tab_name>