Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Many indexes on a large table
Walter Campino <Walter_no_spam_Campino_at_iona.com> wrote:
>
>Questions:
>
>1) Can I somehow build these in parallel (this is a 12 CPU machine, and we
>can use them all)
>2) Any other suggestions
I usually do this sort of thing with a shell script.
For example:
(sqlplus scott/tiger << EOF
CREATE INDEX emp_ak1 ON emp(empno,ename);
EOF
) &
(sqlplus scott/tiger << EOF
CREATE INDEX emp_ak2 ON emp(job,mgr);
EOF
) &
. . .
-- Andrew Mobbs - http://www.chiark.greenend.org.uk/~andrewm/Received on Thu May 30 2002 - 06:40:16 CDT
![]() |
![]() |