HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - Re: find out the date of restored files
 
Operating System - HP-UX
        1840178
        Members
    
    
        3592
        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
 
06-25-2008 06:52 AM
06-25-2008 06:52 AM
			
				
					
						
							find out the date of restored files
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi Experts,
one of the database was deleted by one of our colleague.we had RMAN backup for that database.
now the person who has restored the database has left the company.now i want to know when the database was exactle restored. how can i find the date?
		
		
	
	
	
one of the database was deleted by one of our colleague.we had RMAN backup for that database.
now the person who has restored the database has left the company.now i want to know when the database was exactle restored. how can i find the date?
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
06-25-2008 06:58 AM
06-25-2008 06:58 AM
			
				
					
						
							Re: find out the date of restored files
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Check the Oracle logs - alert log would be 1st place to look.
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
06-25-2008 08:06 AM
06-25-2008 08:06 AM
			
				
					
						
							Re: find out the date of restored files
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						yes i check the alert log 
please find below the alert log file details
Tue Jun 24 01:13:30 2008
Starting ORACLE instance (normal)
Disable cache advisory with old cache parameters
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
SCN scheme 3
Using log_archive_dest parameter default value
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up ORACLE RDBMS Version: 9.2.0.6.0.
System parameters with non-default values:
I am attaching the whole alert log file.
I think the above one is sufficient.
if not then check the attached file.
please let me know how it will help us in looking in alert log.
		
		
	
	
	
please find below the alert log file details
Tue Jun 24 01:13:30 2008
Starting ORACLE instance (normal)
Disable cache advisory with old cache parameters
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
SCN scheme 3
Using log_archive_dest parameter default value
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up ORACLE RDBMS Version: 9.2.0.6.0.
System parameters with non-default values:
I am attaching the whole alert log file.
I think the above one is sufficient.
if not then check the attached file.
please let me know how it will help us in looking in alert log.
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
06-29-2008 01:02 PM
06-29-2008 01:02 PM
			
				
					
						
							Re: find out the date of restored files
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi,
Well I hope that this is not the entire alert-file.
Check if a logrotation tool has created a versioned file that has the recovery statements you need to search for.
Usually you should find at least
"Alter database recover ..."
or
"recover database ..."
Statements in the log.
In case of an incomplete recovery you'll
find a statement "... OPEN ... RESETLOGS"
In case a cold backup has been restored it might be more tricky. In this case you should
find doubles or at least a set back of the log sequence numbers may be like
Logswitch from #7411 to #4712
and after the next startup you find a switch
from #4635 to #4636 indicating that an old
controlfile has been restored as well.
This will give you the time, when the restore and recovery has been executed.
To find the timestamp of the last committed transaction inside the DB after the recovery, you might be lucky finding
a statement "... recover until time ..."
which gives you the exact answer.
If not, you need to detect, which backup was restored and then mine the recovery database
for the timestamp when the backup was taken.
Good hunting
Volker
		
		
	
	
	
Well I hope that this is not the entire alert-file.
Check if a logrotation tool has created a versioned file that has the recovery statements you need to search for.
Usually you should find at least
"Alter database recover ..."
or
"recover database ..."
Statements in the log.
In case of an incomplete recovery you'll
find a statement "... OPEN ... RESETLOGS"
In case a cold backup has been restored it might be more tricky. In this case you should
find doubles or at least a set back of the log sequence numbers may be like
Logswitch from #7411 to #4712
and after the next startup you find a switch
from #4635 to #4636 indicating that an old
controlfile has been restored as well.
This will give you the time, when the restore and recovery has been executed.
To find the timestamp of the last committed transaction inside the DB after the recovery, you might be lucky finding
a statement "... recover until time ..."
which gives you the exact answer.
If not, you need to detect, which backup was restored and then mine the recovery database
for the timestamp when the backup was taken.
Good hunting
Volker
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