А чего -хорошие вопросики, я бы сам такие позадавал тоже. Вот еще -Easbayguy wrote:У меня на все эти вопросы архитекторы не могли ответить, а вы по скромному, дешевого девелопера хотите.
1)how to do index combine?
2)What is the join index and what are the benefits from it?
3)Partitioned table has a PK and a bunch of local indexes. How to delete data from one partition (about 2 mln rows, the table contains about 270 mln) effectively and what are the steps involved.
4)Which operations can be parallelized and which can't? How to do parallel DML, DDL?
5) What are the advantages and disadvantages of Bitmap Indexes?
6) How to move a very big table from one DB to another(same version of Oracle in both)?
7) One table is big (200 mln), second is small (1 mln). Write a query to find the rows that exist in small but not in big. What is the difference between NOT IN and NOT EXIST, which query would be more effective (keyword i need to hear is hash anti-join)
8 ) Partitioned big table with partitioned indexes (200 mln rows for example). We are gonna upserts (insert or update) about 2 Mln rows , either touching one partiton or few. How to do that effectively?
9) Partitioned big table with partitioned indexes. We are gonna insert 10 mln rows in one new partition from the table in the same DB. How to do that effectively? What if rows to insert are from the external source(file, another DB)?
10) NON Partitioned big table (500 mln), the tablespace is 99.9 full, (hint, we have another empty tablespace). We are gonna delete 100 mln rows to free up space in that tablespace. How to do that (keywords i need to hear are HWMark, table reorg, move)?