Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
110 views

How does facebook store the friends of a user?

I am wondering how exactly the information that a user with id x is friends with users with ids z,y,w is stored in a very large scale app like facebook. I am thinking of several possibilities a) ...
2
votes
2answers
71 views

How to implement followers for users, as in twitter

I have a social network that I am making using php and mysql. I am trying to figure out how to make followers for each user. Should I create a table in mysql with a list of followers for each person, ...
2
votes
4answers
71 views

Editing a Database Entry

I'm creating a website with ASP.net that, if you are logged in as an admin, you can edit the current pages text (this way I don't have to update the website all the time just for small changes, I can ...
2
votes
4answers
280 views

Stupid Question: MSSQL Management Studio 2008 - Database Diagrams - Which way do the keys point?

Yeah silly question. Its been a long time since I have designed a DB as a Database Diagram but the higher ups want to see it. I have totally become confused because I am a coder, not a DBA. I have a ...
1
vote
2answers
136 views

Create new SQL table on form submit IF TABLE NOT EXIST

I am new to php and SQL so this is probably an easy question but I could not find any good sources online. I am trying to create a SQL table when someone submits a form and this is what I have so far ...
1
vote
1answer
179 views

MySQL - Structure for Permissions to Objects

What would be an ideal structure for users > permissions of objects. I've seen many related posts for general permissions, or what sections a user can access, which consists of a users, userGroups ...
1
vote
2answers
146 views

How to add 1 to the value of a column of an existing row in mysql

I have a table called pollData. It will always contain only 1 row. It has columns option1, option2, option3, option4, option5 each of type int. In the beginning, these columns have 0 as their value. ...
1
vote
3answers
138 views

MySQL field management

When I make a query, I often wonder about this: Is it better to add extra field(s) to the table, or just get the values and calculate in your server side language? For example, table ...
0
votes
1answer
13 views

Reading data from one table and using it to read data from another table

I'am trying to implement a small questionaire type of database in SQL Server 2008. The questions are multiple choice questions offerring four choices for each question. The questions reside in a ...
0
votes
1answer
57 views

How Do I create a trigger on a table that insert into another database

I have two mySQL db's on called home and the other called zenphoto_live. I want to create a trigger on zephoto_live.zp_images that inserts a record into home.tbl_new_image_inserts when ever a ...
0
votes
5answers
245 views

Have more than one AutoIncrement Per Table

Hey Everybody, I'm trying to make a table that will have a bunch of ids referring to a user, and for each user there will be multiple posts that should also have their own ids. My question is how do I ...
0
votes
2answers
178 views

How to select multiple rows from a column/table in mysql?

I'm using the following code: $con = mysql_connect("NOTGIVEN","NOTGIVEN","NOTGIVEN"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("user_live", $con); $result = ...
0
votes
2answers
130 views

php preg_mach a mysql db name

Someone please give me a preg for this $tbl = '`db_name`.`tbl_name`'; if(preg_match('????',$tbl)){ echo 'ye'; }else{ echo 'no'; } I need the ???? of preg_match, just so: starts with ` ...
0
votes
1answer
326 views

MYSQL - Splitting a very large Table - Advice Please

I have a InnoDB table that has about 17 normalized columns with ~6 million records. The size of the table is ~15GB. The queries from the table is starting to take too long and sometimes timeout/crash. ...
0
votes
2answers
245 views

How to dump mysql table structure without data with a SQL query?

I need to export a mysql table, but it has like 5gb of entries, so I only want the structure. I am trying to do it from a simple php doing a sql query, how can I do that?
0
votes
2answers
284 views

Mysql DB Table Rows Disappearing

A really weird (for me) problem is occurring lately. In an application that accepts user submitted data the following occurs at random: Rows from the Database Table where the user submitted data is ...
-1
votes
1answer
22 views

Custom wordpress SQL statement for a website

I'm trying to link specific columns from a few standard tables in a wordpress database. I specifically want to see a view/table that includes: post title post content guid meta value = image url ...