Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
10answers
315 views

Best table design for application configuration or application option settings?

I need to store a series of configuration values in a database. A couple ways I thought of to store them are: a table with 2 colums(name,value) and a row for each pair, or a table with a column for ...
5
votes
4answers
152 views

In SQL / MySQL, are there reasons not to put one-to-one relationship in the same table?

One-to-one relationship could usually be stored in the same table. Are there reasons not to store them in the same table?
4
votes
2answers
250 views

“Follow user” database table design

I'm trying to determine the best table design for a "follow/unfollow user" feature, similar to Twitter (edit: I'm not making a Twitter-like application.) Below is my the current table design and php ...
4
votes
4answers
4k views

Difference between clustered and nonclustered index

Ok, I'm in the middle of developing a project on my own (first time for me for this scale) and it started in a rush so my tables are kind of miserable. I need to add proper index' and need some help. ...
3
votes
6answers
130 views

Single mysql table for private messaging

I'm trying to create a single table for private messaging on a website. I created the following table which I think is efficient but I would really appreciate some feedback. CREATE TABLE IF NOT ...
3
votes
5answers
280 views

“There can only be one IDENTITY column per table” - Why?

"There can only be one IDENTITY column per table" Why is it so? Take a scenario of a vehicle, there exists a chasis number which is unique as well as the registration number which turns out to be ...
3
votes
9answers
190 views

Database design question. BIT column for deletions

Part of my table design is to include a IsDeleted BIT column that is set to 1 whenever a user deletes a record. Therefore all SELECTS are inevitable accompanied by a WHERE IsDeleted = 0 condition. I ...
2
votes
1answer
72 views

Alternative solution for comma separated values when the column count is unknown | MySQL

I have a requirement to design a table which almost looks like a 3 dimensional requirement. For example, There are "infinite" varieties of Dinosaurs. All the Dinosaurs will have some common set ...
2
votes
3answers
68 views

Combine two tables or keep them separate?

Structure TableA (each row in TableA can map to one or more row in circle) Id Name TableB (each row in TableB can map to only one row in TableA) Id TableAId UniqueValue Example ...
2
votes
2answers
84 views

Design question on storing meteorological data on SQL Server 2008

We're using SQL Server 2008 R2 Enterprise Edition. We are measuring meteorological data from what we call MetMasts. Basically this is a mast with lots of equipment; anemometers (for wind speed) at ...
2
votes
4answers
128 views

SQL Table Design Question

I am considering two options for table design and I'm not sure what the pros and cons are for each. Here is a somewhat abstracted description of my situation: I am keeping track of a number of data ...
2
votes
6answers
489 views

How to design the user table for an online dating site?

I'm working on the next version of a local online dating site, PHP & MySQL based and I want to do things right. The user table is quite massive and is expected to grow even more with the new ...
2
votes
6answers
138 views

Database Design Question

I am designing a database for a project. I have a table that has 10 columns, most of them are used whenever the table is accessed, and I need to add 3 more columns; View Count Thumbs Up (count) ...
1
vote
2answers
93 views

MySQL Database Design Question, one to one,many to many, many to one, or too many?

I am in the process of setting up tables in my database for my first project. (Exciting!) I am having a hard time deciding what types of relationships I need to set up. I have the following basic ...
1
vote
1answer
47 views

Setting the right MYSQL table options

I have a database table for user profiles. It's comprised of a primary key, user id, full name, email, location, and about me. I'm having difficulty determining the correct options for this type of ...
1
vote
3answers
276 views

SQL Server Performance with a large table

I'm looking for some advice for a table structure in sql. Basically I will have a table with about 30 columns of strings, ints and decimals. A service will be writing to this table about 500 times a ...
1
vote
2answers
49 views

mysql: design practices

I have tables setup as such: A message is sent out to a group of users. This message is put in the parent_message table This table contains id | sender_id | date each message that is sent in that ...
1
vote
7answers
89 views

redundant column

I have a database that has two tables, these tables look like this codes id | code | member_id 1 | 123 | 2 2 | 234 | 1 3 | 345 | 4 | 456 | 3 members id | code_id | other info 1 | 2 ...
1
vote
5answers
175 views

Help with database design

Hey im new to database design and having trouble trying to figure this one out. I have two tables Team and Fixtures. Team has rows of football teams and Fixture has 2 of those football teams in each ...
1
vote
1answer
61 views

How should I design my MYSQL table/s?

I built a really basic php/mysql site for an architect that uses one 'projects' table. The website showcases various projects that he has worked on. Each project contained one piece of text and one ...
1
vote
1answer
90 views

In database table design, how does “Virtual Goods” affect table design — should we create an instance of a virtual good?

When we design a database table for a DVD rental company, we actually have a movie, which is an abstract idea, and a physical DVD, so for each rental, we have a many-to-many table with fields such as: ...
0
votes
1answer
28 views

Index length for city name field

I have a table with about 1000 cities. Sometimes, I need to search by city name and have therefore decided to make it an index. What would be the best practice to decide on the index length? 6 seems ...
0
votes
0answers
45 views

Crossword design with fix size

A friend of mine gives me the complete crossword of dimension of 8x8. The crosswords are with black boxes within with suggesting words. I have this table: CREATE TABLE IF NOT EXISTS `tbl_words` ( ...
0
votes
1answer
92 views

Display Bit (YesNo) Data Type as Checkbox in Access Table

While googling how to convert a BIT (YESNO) column in an access database to a checkbox programmatically, a possible solution I found was to copy an existing database's structure by using DoCmd. I have ...
0
votes
1answer
43 views

Database Design - Items and Regions

I have design problem of database structure. The goal is to have database for offers that our clients offer per some geographical region. Each offer can be offered in many regions. The regions are ...
0
votes
2answers
37 views

table-design for addbuddy module

I'm rebuilding an add-buddy module and I have a question about the database table design. In the current version i have a design like this: id | user1_id | user2_id | status Each time an user ...
0
votes
2answers
33 views

How should I setup my table for image uploading for users?

I want to create an image upload for users to upload a profile picture and be able to resize it. However, I was wondering how should I do the database table. I think I should have a field for user id, ...
0
votes
3answers
35 views

Designing a client data table?

What is the most important data I should gather from a client for a basic e-commerce site ? These are some of the data that comes to mind mind separated by sections (this is not a table design just ...
0
votes
4answers
57 views

SQL table structure

I am starting a new project that will handle surveys and reviews. At this point I am trying to figure out what would be the best sql table structure to store and handle such information. Basically, ...
0
votes
2answers
239 views

MS Access Copy Table Structure Only

I have a number of Linked (ODBC) tables in my MSAccess DB. I what I want to do is create a copy of each table (preferably the Structure Only). ive tried, DoCmd.CopyObject , "NewTableName", acTable, ...
0
votes
2answers
41 views

Join query explained

I have the following join query for returning users to which a user subscribed. The users table consists of a user's data, and subscriptions table holds a user_id and and the id of the user she/he is ...
0
votes
1answer
72 views

Capture mysql database error and use it in php

I created the following table for user to user subscriptions. CREATE TABLE IF NOT EXISTS `subscriptions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `subscribed_to` ...
0
votes
1answer
47 views

SQL table design with contigent constraints

I have a table design problem for which I need a cunning solution. Let's say I have two tables, with relationship: Contract 1---N Payment Now, let's say I have legacy data that needs to go into ...
0
votes
3answers
124 views

Can a Primary Key be a Non Clusterd Index on a Clustered Table?

I am designing a Members Table to store the users of a website. It will be used every time a user logs on to the website and occasionally accessed to update user details. The users will log on with ...
0
votes
1answer
68 views

How should I setup a table in a database to keep the history of records?

I'm trying to setup a SQL server database for an ASP.NET MVC site that will both store the latest information as well as a history of all the changes to the data. The information for my site comes ...
0
votes
2answers
1k views

How to show description of column in sql server 2008 table designer? [closed]

Possible Duplicate: SQL Server: Extract Table Meta-Data (description, fields and their data types) Dear Professionals, Is there any way to show the description, I've already entered in ...
0
votes
1answer
60 views

How should a table with two sets of almost duplicate column names be designed?

I have a table that has around 40 columns. The only difference in the columns names is that the last 20 all start with "B" before the column name. This table is used for comparing. In other words, ...
0
votes
2answers
59 views

Is this a correct schema design for what I need to accomplish?

Pawnshop business model: CLIENTES (customer table), LOTES (lot table), ARTICULOS (item table) and TRANSACCIONES (transaction table). The reason I defined a lot table is because when customers pawn ...
0
votes
2answers
140 views

In RDBMS, is there a formal design principle for Concrete objects, such as Course vs CourseSession?

In designing RDBMS schema, I wonder if there is formal principle of concrete objects: for example, if it is Persons table, then each record is very concrete and unique. Each record in fact represents ...
0
votes
3answers
238 views

Track user's country in PHP & MySQL

I'm creating a URL Shortening website. I want to allow users to view the stats for the links. I planned to do Country stats. I think I should use a library similar to GeoIP for PHP to get the country, ...
-1
votes
1answer
62 views

HTML Table Design [closed]

I am new to php and i have created a few php websites which includes the use of tables. when i grab data from my database, it is shown on a table. I am getting really bored of seeing the data being ...