
Creator
2024-11-27
01:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Parallel hint in oracle
I am using --+ PARALLEL (4) instead of /*+ Parallel(4) */ in oracle, just wanted to check would it work as expected as I don't have access to database to check the execution.
And also commenting out the // set StripComments=0; in the beginning.
244 Views
1 Reply


Specialist II
2024-11-29
05:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can try inserting something irrelevant that will give you an error if it doesn't work as expected. Something like the second row here:
select myfield1, myfield2
--fail or functional?
from mydb;
204 Views
