cost-based-optimizer Questions
10
Solved
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 l...
Ebersole asked 25/2, 2009 at 16:37
2
Solved
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);
...
Minimum asked 16/11, 2011 at 14:55
1
Solved
I am in the beginning stages of machine learning in R and I find it hard to believe that there are no packages to solving the cost function for different types of regression algorithms. For example...
Guilford asked 21/2, 2017 at 16:29
5
Solved
I am able to get join elimination to work for simple cases such as one-to-one relations, but not for slightly more complicated scenarios.
Ultimately I want to try anchor modelling, but first I need...
Tanya asked 8/11, 2016 at 15:4
2
Solved
I have a deep neural network where the weights between layers are stored in a list.
layers[j].weights I want to incluse the ridge penalty in my cost function. I need then to use something like
t...
Ulibarri asked 29/12, 2015 at 21:50
1
Solved
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 usua...
Bandaid asked 16/11, 2011 at 16:34
6
Solved
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 ac...
Archbishopric asked 10/9, 2009 at 7:58
1
© 2022 - 2024 — McMap. All rights reserved.