开发者

Oracle global temporary tables - maximum number of records?

Is there a limit on how many records can go to a global temporary table, before it affects performance, and does it affect performance? I 开发者_如何学Pythonam talking here about millions of records that might be inserted to a global temporary table.


there is no hard limit to the number of records in a global temporary table. Data will eventually be written to disk and therefore will be subject to read/write speed when you insert/update your data or query the table. You would expect performance (i.e data modification and data access) to be roughly of the same level as a regular table -- a little faster since there is less redo generated.

You can add indexes to a global temporary table to ease retrieval of a subset of rows (it will obviously slow down insert and consume more temp space, this is a trade-off)


As with any table, of course the volume of data will have an impact on performance. GTTs may need indexes like any other table. One thing that is different is the optimiser statistics - by default there aren't any so Oracle makes a guess. See this Tom Kyte article on how to provide the optimiser with accurate statistics after loading the GTT.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜