-1
votes
1answer
63 views

Performance of PHP file_exists() vs. htaccess -f condition

I want to redirect to static html-files if they exist in a subdirectory. I'm wondering if a little php script would be more performant as a htaccess RewriteCond. Has somebody expiriences with that? ...
0
votes
6answers
95 views

Sql subqueries what has the best performance

I'm having a question about this sql query: SELECT class FROM Ships WHERE name IN (SELECT ship FROM Outcomes WHERE result = ’sunk’); Can I write in the subquerie ...
0
votes
1answer
245 views

Oracle - using multiple exists to check record availability

I have a situation in my application for displaying the count of data which match different criterion. Since the performance of counting is degrading with respect to the growth of database, we decided ...
4
votes
2answers
552 views

What's the fastest way to check that entry exists in database?

I'm looking for the fastest way to check that entry exists... All my life, I did with something like this... SELECT COUNT(`id`) FROM `table_name` Some people don't use COUNT(id), but COUNT(*). Is ...
1
vote
2answers
241 views

in mysql, is the NOT EXISTS function much more performance costly than UNION?

I want to fill a table with data that might be overlapping. I do this a few times in the code. so, the first time it is INSERT INTO A (SELECT * FROM B) and then the second time it is INSERT INTO A ...
8
votes
4answers
2k views

Is EXISTS more efficient than COUNT(*)>0?

I'm using MySQL 5.1, and I have a query that's roughly of the form: select count(*) from mytable where a = "foo" and b = "bar"; In my program, the only thing that it checks is whether this is zero ...
2
votes
2answers
2k views

TSQL NOT EXISTS Why is this query so slow?

Debugging an app which queries SQL Server 05, can't change the query but need to optimise things. Running all the selects seperately are quick <1sec, eg: select * from acscard, select id from ...
60
votes
9answers
41k views

Best way to test if a row exists in a MySQL table

I'm trying to find out if a row exists in a table. Using MySQL, is it better to do a query like this: SELECT COUNT(*) AS total FROM table1 WHERE ... and check to see if the total is non-zero or is ...
2
votes
3answers
385 views

Oracle performance and memory

I have two queries, and I want to understand which is better in terms of performance and memory. I also welcome other alternatives for these two. Query 1: SELECT DISTINCT a.no, a.id1 , ...
4
votes
5answers
606 views

Additional hash lookup using 'exists'?

I sometimes access a hash like this: if(exists $ids{$name}){ $id = $ids{$name}; } Is that good practice? I'm a bit concerned that it contains two lookups where really one should be done. Is ...