Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

MySQL | Forum profile

Forum profile page for MySQL on http://www.dbforums.com. This report page is the aggregated overview from a single forum: MySQL, located on the Message Board at http://www.dbforums.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "MySQL" on the Message Board at http://www.dbforums.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: dBforums - Database Support Community - MySQL (site profile, domain info dbforums.com)
Title: MySQL
Url: http://www.dbforums.com/mysql/
Users activity: 27 posts per thread
Forum activity: 32 active threads during last week
 

Posting activity on MySQL:

  Week Month 3 Months
Threads: 32 112 333
Post: 111 323 912
 

MySQL Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
r937
22
user's latest post:
Query Help
Published (2009-11-13 20:17:00)
Code: SELECT c.name , c.address , a.version FROM clients c LEFT OUTER JOIN app_Info a ON a.uid = c.uid ORDER BY a.version all the NULL versions will be grouped together
ameyer
18
user's latest post:
Database Desing -- Help Needed!
Published (2009-11-12 13:37:00)
Only many to many if more than one person can have that car. If so, you should do a table for cars, and one for cars_connect that links to the users.. Also, keep in mind, some web forums have over 60 tables. So having 15 or so is not a lot.
Frico
8
user's latest post:
Database Desing -- Help Needed!
Published (2009-11-12 13:35:00)
Okay thanx, I will take a look at some books And for the tblCars, the relation between fidCars and IDCars. I think it is not right because you don't have many members for only one car:P It is a one-to-many relation. Doesn't that needs to be many-to-many?
mike_bike_kite
6
user's latest post:
db redesign - too many tables
Published (2009-11-13 12:56:00)
Quote: Originally Posted by dchoe 100,000 tables in a database
leosurf91
5
user's latest post:
Database Design For Forum
Published (2009-11-12 04:08:00)
Saw a typo...forumid under posts should be threadid.
leosurf91 leosurf91 is offline...
5
user's latest post:
Database Design For Forum
Published (2009-11-12 04:08:00)
Saw a typo...forumid under posts should be threadid.
healdem
4
user's latest post:
mySQL Query Probleme
Published (2009-11-11 09:52:00)
so what is the actual SQL you are sending to the SQL engine not the script but the SQL executed PHP Code: $strSQL  =  "SELECT * FROM bans WHERE $nip >= first AND $nip <= last" ; $res  =  mysql_query ( $strSQL )   //or die(mysql_error()); //for now...
kierheyl
3
user's latest post:
Auto Incrementing Blank Rows
Published (2009-11-05 10:58:00)
After fighting with this for the last two days I've determined my firebug extension to fire fox was causing the form to double post, once with blank data. Apparently this is a firebug bug. I post this here in case anyone else has had similar problems where something seems to be inserting twice, or blank rows, or not at all. Disable your firebug and try again.
lse123
3
user's latest post:
MySQL:Is any error with this query
Published (2009-11-09 07:03:00)
I guess $CanceledCustomersTable can NOT have an AUTOINCREAMENT FIELD? in an AUTOINCREAMENT FIELD of a new table, how I may start count from 10000 [10001, 10002,...]?
kool_samule
3
user's latest post:
Alias Question
Published (2009-11-12 12:34:00)
I think my brain has fried looking at code for too long . . . I knew that! . . .well simple. . . .. thanks man, and sorry for the trouble!
 

Latest active threads on MySQL::

dBforums - Database Support Community
Started 14 hours, 53 minutes ago (2009-11-14 22:16:00)  by r937
Quote: Originally Posted by oorin This table was designed to allow a web site administrator a high level of configuration for collecting data. while at the same time no consideration for how hard it would be to extract meaningful information do a search for EAV (entity-attribute-value) you will find a ...
Thread:  Show this thread (3 posts)   Thread info: Help collating multiple records from multiple tables into a single record Size: 1,208 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quote:

	Originally Posted by oorin This table was designed to allow a web site administrator a high level of... :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 1 day, 5 hours ago (2009-11-14 07:19:00)  by r937
Code: SELECT ticket_updates.* FROM tickets INNER JOIN ( SELECT TicketId , MAX(DateUpdated) AS LastUpdated FROM ticket_updates GROUP BY TicketId ) AS m ON m.TicketId = tickets.TicketId INNER JOIN ticket_updates ON ticket_updates.TicketId = tickets.TicketId AND ticket_updates.DateUpdated = m.LastUpdated WHERE...
Thread:  Show this thread (3 posts)   Thread info: MAX() in WHERE clause Size: 820 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Code:

SELECT ticket_updates.*
  FROM tickets
INNER
  JOIN ( SELECT TicketId
              , MAX(DateUpdated) AS LastUpdated 
           FROM ticket_updates 
         GROUP 
             BY TicketId... :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 2 weeks, 6 days ago (2009-10-25 17:20:00)  by Frunkie
I originally thought that it would be best if I could get all headers with the corresponding links on a single line but I'm starting to think that isn't such a good idea anymore. Maybe a different design? Maybe EAV??
Thread:  Show this thread (15 posts)   Thread info: How to make a single row from many. Size: 347 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: I originally thought that it would be best if I could get all headers with
the corresponding links on... :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 1 month, 3 weeks ago (2009-09-21 01:23:00)  by mnirwan
One way you can do this is to start logging slow queries. Check out MySQL Query Log . Once you got the list of slow queries, then you can start improving it. Another option is to use some kind of caching like Memcache .
Thread:  Show this thread (3 posts)   Thread info: Very slow mysql on bigger traffic Size: 387 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: One way you can do this is to start logging slow queries. Check out MySQL
Query Log. Once you... :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 8 months, 2 weeks ago (2009-03-01 04:52:00)  by ayzaina
Dear All, I have installed MySql Server5.0.42 on windows xp sp3. I know how to create database, tables and inserting rows through Mysql Command line only. I have created a database named 'search' having 3 tables. I tried to make backup using following command mysql> mysqldump -u root -p search > backupsearch.sql where i am getting Error 1064 you have an error in your SQL ...
Thread:  Show this thread (9 posts)   Thread info: How to backup and restore MySql database Size: 705 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "How to backup and restore MySql database :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 2 days ago (2009-11-13 12:38:00)  by sunfire sunfire is offline Registered User
Hello, I'm not sure what function I'm looking for but what I'm wanting to do is group all of the a.version by NULL vs Not NULL no matter what the version value is. What do I need to do? select c.name, c.address, a.version From clients c Left Join app_Info a ON c.uid = a.uid
Thread:  Show this thread (6 posts)   Thread info: Query Help Size: 333 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Query Help :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 2 days, 1 hour ago (2009-11-13 12:02:00)  by dav1mo
that is not something any of us can answer from the info you provided. What are all these tables for? What is the relationship between them? Have you read any books on database design? Thought about hiring someone to do your design work? 100,000 tables seems a bit extreme. I have worked on numerous large scale applications and They average 200 - 600 tables for an app. Rows ranging from 1 in a ...
Thread:  Show this thread (5 posts)   Thread info: db redesign - too many tables Size: 450 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: that is not something any of us can answer from the info you provided. What
are all these tables... :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 2 days, 23 hours ago (2009-11-12 13:12:00)  by r937
i prefer SIUD to CRUD, because there is a SELECT statement but there is no RETRIEVE statement also, CREATE refers to actually creating tables, while INSERT creates the data in tables other operations include ALTER, DROP, GRANT, and more
Thread:  Show this thread (5 posts)   Thread info: What are the other Database operations apart from CRUD? Size: 270 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: i prefer SIUD to CRUD, because there is a SELECT statement but there is no
RETRIEVE statement

also, CREATE... :: MySQL :: dBforums - Database Support Community"
 

Hot threads for last week on MySQL::

MySQL
Started 4 days, 8 hours ago (2009-11-11 04:26:00)  by r937
Code: SELECT article FROM articles WHERE article_id IN ( SELECT tagConnect_article FROM tagConnect WHERE tagConnect_tag IN ( 1,3,5,7 ) GROUP BY tagConnect_article HAVING COUNT(*) = 4 ) note that your tagConnect_id column is useless -- the tagConnect table should have a compound PK consisting of (tagConnect_article,...
Thread:  Show this thread (15 posts)   Thread info: need to select articles that share common tags & vise versa Size: 687 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Code:

SELECT article
  FROM articles
 WHERE article_id IN
       ( SELECT tagConnect_article
           FROM tagConnect
          WHERE tagConnect_tag IN ( 1,3,5,7 )... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 4 days, 12 hours ago (2009-11-11 00:48:00)  by ameyer
First thing I would do is read on database normalization. That will help with number 1. #2. You will be fine. Forums with hundreds of thousands of messages work perfectly fine on mysql. Holding the information will not slow the server at all. The queries could slow if not properly indexed, but the information is only accessed as needed, so this is not an issue. #3 the data will technically...
Thread:  Show this thread (15 posts)   Thread info: Database Desing -- Help Needed! Size: 516 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: First thing I would do is read on database normalization. That will help
with number 1.

#2. You will... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 3 days, 10 hours ago (2009-11-12 02:52:00)  by leosurf91 leosurf91 is offline Registered User
Here's a design I was thinking for a forum I'm making right now. Do you think this design will work efficiently. Should I create more posts tables to allow faster querying, or is one fine? Forums: id(int)(primary), name(varchar)(unique), createdeleteboard (int-refers to some security table issuing moderator officer status etc.) Boards: id(int)(primary), forumid(int)(index), name(...
Thread:  Show this thread (14 posts)   Thread info: Database Design For Forum Size: 967 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Database Design For Forum :: MySQL :: dBforums - Database Support Community"
MySQL
Started 1 week, 1 day ago (2009-11-06 20:35:00)  by r937
Quote: Originally Posted by lse123 Is any error with this query yes, is any error first, remove the parentheses around the SELECT second, replace the dreaded, evil "select star" (SELECT * ) with a list of all the columns except the auto_increment then add the list of all columns except the auto_...
Thread:  Show this thread (9 posts)   Thread info: MySQL:Is any error with this query Size: 1,117 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quote:

	Originally Posted by lse123 Is any error with this query

yes, is any error

first, remove the parentheses... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 5 days ago (2009-11-10 12:55:00)  by mike_bike_kite
Not really sure what you're asking but do you mean this: Code: select 'y' as job1, 'Complete' as job2; or do you mean translating the value 'y' to become 'Complete'? Can you give a clearer example? Mike
Thread:  Show this thread (7 posts)   Thread info: Alias Question Size: 521 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Not really sure what you're asking but do you mean this:
Code:

select 'y' as job1, 'Complete' as job2;... :: MySQL :: dBforums - Database Support Community"
MySQL
RE: Query Help - 6 new posts
Started 2 days ago (2009-11-13 12:38:00)  by sunfire sunfire is offline Registered User
Hello, I'm not sure what function I'm looking for but what I'm wanting to do is group all of the a.version by NULL vs Not NULL no matter what the version value is. What do I need to do? select c.name, c.address, a.version From clients c Left Join app_Info a ON c.uid = a.uid
Thread:  Show this thread (6 posts)   Thread info: Query Help Size: 333 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Query Help :: MySQL :: dBforums - Database Support Community"
MySQL
Started 4 days, 5 hours ago (2009-11-11 07:38:00)  by healdem
so what is the actual message what is the actual SQL that is being sent to the SQL engine you might want to try the "between" syntax
Thread:  Show this thread (5 posts)   Thread info: mySQL Query Probleme Size: 164 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: so what is the actual message
what is the actual SQL that is being sent to the SQL engine... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 2 days, 23 hours ago (2009-11-12 13:12:00)  by r937
i prefer SIUD to CRUD, because there is a SELECT statement but there is no RETRIEVE statement also, CREATE refers to actually creating tables, while INSERT creates the data in tables other operations include ALTER, DROP, GRANT, and more
Thread:  Show this thread (5 posts)   Thread info: What are the other Database operations apart from CRUD? Size: 270 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: i prefer SIUD to CRUD, because there is a SELECT statement but there is no
RETRIEVE statement

also, CREATE... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 2 days, 1 hour ago (2009-11-13 12:02:00)  by dav1mo
that is not something any of us can answer from the info you provided. What are all these tables for? What is the relationship between them? Have you read any books on database design? Thought about hiring someone to do your design work? 100,000 tables seems a bit extreme. I have worked on numerous large scale applications and They average 200 - 600 tables for an app. Rows ranging from 1 in a ...
Thread:  Show this thread (5 posts)   Thread info: db redesign - too many tables Size: 450 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: that is not something any of us can answer from the info you provided. What
are all these tables... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 8 months, 2 weeks ago (2009-03-01 04:52:00)  by ayzaina
Dear All, I have installed MySql Server5.0.42 on windows xp sp3. I know how to create database, tables and inserting rows through Mysql Command line only. I have created a database named 'search' having 3 tables. I tried to make backup using following command mysql> mysqldump -u root -p search > backupsearch.sql where i am getting Error 1064 you have an error in your SQL ...
Thread:  Show this thread (9 posts)   Thread info: How to backup and restore MySql database Size: 705 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "How to backup and restore MySql database :: MySQL :: dBforums - Database Support Community"