Answer by mangas for Database design to create tables on the fly
Or you can still create the Temporary tables but use a cronjob and create the Temporary tables every %% hours and rename it to the correct name after the query's are done. so your site is stil in the...
View ArticleAnswer by Chris Travers for Database design to create tables on the fly
I did something like this in LedgerSMB. While we use EAV modelling for a few things (where the flexibility is needed and the sort of querying we are doing is straight-forward, for example menu nodes...
View ArticleAnswer by Justin Cave for Database design to create tables on the fly
What you are describing is an entity-attribute-value model (EAV). It is a very poor way to design a data model.Although the data model is quite flexible, querying such a data model is quite...
View ArticleAnswer by Ben Burns for Database design to create tables on the fly
I'm not sure what the real problem you're having is, but the solution you proposed is the "database within a database" antipattern which makes so many people cringe.Depending on how you're querying...
View ArticleAnswer by Bogdan Rybak for Database design to create tables on the fly
Doing this with documents might be easier. Perhaps you should look at a noSQL solution such as mongoDB.
View ArticleDatabase design to create tables on the fly
I need to create dynamic tables in the database on the fly. For example, in the database I will have tables named:TableColumnDataTypeTextDataNumberDataDateTimedataBitDataHere I can add a table in the...
View Article