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: 26 posts per thread
Forum activity: 20 active threads during last week
 

Posting activity on MySQL:

  Week Month 3 Months
Threads: 20 124 328
Post: 31 309 840
 

MySQL Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
healdem
6
user's latest post:
code help
Published (2009-11-30 17:30:00)
Nope you have merely ducked the issue PHP Code: if( $status == "IN" ) { header ( "location: phpinfo.php" ); exit(); }else { header ( "location: login-failed.php" ); exit(); }  PHP: if - Manual
01010011
3
user's latest post:
Enabling Network Connections?
Published (2009-11-30 11:43:00)
Hello, When trying to use mysqldump, I got this error message: Quote: mysqldump: Got error: 2003: Can't connect to MySQL server on 'localhost' (10061) when trying to connect According to the MySQL Documentation Library, error 2003 means that my network connection has been refused and that I should check that there is a MySQL server running, that it has network connections enabled, and that the network port specified is the one...
kingdavidbaker
3
user's latest post:
code help
Published (2009-11-30 16:48:00)
Solved my issue. Used the mysql_result($status, 0); command and it gives me the data I want. Thanks!
r937
3
user's latest post:
MySQL case sensitive?
Published (2009-12-01 00:09:00)
obviously the "set-it-and-forget-it" strategy (apologies to ron popeil) is simply to put all your identifiers into lower case
sql_er
2
user's latest post:
Stored Procedure Caching and...
Published (2009-11-26 14:20:00)
Hello, We are using MySQL 5.0.44. When I run a stored procedure first time, it might take over a second. If I immediately rerun it, it takes milliseconds. Each subsequent rerun is also super fast. Why is this happening? Is there some caching? I thought there is no stored procedure caching in mysql 5.0. The reason I'm asking is because I am trying to optimize a stored procedure 'A'. So I created a modified version 'B'....
biba028
2
user's latest post:
Slow queries.. Cant think of a...
Published (2009-12-01 00:00:00)
Yes, username is indexed. select count(*) was actually slower according to response time
warmmelody
1
user's latest post:
Error
Published (2009-11-27 08:56:00)
I just now tried to upload my portal in the linux server and after I uploaded everything including my data base and tried to see the home page I get the following error - Can you help me how to solve it. Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'bestjobs_user'@'localhost' (using password: YES) in /home/bestjobs/public_html/system_function_initialize.php on line 0 Warning: mysql_select_db():...
binumathew
1
user's latest post:
Need a Query Help
Published (2009-11-27 20:08:00)
I Developed 2 Table 1)FriendTable Code: CREATE TABLE `friendtable` ( `username` varchar(50) default NULL, `fusername` varchar(50) default NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 2)Msg Table Code: CREATE TABLE `msg` ( `msg` varchar(50) default NULL, `username` varchar(50) default NULL, `dt` date default NULL, `id` int(50) unsigned NOT NULL auto_increment, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 i need to...
mufarooqi
1
user's latest post:
Help regarding query optimization
Published (2009-11-26 14:20:00)
Hi All, I need help in optimization of my following query, which takes too much time to pull out all the data... I have build indexes on all columns which involve in 'joins'... any suggestion or idea to improve it...? select x.question_id as question_id, (select text from vw_questions where vw_questions.id = x.question_id) as question_text, sum(case when vans.nature = x.answer_nature then x.no_of_clicks else 0 end) as no_of_clicks ,...
sakis
1
user's latest post:
Lot of small queries or a Large 1
Published (2009-11-27 12:39:00)
Hi I am creating a searching api for an e-shop with a mysql db. I use these tables from the db 1)Products 1)Manufacturers_xref_prods 2)Prices_xref_prods 3)Attributes_xref_prods each of these has a "product_id" column. I need to retreive the common product_id's from the selected by the user Manufacturer,Price....etc I have 2 options to do that 1) Run small queries that refers on 1 table for each of the above tables...
 

Latest active threads on MySQL::

dBforums - Database Support Community
Started 6 days, 7 hours ago (2009-11-30 16:13:00)  by Theresonly1
anyone? been dweling on this problem for two weeks now
Thread:  Show this thread (7 posts)   Thread info: MySQL case sensitive? Size: 198 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: anyone?

been dweling on this problem for two weeks now :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 6 days ago (2009-12-01 00:06:00)  by r937
Quote: Originally Posted by Pat Phelan I vaguely remember that MySQL has a feature for doing group suppression. i've never seen anything in mysql that can do that (not suggesting i know it all, i learned years ago not to make that misteak)
Thread:  Show this thread (6 posts)   Thread info: Group supression Size: 842 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quote:

	Originally Posted by Pat Phelan I vaguely remember that MySQL has a feature for doing group suppression.

i've... :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 6 days, 18 hours ago (2009-11-30 05:37:00)  by mike_bike_kite
Try: Code: SELECT count(*) FROM video WHERE username = 'XXXXX'; Should be a little bit faster
Thread:  Show this thread (7 posts)   Thread info: Slow queries.. Cant think of a solution Size: 520 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Try:

Code:

SELECT count(*) FROM video WHERE username = 'XXXXX';

Should be a little bit faster :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 6 days, 8 hours ago (2009-11-30 15:26:00)  by healdem
Quote: Originally Posted by kingdavidbaker Dunno if this is a PHP or MySql issue. really I don't see much MySQL here.... check your if statement == is not the same as = if you are starting out developing PHP scripts then consider getting either a good qaulity PHP primer or get familiar with PHP tutorials ...
Thread:  Show this thread (6 posts)   Thread info: code help Size: 1,010 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quote:

	Originally Posted by kingdavidbaker Dunno if this is a PHP or MySql issue.

really
I don't see much... :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 4 days, 15 hours ago (2009-12-02 08:58:00)  by gvee
This sounds like an error in your PHP, not your database. Get any error messages?
Thread:  Show this thread (3 posts)   Thread info: Questions!!!questions!!!questions!!!! Size: 98 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: This sounds like an error in your PHP, not your database.

Get any error messages? :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 1 week ago (2009-11-29 07:31:00)  by healdem
what permissions have been GRANTed to MyUsername. you can review the permissions easily enough in MySQLAdministrator
Thread:  Show this thread (3 posts)   Thread info: Password? mysqldump? Size: 123 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: what permissions have been GRANTed to MyUsername.
you can review the permissions easily enough in MySQLAdministrator :: MySQL :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 1 week, 2 days ago (2009-11-27 16:57:00)  by sco08y
Quote: I am creating a searching api for an e-shop with a mysql db. Is this going to be an API used by many apps, or is it a purpose-built system? Quote: I need to retreive the common product_id's from the selected by the user Manufacturer,Price....etc Your first option looks very much like you're...
Thread:  Show this thread (3 posts)   Thread info: Lot of small queries or a Large 1 Size: 2,703 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quote:

	I am creating a searching api for an e-shop with a mysql db.

Is this going to be... :: MySQL :: dBforums - Database Support Community"
 

Hot threads for last week on MySQL::

MySQL
Started 6 days, 8 hours ago (2009-11-30 15:26:00)  by healdem
Quote: Originally Posted by kingdavidbaker Dunno if this is a PHP or MySql issue. really I don't see much MySQL here.... check your if statement == is not the same as = if you are starting out developing PHP scripts then consider getting either a good qaulity PHP primer or get familiar with PHP tutorials ...
Thread:  Show this thread (6 posts)   Thread info: code help Size: 1,010 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quote:

	Originally Posted by kingdavidbaker Dunno if this is a PHP or MySql issue.

really
I don't see much... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 6 days, 18 hours ago (2009-11-30 05:37:00)  by mike_bike_kite
Try: Code: SELECT count(*) FROM video WHERE username = 'XXXXX'; Should be a little bit faster
Thread:  Show this thread (7 posts)   Thread info: Slow queries.. Cant think of a solution Size: 520 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Try:

Code:

SELECT count(*) FROM video WHERE username = 'XXXXX';

Should be a little bit faster :: MySQL :: dBforums - Database Support Community"
MySQL
Started 6 days, 7 hours ago (2009-11-30 16:13:00)  by Theresonly1
anyone? been dweling on this problem for two weeks now
Thread:  Show this thread (7 posts)   Thread info: MySQL case sensitive? Size: 198 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: anyone?

been dweling on this problem for two weeks now :: MySQL :: dBforums - Database Support Community"
MySQL
Started 1 week ago (2009-11-29 07:31:00)  by healdem
what permissions have been GRANTed to MyUsername. you can review the permissions easily enough in MySQLAdministrator
Thread:  Show this thread (3 posts)   Thread info: Password? mysqldump? Size: 123 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: what permissions have been GRANTed to MyUsername.
you can review the permissions easily enough in MySQLAdministrator :: MySQL :: dBforums - Database Support Community"
MySQL
Started 6 days ago (2009-12-01 00:06:00)  by r937
Quote: Originally Posted by Pat Phelan I vaguely remember that MySQL has a feature for doing group suppression. i've never seen anything in mysql that can do that (not suggesting i know it all, i learned years ago not to make that misteak)
Thread:  Show this thread (6 posts)   Thread info: Group supression Size: 842 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quote:

	Originally Posted by Pat Phelan I vaguely remember that MySQL has a feature for doing group suppression.

i've... :: MySQL :: dBforums - Database Support Community"
MySQL
Started 4 days, 15 hours ago (2009-12-02 08:58:00)  by gvee
This sounds like an error in your PHP, not your database. Get any error messages?
Thread:  Show this thread (3 posts)   Thread info: Questions!!!questions!!!questions!!!! Size: 98 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: This sounds like an error in your PHP, not your database.

Get any error messages? :: MySQL :: dBforums - Database Support Community"