HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Oracle Workflow
Operating System - HP-UX
        1839830
        Members
    
    
        3891
        Online
    
    
        110156
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
	
		
			
            
                
            Go to solution
        
            
		
		
			
            	
	
		
        
		
	
	
		Topic Options
			
				
					
	
			
		
	- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2008 09:51 AM
03-03-2008 09:51 AM
			
				
					
					
						Anyone have thoughts or references on tuning Oracle Workflow?  That is, the workflow engine and handling itself.  Any pointers to links and references appreciated.
					
				
			
			
				
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
	We are the people our parents warned us about --Jimmy Buffett
			
			
				Solved! Go to Solution.
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2008 11:18 AM
03-03-2008 11:18 AM
			
				
					
						
							Re: Oracle Workflow
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						For Oracle Financials - Oracle recommends running "wfupartb.sql".  I've looked at its contents, and it really does nothing...
The total code that would run is below the comments as per below:
set verify off;
WHENEVER SQLERROR EXIT FAILURE ROLLBACK;
WHENEVER OSERROR EXIT FAILURE ROLLBACK;
commit;
exit;
So, that's it. I don't see it doing anything at all.
In the database itself - I see partitions on WF_LOCAL_ROLES, WF_LOCAL_ROLES_TL, WF_LOCAL_USER_ROLES, WF_USER_ROLE_ASSIGNMENT
and that's it. None of those make me think that this would make workflow scream along...
Does anyone using Apps 11i having different/more partitions ?
Also, what code do you have in $FND_TOP/admin/sql/wfupartb.sql ?
		
		
	
	
	
The total code that would run is below the comments as per below:
set verify off;
WHENEVER SQLERROR EXIT FAILURE ROLLBACK;
WHENEVER OSERROR EXIT FAILURE ROLLBACK;
commit;
exit;
So, that's it. I don't see it doing anything at all.
In the database itself - I see partitions on WF_LOCAL_ROLES, WF_LOCAL_ROLES_TL, WF_LOCAL_USER_ROLES, WF_USER_ROLE_ASSIGNMENT
and that's it. None of those make me think that this would make workflow scream along...
Does anyone using Apps 11i having different/more partitions ?
Also, what code do you have in $FND_TOP/admin/sql/wfupartb.sql ?
	We are the people our parents warned us about --Jimmy Buffett
			
			
				
			
			
			
			
			
			
		- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2008 01:09 AM
03-04-2008 01:09 AM
Solution
			
				
					
					
						Hi TwoProc,
This script has been modified to do post-installed stuffs (in this particular case rollback or commit):
...
Rem dlam 12/04/1999 - Modified as a post-installed script
...
So you must run/execute/apply something else before (a patch?): I found Metalink Note 260884.1 that seems to be helpful...
Best Regards,
Eric
					
				
			
			
				
		
		
	
	
	
This script has been modified to do post-installed stuffs (in this particular case rollback or commit):
...
Rem dlam 12/04/1999 - Modified as a post-installed script
...
So you must run/execute/apply something else before (a patch?): I found Metalink Note 260884.1 that seems to be helpful...
Best Regards,
Eric
	Each and every day is a good day to learn.
			
			
				
			
			
			
			
			
			
		- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2008 03:10 PM
03-04-2008 03:10 PM
			
				
					
						
							Re: Oracle Workflow
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						On the right track Eric - I've found patch 272156 a couple of hours after the posting (which is what your DOC ID points to).  I was wondering how yourself, Yogeeraj, or Hein handled this.  
It says that this patch is for sites that have high workflow tuning requirements. The good news is I have it already, all I have to do is run the scripts for analysis and follow through in a test systems and make sure it doesn't do any harm before progressing to a bigger test.
I'm going to test it in a patch db instance tonight, and follow up in this thread.
Thanks Eric!
		
		
	
	
	
It says that this patch is for sites that have high workflow tuning requirements. The good news is I have it already, all I have to do is run the scripts for analysis and follow through in a test systems and make sure it doesn't do any harm before progressing to a bigger test.
I'm going to test it in a patch db instance tonight, and follow up in this thread.
Thanks Eric!
	We are the people our parents warned us about --Jimmy Buffett
			
			
				
			
			
			
			
			
			
		The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP