I want to use parallel hint in my select query to improve performance. But this select statement contains more than one tables in the from clause. How can we use parallel hint in the select statement.
INSERT INTO /*+APPEND */ ITEM
(
)
SELECT a FROM GTT_LINE p, GTT_LINE_XY r
Where <condition>
UNION
SELECT a FROM GTT_LINE p, GTT_LINE_XY r
Where <condition>
Let's say your
PARALLEL_MAX_SERVERSvalue is 80. Then you can use it:Note:
8and16in sum shouldn't exceed the maximum value of80. To check the maximum value you have to log-in as SYS or SYSDBA and run the next command: