Hi all
I have a process in an inherited db that rebuilds a table of about 200,000 records every week. The build bit runs fairly quickly (considering), but clearing the table out first is taking 20+ minutes. It currently uses a deleted query ("DELETE * from tblTable") which I thought would have been the fastest way of doing it, but can anybody recommend anything quicker?
I've looked at other solutions such as only adding new data, but it gets very messy. I know it's all horribly unnormalised and stuff but I'm stuck with it unfortunately.
Dave
I have a process in an inherited db that rebuilds a table of about 200,000 records every week. The build bit runs fairly quickly (considering), but clearing the table out first is taking 20+ minutes. It currently uses a deleted query ("DELETE * from tblTable") which I thought would have been the fastest way of doing it, but can anybody recommend anything quicker?
I've looked at other solutions such as only adding new data, but it gets very messy. I know it's all horribly unnormalised and stuff but I'm stuck with it unfortunately.
Dave
Last edited: