以下是引用xlin1033xl在2007-10-31 16:52:26的发言:
假设你要插入的表名是table_B,临死表名是table_Tmp(注意临时表的结构,要参考提取出来的数据和要插入的表的结构)
临时表建在你要插入的库中,假设从A到B库,则建在B中
执行如下操作
sql="insert into table_tmp(fempid,fintime,finname,fouttime,foutname,fmanual) (select fempid,fintime,finname,fouttime,foutname,fmanual from colliertrack_inout)"
connh.Execute sql
再执行如下操作
sql="insert into table_B(fempid,fintime,finname,fouttime,foutname,fmanual) (select fempid,fintime,finname,fouttime,foutname,fmanual from table_tmp)"
connh.Execute sql
在执行过程中会提示 对象名 '#person_swap_info' 无效. 问题能是出在哪了呢???