table naming

I upload a file such as EX12345.txt and I want to save the file content into database.

The table name I want to call EX12345.(Don't create by myself)

Does it can work or have other good idea?

Thanks,

Do you mean you want to just save the random textual contents into a database? Why?

Or is this a CSV file or some other *structured* text that you want to save into tables, of some format you've already determined? Or will the schema be determined by the structure of the file, which you intend to parse?

Why do you want to name the table after the file, as opposed to something more meaningful? Or IS the name meaningful, in some way that isn't apparent to us?

If the name is meaningful and the data is structured, methinks it would probably make more sense to put similar files into the same table, with a meaningful table name, and with the filenames creating one or more additional columns.

-Dave