MySQL Forums
Forum List  »  Performance

Re: One big DB or two not-too-big DBs? FKs across DBs are slower?
Posted by: Daniel Liang
Date: April 21, 2008 06:51AM

Came across this not too long ago:
mysql> SELECT BENCHMARK(100000,myFunction('test'));
+-------------------------------------+
| BENCHMARK(100000,myFunction('test'))|
+-------------------------------------+
|                                   0 |
+-------------------------------------+
1 row in set (1.42 sec)
mysql> SELECT BENCHMARK(100000,database_2.myFunction('test'));
+-------------------------------------------------------------+
| BENCHMARK(100000,database_2.myFunction('test'))             |
+-------------------------------------------------------------+
|                                                           0 |
+-------------------------------------------------------------+
1 row in set (8.30 sec)


Functions in other database are slower than same functions within the "working" database.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: One big DB or two not-too-big DBs? FKs across DBs are slower?
2525
April 21, 2008 06:51AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.