HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - how to change the char set to WE8ISO8859P1 in our ...
 
Operating System - HP-UX
        1840133
        Members
    
    
        1877
        Online
    
    
        110161
        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
 
07-03-2008 10:33 AM
07-03-2008 10:33 AM
			
				
					
					
						Hi guys,
I've just installed the fresh new Oracle 9i in our HP UX Server, and can someone guide me how to convert the Char set to WE8ISO8859P1 ?
FYI, the Oracle DB has none data yet !
Thanks !!
					
				
			
			
				
			
			
				
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
I've just installed the fresh new Oracle 9i in our HP UX Server, and can someone guide me how to convert the Char set to WE8ISO8859P1 ?
FYI, the Oracle DB has none data yet !
Thanks !!
Solved! Go to Solution.
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-03-2008 10:51 AM
07-03-2008 10:51 AM
			
				
					
						
							Re: how to change the char set to WE8ISO8859P1 in our Oracle 9i
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Found this article via Google:
http://oracle.ittoolbox.com/groups/technical-functional/oracle-db-l/changing-the-characterset-of-database-2177517
		
		
	
	
	
http://oracle.ittoolbox.com/groups/technical-functional/oracle-db-l/changing-the-characterset-of-database-2177517
	--
Jeff Traigle
			
			
				
			
			
			
			
			
			
		Jeff Traigle
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-04-2008 11:00 AM
07-04-2008 11:00 AM
Solution
			
				
					
					
						Hello DnD,
To change the character set on your database you simply need to execute the following instrucction (connected as sysdba):
ALTER DATABASE CHARACTER SET WE8ISO8859P1;
To do this you need to startup your database in restricted mode:
STARTUP RESTRICT;
Now if your database is fresh (just installed) I'd say you have nothing to loose. However, it would be a good idea to use the "csscan" command to detect if the new Charset would not cause to corrupt data. Remember that eventhough you have no application data yet, some dictionary entries might get corrupted. I think not, but better be sure.
Let us know how it goes.
BR,
		
		
	
	
	
To change the character set on your database you simply need to execute the following instrucction (connected as sysdba):
ALTER DATABASE CHARACTER SET WE8ISO8859P1;
To do this you need to startup your database in restricted mode:
STARTUP RESTRICT;
Now if your database is fresh (just installed) I'd say you have nothing to loose. However, it would be a good idea to use the "csscan" command to detect if the new Charset would not cause to corrupt data. Remember that eventhough you have no application data yet, some dictionary entries might get corrupted. I think not, but better be sure.
Let us know how it goes.
BR,
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-22-2008 03:45 PM
07-22-2008 03:45 PM
			
				
					
						
							Re: how to change the char set to WE8ISO8859P1 in our Oracle 9i
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi DnD,
Just for your information:
The database character set is used to store all the data in columns of type VARCHAR2, CLOB, CHAR, and LONG. If you change it, you may destroy all the data in your existiong columns of these types.
You can also use Database Character Set Scanner to check if conversion to WE8ISO8859P1 would cause any problems . (You need to download and install it for Oracle9i)
csscan system/pass full=y tochar=WE8ISO8859P1
Regards,
Vadim
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
Just for your information:
The database character set is used to store all the data in columns of type VARCHAR2, CLOB, CHAR, and LONG. If you change it, you may destroy all the data in your existiong columns of these types.
You can also use Database Character Set Scanner to check if conversion to WE8ISO8859P1 would cause any problems . (You need to download and install it for Oracle9i)
csscan system/pass full=y tochar=WE8ISO8859P1
Regards,
Vadim
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