I was wondering if there was a way to perform a make table query in Guidewire so that we can perform faster subsequent queries on it.
Our main goal is to improve performance on record retrieval, at the current state we're doing (kinda) as follows:
SELECT * WHERE x ='y'AND a='b'
for record of type 1
SELECT * WHERE x ='y'AND a='c'
for record of type 2
SELECT * WHERE x ='y'AND a='d'
for record of type 3
These queries are executed rather often, which results in a waste of time querying SQLServer for SELECT * WHERE x ='y'
on the whole table. But I haven't found a way to perform a table query (or anything that helps us) through the gw.api