Skip to main content
16-Pearl
October 4, 2023
Solved

this query executing for longer time. Any idea on simplifying this query?

  • October 4, 2023
  • 1 reply
  • 1362 views

While fetching data from sql db in thingworx , this query executing for morethan 80 seconds. Any idea on simplifying this query?

 

Query:

SELECT distinct a.cmp , a.engseq , a.it, null as COUNT

FROM ENGINEERING a 

WHERE a.MODEL like 'R24R%' 

AND a.cmp not in ( 

select cmp 

from ENGINEERING

where MODEL like 'R23R%' ) ;

Best answer by Velkumar

Hi @AP_10343008 

 

If you are going to display data in Mashup query only specific rows of data (using Limit Offset in Postgresql) and add pagination to Mashup.

 

Based on the Pagination number you can query the next set of rows from DB. This way you can decrease query time

 

More about Pagination Widget -  Pagination Widget (Themable) (ptc.com)

 

/VR

1 reply

19-Tanzanite
October 4, 2023

Hi @AP_10343008 

 

Could you please explain your use case?

 

Where exactly this query is used whether in Mashup or in business logic service 

 

/VR

16-Pearl
October 4, 2023

It is used in database connector thing to show output in mashup.

Velkumar19-TanzaniteAnswer
19-Tanzanite
October 5, 2023

Hi @AP_10343008 

 

If you are going to display data in Mashup query only specific rows of data (using Limit Offset in Postgresql) and add pagination to Mashup.

 

Based on the Pagination number you can query the next set of rows from DB. This way you can decrease query time

 

More about Pagination Widget -  Pagination Widget (Themable) (ptc.com)

 

/VR