HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - Need Help2
 
Operating System - HP-UX
        1840204
        Members
    
    
        2847
        Online
    
    
        110162
        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
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
 
12-20-2001 10:46 AM
12-20-2001 10:46 AM
			
				
					
						
							Need Help2
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Ok, let says that I need a c script for this. How should I do it as I'm not well verse in c script. 
My shell script as follows and I need a c script:
1. I need to remsh to server A as my script.sql is located in that server
2. I need to pass in a employee name to get his/her salary. How to pass it in?
sqlplus -s user/Password@oracle @script.sql $1
tail -2 $1.lst > $1.tmp
mv $1.tmp $1.lst
3. In the same script I need to return the value. If file exist then I need to return a 1 value and if file did not exist then I return 0 value.
					
				
			
			
				
		
		
	
	
	
My shell script as follows and I need a c script:
1. I need to remsh to server A as my script.sql is located in that server
2. I need to pass in a employee name to get his/her salary. How to pass it in?
sqlplus -s user/Password@oracle @script.sql $1
tail -2 $1.lst > $1.tmp
mv $1.tmp $1.lst
3. In the same script I need to return the value. If file exist then I need to return a 1 value and if file did not exist then I return 0 value.
	Performance Issue on HP-UX 10.20
			
			
				
			
			
			
			
			
			
		
		1 REPLY 1
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
12-20-2001 11:39 AM
12-20-2001 11:39 AM
			
				
					
						
							Re: Need Help2
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						On server B
EXIT_VAL=`remsh servera myquery.sh passed_value`
echo "Status us $EXIT_VAL"
On server A create myquery.sh to be
sqlplus -s user/Password@oracle @script.sql $1
COUNT=`tail -2 $1.lst | wc -l`
if [ $COUNT -eq 2 ]
then
echo "1"
else
echo "0"
fi
Notes:
You cannot use $? on remsh becuase it returns the value of remsh not the script you call.
Also I am assuming by your code segment you return true if there are two lines in the file? You can tweak the if to fit whatever you need
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
EXIT_VAL=`remsh servera myquery.sh passed_value`
echo "Status us $EXIT_VAL"
On server A create myquery.sh to be
sqlplus -s user/Password@oracle @script.sql $1
COUNT=`tail -2 $1.lst | wc -l`
if [ $COUNT -eq 2 ]
then
echo "1"
else
echo "0"
fi
Notes:
You cannot use $? on remsh becuase it returns the value of remsh not the script you call.
Also I am assuming by your code segment you return true if there are two lines in the file? You can tweak the if to fit whatever you need
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