0
votes
2answers
149 views
mysql slave database problem
Currently we have 3 slave databases,
but almost always there is one of them extremly slow than others(can be an hour after master database)
Has any one met similar problem?What may …
0
votes
3answers
224 views
mysql union question
mysql> select job_desc_title from postings where id=194582;
+-----------------------------+
| job_desc_title |
+-----------------------------+
| Speech/ …
0
votes
3answers
131 views
strange problem with mysql stored function
It's just for test,
but pretty strange:
DELIMITER |
DROP FUNCTION IF EXISTS get_idiscussion_ask|
CREATE FUNCTION get_idiscussion_ask(iask_id INT UNSIGNED) RETURNS TEXT …
0
votes
4answers
389 views
Why does this MySQL function return null?
Description:
the query actually run have 4 results returned,as can be see from below,
what I did is just concate the items then return,
but unexpectedly,it's null.
I thi …
3
votes
9answers
676 views
Any way to select without causing locking in mysql?
query:
SELECT COUNT(online.account_id) cnt from online;
but online table is also modified by an event,
so frequently I can see lock by running show processlist
…
1
vote
2answers
285 views
How do you refresh the MySQL configuration file without restarting?
Apache has such a feature, what about MySQL?
Does one exist?
…
0
votes
2answers
80 views
how to compose this query in mysql?
It's similar to here,
say there is a table named topics,
another table named answers,
a third table named discussions,which restores discussions under a topic or answer。 …
0
votes
1answer
41 views
how to handle this All type select in subquery?
As can be seen below,the subquery part is "All" type,
but when written alone it's not "All"
How to handle this problem?
the total query:
mysql> explain select a.i …
0
votes
3answers
101 views
when will select statement without for update causing lock?
I'm using MySQL,
I sometimes saw a select statement whose status is 'locked' by running 'show processlist'
but after testing it on local,I can't reproduce the 'locked' status again. …
2
votes
4answers
961 views
how to customize `show processlist` in mysql?
I want to order by Time,but seems no way to do that ?
mysql> show processlist;
+--------+-------------+--------------------+------+---------+--------+---------------------------- …
0
votes
1answer
138 views
how to know what is exactly causing the lock in mysql?
Seems it has become the longest essay of history,sorry for that.But in fact most of them
are just evidence,will be quick to browse.
OK,start!
the postings tabl …
0
votes
1answer
121 views
what’s the equivalent version of MYISAM for show innodb status in mysql
by Show innodb status I can see information about deadlock and so on,
but I don't know is there an equivalent version for MYISAM-engine tables?
…
2
votes
2answers
201 views
how to set timezone of mysql?
on one server,when I run:
mysql> select now();
+---------------------+
| now() |
+---------------------+
| 2009-05-30 16:54:29 |
+---------------------+
1 row in s …
0
votes
5answers
211 views
mysql fake select
My purpose is: to get multiple rows from a value list,like (1,2,3,4,5),('a','b','c','anything') and so on.
mysql> select id from accounts where id in (1,2,3,4,5,6);
+----+
| id | …
0
votes
2answers
90 views
mysql performance comparison
Which is more efficient,and by how much?
type 1:
insert into table_name(column1,column2..) select column1,column2 ... from another_table where
columnX in (value_list)
…
