我从一个视图tmpDetail_view中导出数据到tmpdetail表中,但是我只能往tmpdetail表中导入一次数据,如果我重新选择了时间导入的话系统就会报错Project Pyhn.exe raised exception class EOleException with message '超时已过期'。 Process stopped. Use Step or Run to continue.
而且一次导入的数据也不能太大,不然系统也会报如上错误.
我的语句如下,请高手看一下啊insert into tmpDetail (收费编号,对应Id , 类型 ,项目名称 , 产地 , 规格, 单位,单价,数量,统计分类)  
select ch_id , pa_id , inp_class , med_nname, MFT_NAME,med_spec ,routine_unit ,price ,   number , ''
from tmpDetail_view 
where ch_id in (select ch_id from painsettlesheet where  cy_date>=:start_date and cy_date<=:end_date 
     and cy_date<>'') and ch_id not in (select 收费编号 from tmpDetail)
Project Pyhn.exe raised exception class EOleException with message '超时已过期'。 Process stopped. Use Step or Run to continue.