Which is faster for millions of records: Permanent Table or Temp Tables?
I have to use it only for 15 million records. After processing is complete, we delete t
I personally would use a permanent table and truncate it before each use. In my experience it is easier to understand/maintain. However, my best advice to you is to try both and see which one performs better.