hello,
I encounter a problem when export a query result to a file using ICE:
select ... into outfile ‘a.txt’ from t1,t2 where t1.id=t2.id;
It run very slowly,but the following sql is fast:
select ... into outfile ‘a.txt’ from t1;
How I improve export performence?
Thank you.

