Quantcast
Channel: Database design to create tables on the fly - Stack Overflow
Browsing all 6 articles
Browse latest View live

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 Article



Answer 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 Article

Answer 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 Article

Answer 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 Article

Answer 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 Article


Database 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
Browsing all 6 articles
Browse latest View live




Latest Images