Oracle Hint เทคนิคการ Query เพื่อ Tuning Performance
บทความเกี่ยวกับ : Oracle Hint เทคนิคการ Query เพื่อ Tuning Performance การใส่ Hint ตาม Format นี้เลยครับ SELECT /*+ HINT */ * from tbl ตัวอย่างเช่นการบังคับให้ Query แบบ FULL คือไม่ใช้ Index SELECT /*+ FULL(x) */ FROM tab1 ตัวอย่างการบังคับให้ Query โดยใจ Index ตามที่ระบุ SELECT /*+ INDEX(test_idx1) */ * FROM tbl ตามนี้เลยครับสามารถช่วยได้เยอะเลยทีเดียวส่วน Hint มีอะไรบ้างนั้นตามด้านล่างเลยครับ * ORDERED - usually with USE_NL to get Oracle to not hash join * INDEX (t index_name) - where Oracle chooses the wrong index over the correct one * NO_INDEX - prevent an index from being used * I NDEX_COMBINE - merging bitmap indexes (use when Oracle does not merge bitmap indexes) * FIRST_ROWS (n) - when you only want the first few rows * PARALLEL - to force parallel query on certain specific queries * GATH...