Hi,
I have a very large database which I would like to cut down the query time by:
1st Creating a table by ExecuteMemoryTable
Dim table1 As List
table1 = DBUtils.ExecuteMemoryTable(SQL1,"SELECT * FROM tablename where name ='john'",Null,0)
then
Dim M as Map
m = DBUtils.ExecuteMap(SQL1,"SELECT col FROM table1",Null)
I tried the above but it didn't work. Can it be done? Because I've many "m" to query.
Thanks for your help.
I have a very large database which I would like to cut down the query time by:
1st Creating a table by ExecuteMemoryTable
Dim table1 As List
table1 = DBUtils.ExecuteMemoryTable(SQL1,"SELECT * FROM tablename where name ='john'",Null,0)
then
Dim M as Map
m = DBUtils.ExecuteMap(SQL1,"SELECT col FROM table1",Null)
I tried the above but it didn't work. Can it be done? Because I've many "m" to query.
Thanks for your help.