5
votes
9answers
383 views
Use item specific prefixes and autonumber for primary keys?
We had a meeting this morning about how would should store our ID for some assets that we have in our database that we are making, the descusion generated a bit of heat so I decided to consult the …
0
votes
2answers
8 views
Table structure: some “columns” to be saved as a single text-type field with json structure, alternative: separate table but concerned with performance
Here the deal: I've got a table Billing, which is basically a receipt (for different types of transaction). The app has a feature that you can create new charges (well, all charges except for tax and …
0
votes
2answers
38 views
How to organize a PHP blog
So, currently I'm organizing my blog based on filename: To create a post I enter the name of the file. As opposed to storing the post in the database, I store them in PHP files. So each time I create …
6
votes
6answers
88 views
Reading only new rows from a log-like table in a database
We have the sitation that several servers are inserting chunks of rows into a table in a relational database, and one server reads the new data once in a while from the table. (The table is …
0
votes
6answers
83 views
Are bad data issues that common?
I've worked for clients that had a large number of distinct, small to mid-sized projects, each interacting with each other via properly defined interfaces to share data, but not reading and writing to …
7
votes
4answers
462 views
What’s The Best Practice In Designing A Cassandra Data Model?
And what are the pitfalls to avoid? Are there any deal breaks for you? E.g., I've heard that exporting/importing the Cassandra data is very difficult, making me wonder if that's going to hinder …
0
votes
4answers
289 views
SQL Server Dynamic Columns Problem
I use a table GadgetData to store the properties of gadgets in my application. There gadgets are basically sort of custom control which have 80% of the properties common like height, width, color, …
1
vote
4answers
59 views
Should I split the data between multiple databases or keep them in a single one?
Hi,
I'm creating a multi-user/company web application in php & mysql. I'm interested to know what the best practice is with regards to structuring my database(s).
There will be hundreds of …
0
votes
2answers
34 views
Django - Designing Model Relationships - Admin interface and Inline
heya,
I think my understanding of Django's FK and admin is a bit faulty, so I'd value any input on how to model the below case.
Firstly, we have generic Address objects. Then, we have User's, who …
0
votes
3answers
63 views
What is the best database design application for MySQL? [closed]
What is the best database design application for MySQL?
1
vote
8answers
80 views
Table with unknown number of columns
We're in the process of designing a tiny database that will contain data regarding our software's usage.
So in our programs/websites we will call a little service that logs some data regarding the …
2
votes
1answer
39 views
strategy to filter data according to user access level
we currently have a very simple security schema...
we have resources, that roughly maps to tables, we have access to that resources (add, modify, delete, query) and we have groups.
each permission …
0
votes
3answers
42 views
Can I accomplish this with multiple concrete supertables?
I have two tables, "contents" and "profiles" that can be commented on and rated. I have looked at using polymorphic associations and have decided against it. If I were to use polymorphic …
11
votes
21answers
444 views
What should I name a table that maps two tables together?
Let's say I have two tables:
Table: Color
Columns: Id, ColorName, ColorCode
Table: Shape
Columns: Id, ShapeName, VertexList
What should I call the table that maps color to shape?
Table: ???
…
0
votes
8answers
92 views
How should I design this table?
Hi,
Because I have a poor memory, I want to write a simple application to store table column information, especially the meaning of table columns. Now I have a problem with my table design. I plan to …
