【发布时间】:2011-09-06 08:25:20
【问题描述】:
我正在重写一个使用大量临时表的 Access 应用程序。这意味着数据被添加到表中,经过处理,用于其他表中的更新,然后数据被删除。我试图弄清楚何时将其移动到 SQL Server,如果使用类似的暂存/临时表或存储在本地内存中的表的过程是更好的做法。
有没有首选的方法?
编辑:
根据要求提供更多信息。目前的流程基本上是上午的流程。
Table1 data moves to Table2 (temp)
Table1 data is deleted
Table1 gets new data for the day
Table2 gets a few updates
Table2 is then used to update Table1
Table2 data is deleted.
正如我所说,当前进程在一个设计糟糕的 Access DB 中运行,因此我们正在为 SQL 服务器重新设计它。
【问题讨论】:
标签: ms-access sql-server-2005 temp-tables