I have a Log table with millions of rows. I'm thinking about separating the data into multiple tables (i.e. LoginHistory, ExceptionHistroy, PaymentProcessingHistory, etc.) What is the term used when taking a large table with many rows (not Columns) and creating multiple tables?
My current Log table schema resembles: LogID, LogMessage, LogReason, LoggedBy, LoggedOn, etc.
The problem is I'm putting too many things in one table, I think? Perhaps the table is too generic?
Thanks