HPE GreenLake Administration
Operating System - OpenVMS
        1839862
        Members
    
    
        2864
        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
12-16-2008 12:46 PM
		4 REPLIES 4
	
	            
            
		
		
			
            
                - Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2008 01:04 PM
12-16-2008 01:04 PM
			
				
					
						
							Re: DTSS
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Perhaps:
show system /process = *dtss*
Somewhat crude:
ALP $ set time = 15:03
%SET-E-NOTSET, error modifying time
-SYSTEM-E-TIMENOTSET, time service enabled; enter a time service command to update the time
There are probably good ways, too.
		
		
	
	
	
show system /process = *dtss*
Somewhat crude:
ALP $ set time = 15:03
%SET-E-NOTSET, error modifying time
-SYSTEM-E-TIMENOTSET, time service enabled; enter a time service command to update the time
There are probably good ways, too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2008 02:18 PM
12-16-2008 02:18 PM
			
				
					
						
							Re: DTSS
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						$ MC NCL SHOW DTSS STATE
should show you whether DTSS is defined at all (if not, you get an "entity class not supported" or similar message), and if, whether it is enabled (running).
This is at least true for the various incarnations of DECnet Phase V, DECnet/OSI and DECnet-Plus (different names for the same product across several versions). If you are using DECnet Phase 5 Extensions on (Open)VMS/VAX 5.x, I'm not sure how you'd exactly check for DTSS presence. Scanning SHOW SYSTEM output (as the previous post suggests) would probably help.
HTH,
Hans.
		
		
	
	
	
should show you whether DTSS is defined at all (if not, you get an "entity class not supported" or similar message), and if, whether it is enabled (running).
This is at least true for the various incarnations of DECnet Phase V, DECnet/OSI and DECnet-Plus (different names for the same product across several versions). If you are using DECnet Phase 5 Extensions on (Open)VMS/VAX 5.x, I'm not sure how you'd exactly check for DTSS presence. Scanning SHOW SYSTEM output (as the previous post suggests) would probably help.
HTH,
Hans.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2008 02:34 PM
12-16-2008 02:34 PM
Solution
			
				
					
					
						There are a number of logical names defined when DTSS is running. I have code that determines if DTSS is running by the existence of logical name DTSS$_SERVICE_ACTIVE in the system logical name table.
$ IF F$TRNLNM("DTSS$_SERVICE_ACTIVE").NES.""
$ THEN
...
You can find other useful things like the host it's synching from. See $ SHOW LOGICAL DTSS$*
You could also look for the existence of DTSS processes.
$ ctx = ""
$ temp = F$CONTEXT ("PROCESS", ctx, "PRCNAM", "DTSS$*","EQL")
$ IF F$PID(ctx).NES."" THEN (at least one DTSS$ process exists)
when finished, clean up context
$ IF F$TYPE(ctx) .eqs. "PROCESS_CONTEXT" THEN temp = F$CONTEXT ("PROCESS", ctx, "CANCEL")
					
				
			
			
				
		
		
	
	
	
$ IF F$TRNLNM("DTSS$_SERVICE_ACTIVE").NES.""
$ THEN
...
You can find other useful things like the host it's synching from. See $ SHOW LOGICAL DTSS$*
You could also look for the existence of DTSS processes.
$ ctx = ""
$ temp = F$CONTEXT ("PROCESS", ctx, "PRCNAM", "DTSS$*","EQL")
$ IF F$PID(ctx).NES."" THEN (at least one DTSS$ process exists)
when finished, clean up context
$ IF F$TYPE(ctx) .eqs. "PROCESS_CONTEXT" THEN temp = F$CONTEXT ("PROCESS", ctx, "CANCEL")
	A crucible of informative mistakes
			
			
				
			
			
			
			
			
			
		- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2008 04:56 PM
12-16-2008 04:56 PM
			
				
					
						
							Re: DTSS
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Good recommendations from all. Much thanks.
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
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
