- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Removing special characters
Categories
Company
Local Language
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
Forums
Discussions
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
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- 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
тАО10-14-2003 02:42 PM
тАО10-14-2003 02:42 PM
Removing special characters
Is there an sql wich can remove existing special characters in the database.
By special characters i mean all those characters which are not present on the keyboard of a PC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2003 08:22 PM
тАО12-09-2003 08:22 PM
Re: Removing special characters
Or a function in 4GL/"C" need to be written to get such functionality.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2003 08:28 PM
тАО12-09-2003 08:28 PM
Re: Removing special characters
But you could try one thing which surely will work.
1. Unload the data from the table (dbunload)
2. then you can vi the file and remove the special characters you want.
3. Load the data back into the table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2003 08:32 PM
тАО12-09-2003 08:32 PM
Re: Removing special characters
-- Graham
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2003 06:13 PM
тАО12-12-2003 06:13 PM
Re: Removing special characters
Translate kind of function will work if the user is aware of all the special charachters to be removed while doing an insert or update.
In this case the user need a function which will ignore all but (A-Z, a-z, 0-0 and other characters on the keyboard).
The Pseudocode of the funtion will be :
char function(input)
char Alist={A-Z, a-z, 0-9, ...)
Scan each character of the input field.
If the input character falls in the Alist, accept the character else ignore it.
Make a new output field ignoring special characters not falling in Alist.
return(output field)
The returned field can be used in insert/update statement.