Tagged Questions
The cost-based-optimizer tag has no wiki summary.
9
votes
6answers
253 views
Optimizing cartesian requests with affine costs
I have a cost optimization request that I don't know how if there is literature on. It is a bit hard to explain, so I apologize in advance for the length of the question.
There is a server I am ...
7
votes
5answers
6k views
PostgreSQL - fetch the row which has the Max value for a column
I'm dealing with a Postgres table (called "lives") that contains records with columns for time_stamp, usr_id, transaction_id, and lives_remaining. I need a query that will give me the most recent ...
3
votes
1answer
92 views
When does the Oracle CBO choose to execute a “merge join cartesian” operation?
From time to time, Oracle seems to prefer a MERGE JOIN CARTESIAN operation over a regular MERGE JOIN. Knowing the data and looking at concrete execution plans, I can see that this operation is usually ...
3
votes
1answer
110 views
Do foreign key constraints influence query transformations in Oracle?
I have a situation like this:
create table a(
a_id number(38) not null,
constraint pk_a primary key (id)
);
create table b(
a_id number(38) not null
);
create index b_a_id_index on b(a_id);
...
0
votes
0answers
12 views
Objective function for test dataset
I am curious about one thing:
For a recommendation system is it a correct behavior calculation objective function(cost function) of the test data ? I calculate objective function for the train data ...
0
votes
2answers
184 views
How can a node in an execution plan have smaller costs than its child?
I always thought that a node in an execution plan can only be executed after its children have executed, and thus the total cost of a node has to be greater or equal than the cost of the child nodes. ...