Tagged Questions
0
votes
1answer
54 views
1k entries query with multiple JOIN's takes up to 10 seconds
Here's a simplified version of the structure (left out some regular varchar cols):
CREATE TABLE `car` (
`reg_plate` varchar(16) NOT NULL default '',
`type` text NOT NULL,
`client` int(11) default ...
0
votes
2answers
75 views
This transitive_closure query takes 20 seconds to complete! Why?
This query was working perfectly fine and fast to complete when I almost have 500 rows in Member_Contact_Edges table. But now, I have nearly 1.000 rows in this table and this query takes 20-30 seconds ...
0
votes
1answer
507 views
Qt SQLite SELECT queries are very slow on Symbian
I'm writing an application with Qt for Symbian and I'm using lots of little SQLite queries to fetch data from the database I've created.
The problem is that some of the queries take over a second to ...
4
votes
1answer
1k views
sql like query slow if using declare parameter but fast if not
SQL 2008:
This is slow (takes 1 1/2 minutes):
declare @p1 varchar(50)
set @p1 = '976j%'
select * from invsearch_query where comparepnfwd like @p1
This takes less than a second:
select * from ...
0
votes
0answers
247 views
Slow query log not logging queries from all databases
I have a dedicated server on which I have created 2 databases in MySQL (there are other databases too like for mail, cpanel e.t.c.)
One database is for live site while other is for development site. ...
1
vote
2answers
2k views
Why is postgresql update query so slow sometimes, even with index
i have a simple update query (foo column type is BOOLEAN (default false)):
update tablename set foo = true where id = 234;
which "id" is set to (primary) key, and if i run "explain analyze" i got:
...