Any shortcut to get infotable length quickly
We fetched 5000 rows and 4 columns from sql db in 40seconds.
Then In Thingworx code, if i used InfoTable.length to find total number of rows in table is taking additional 20seconds.
Any other shortcut to get table length quickly.?
Query:
SELECT distinct a.cmp , a.engseq , a.it, null as totalrows
FROM ENGINEERING a
WHERE a.MODEL like 'R24R%'
AND a.cmp not in (
select cmp
from ENGINEERING
where MODEL like 'R23R%' ) ;


