|
More site info...
|
|
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.
|
|
|
|
|
Posting activity on MySQL:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
32
|
112
|
333
|
|
Post:
|
111
|
323
|
912
|
|
|
MySQL Posting activity graph:
|
Top authors during last week:
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
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.
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?
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.
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...
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.
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,...]?
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::
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 ...
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...
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??
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 .
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 ...
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
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 ...
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
|
|
Hot threads for last week on 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,...
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...
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(...
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_...
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
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
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
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
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 ...
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 ...
|
|