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.
我有一个历史表(父表),它有 1000 万行。我需要将 6 个月前的数据移动到另一个数据库(备份表)并从父历史表中删除这些数据。我应该使用哪种方法?
方法一 1.将Parent表中的所有数据插入到BackUp表中 2.截断父表 3.将Backup表中的数据插入到父表中不少于6个月的数据
方法二
为什么不使用分区?如果数据是按月份分区的,你可以简单地擦除整个分区吗?这只是一个想法。我不知道分区对日志记录的影响!