My Customer want to create new table everyday, e.g. MyTable<yyyymmdd>
, and then my application will read this table and do some cross-check. After done all cross-check, I need to drop this table. Every day will be create and drop table.
Is it good solution? could be database will crash because of this?
please advice me.
- i already give another solution, which customer just insert the data into one table. After that, I'll delete all records once done. But customer refuse to use my solution.