Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,我们有使用 oracle DB 的 C#.Net 控制台应用程序。
首先,应用程序从许多表中检索数据并插入到 C# List 对象中。
之后,列表中的数据将被插入到一个表(例如,tableA)中,但表A中的数据已经很旧,不再使用了。所以,我们必须在插入之前删除整个表。 每次出现新数据时,我们都必须这样做“删除整个表并插入新数据过程” 。有什么方法可以改善应用程序性能的结构吗?谢谢你。
可能的改进: