Tagged Questions

3
votes
6answers
726 views

Oracle 10 optimizer from RULE to COST: why?

Oracle decided to dismiss the rule-based optimizer from version 10g, leaving the cost-based one as the only choice. I think that a rule-based optimizer has the unvaluable positive side of being always ...
2
votes
3answers
36 views

How do I tell the MySQL Optimizer to use the index on a derived table?

Suppose you have a query like this... SELECT T.TaskID, T.TaskName, TAU.AssignedUsers FROM `tasks` T LEFT OUTER JOIN ( SELECT TaskID, GROUP_CONCAT(U.FirstName, ' ', U.LastName ...
1
vote
2answers
127 views

How will Oracle handle a where clause condition comparing against a subquery with a constant result?

Let's say I have the following: select primary_id from myschema.table_a where row_changed_date > ( select last_refreshed from myschema.last_refresh lr ...
1
vote
4answers
172 views

What's the easiest way to expose a SQL interface to my application?

I'm working on an application which stores data in tables, similar to an RDBMS. I'm looking for a way to let my users query this data using SQL. Ideally, I'd like to do this without having to ...
0
votes
2answers
103 views

Why does postgresql planner not use index scan instead of explicit sort within a stored function?

I have a function that executes a query with ORDER BY clause. When I call this function, postgres gets stuck, but when I execute the query with the values I pass to the function, it responds ...