Tagged Questions
1
vote
1answer
93 views
Immediate refresh materialized views (MQT) with OUTER JOIN under DB2
DB2 accepts a materialized view based on an "OUTER JOIN" query, as long it doesn't refresh automatically (REFRESH IMMEDIATE).
I cannot find a simple solution to get round this problem. Perhaps with ...
1
vote
2answers
458 views
Table orders regarding Nested loop join in DB2
First I would like to cite the existing post Table order in Join Query
so the author is saying that the table order really doesn't make things(result, access plan)different. I have doubt on this ...
1
vote
2answers
392 views
In DB2, how can I disable NLJOIN?
I want to indicate to the optimizer, via SET or optimization profiles, that NLJOIN shouldn't be used at all when optimizing a query.
I've been looking for this for a while without any success. I ...
2
votes
3answers
788 views
How do I join two tables on two different instances of DB2?
There are two instances of DB2 running on the same machine. One has a table aliased to the a table in the other one. Is there a way to do this in DB2 or does it have to be done via an external tool?
...