I am making printer queries via SNMP and trying to store them in a database. The database has a table for each printer. Each table for each printer stores
+------+-------------+------------+---------------+-----------------+-------------+
| id | toner_level | pages_left | total_printed | fuser_countdown | fuser_total |
+------+-------------+------------+---------------+-----------------+-------------+
| 7088 | 26 | 7216 | 164954 | 60105 | 225000 |
| 7089 | 26 | 7216 | 164954 | 60105 | 225000 |
| 7090 | 26 | 7216 | 164954 | 60105 | 225000 |
Now, someone told me it would be better if I stored each of these things in separate tables? And that I am storing to much in one table? Can anyone guide me here as I am not a database programmer.
Thanks
+------+-------------+------------+---------------+-----------------+-------------+
| id | toner_level | pages_left | total_printed | fuser_countdown | fuser_total |
+------+-------------+------------+---------------+-----------------+-------------+
| 7088 | 26 | 7216 | 164954 | 60105 | 225000 |
| 7089 | 26 | 7216 | 164954 | 60105 | 225000 |
| 7090 | 26 | 7216 | 164954 | 60105 | 225000 |
Now, someone told me it would be better if I stored each of these things in separate tables? And that I am storing to much in one table? Can anyone guide me here as I am not a database programmer.
Thanks