How to calculate Index creation time [message #649781] |
Wed, 06 April 2016 04:35 |
hitesh.bhatt
Messages: 84 Registered: February 2014 Location: INDIA
|
Member |
|
|
Hi,
Can anyone please help me with approximate time to create an Index on table with 1 Million records?
[As I have totally 60 tables with huge data. (Most of tables with more than 10 Million re[cords)]
Thanks in advance.
Regards,
Hitesh
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: How to calculate Index creation time [message #649856 is a reply to message #649781] |
Sat, 09 April 2016 13:22 |
|
LNossov
Messages: 318 Registered: July 2011 Location: Germany
|
Senior Member |
|
|
Creation time depends on the creation method. If you use pdml with the appropriate degree, it should be fast. If not it is slower. You can use explain plan for create index command and dbms_xplan.display to estimate the size of the index (but not the creation time, s. above).
|
|
|