Save special charactors in DB.

I have a textarea where i type in muños, it is saved as mua+os in the DB. What is the best practice to address this issue?

Select a language set for your DB that will allow Spanish characters.

Similar Messages

  • Subscription/notification mail removes special charactor's

    Hi
    I case of a mail notification on a subscribed discussion all the special charactor's (æ,ø and å) in the mail are removed. How can I avoide this?
    Best Regards
    Ole

    Hi Detlev
    I got a message running regarding this subject but have incountered a nother problem when I upgraded to patch 28 on a sp2. I'm almost sure the upgrade has solved the problem, but I cant verify it before the other problem is solved.
    /Ole

  • Not inserting special charactors like in HTMLDocument insertHTML

    hello,
    I want to allow special charactrs to get inserted in HTMLDocument of JtextPane like > < .
    I know I can encode them by ;&gt & ;&lt
    But What if i want to insert a <img src='blabla' > , here the < > tags of img will also get replaced.
    How can we handle this situation?
    thanks
    Ani

    thanx again for replying...
    Here m using ;&gt for gr8er than symb n    ;&lt for less than I this post editor  dont show these charactors.
    You are exactly right about the logic .. I have used RE only .
    but in case of swing module, situation is little different , I am getting a message on which my swing module drives is for ex.
    hi <img src='images/smile.gif'>  where all replacement is already done.
    so here I can insert the above msg directly as HTML using insertHTML but my pbm is what about the charactors like ;&gt ;&lt which are not displaying on the JtextPane HTML Document.
    SPECIALLY WHEN i TRIED TO INSERT THE MESSAGE LIKE
    <note> : I want this <img src='images/smile.gif'>So in insertHTML , the msg displaying is nothing as it starts with ;&gt .
    ;&lt is getting ok but ;&gt giving me pbm.
    any solu'n for this ;&gt?

  • How to save Special Characters in oracle?

    Is there any way to enter special characters such as ºC ? i am using J2EE and Oracle 9 i.
    When i try to enter 2ºC after updating the datbase it is converted to 2ºC when it is displayed in HTML. All special characters are prefixed with Â. Pls suggest any way to use special characters with oracle ..

    This has nothing do to with NLS_LANGUAGE. In general, character set processing depends on NLS_LANG setting (which is an OS setting and not a instance initialization parameter) and database character set. To understand NLS_LANG see OTN NLS_LANG FAQ http://www.oracle.com/technology/tech/globalization/htdocs/nls_lang%20faq.htm.
    However, I think that JDBC is an exception and does not use the character set defined by NLS_LANG. See last answer in following discussion:
    Re: When is NLS_LANG used ?

  • Can't oracle save special characters copied from ms sql?

    In our application when we copy-pasting some text in text area and trying to save that in database, same text is not getting saved. What we were trying to save is: “jjjjjjjjjjj’”*******!!`sachin, and what is getting saved is: ¿jjjjjjjjjjj¿¿*******!!`sachin. When I was trying to save the same text executing a procedure, text is getting saved properly. But from the application it is not the same.
    Please suggest a solution. Is it not possible from oracle? Do we need to change any character encoding scheme?

    user606720,
    Your problem might be related to the character sets used.
    user627415,
    You seem to be very desparate for an answer.
    Please post your code/sample data/error in your own thread so that people could try to answer you. There are rules governing DML operations on views which in turn work on the underlying tables. You must be violating some rule(s) in your query.

  • Special charactors found in out put file of .xml file in file adapter

    Hi ,
    Dear all,
    I am working on Sender File adapter picking files from the multiple Directories which are specified in a single CC and these files are placed in the different receiver directories in different CC's metained paths of the receivers
    The Souce is XML.
    When I use  the receiver format as .csv,.txt it the out put is as excepted,when i give the receiver format as .XML the output file contents:PK   (An invalid character was found in text content. Error processing resource 'file:).
    Pl let me know how to tackle thsi situation.
    Thanks,
    Srini

    Hi
    Also try with the following UDF.
    public class XmlUtil {
        char[] specialCharacters = { '&', '<'>', '\'' };
        String[] replacementStrings = { "&", "<">", "&apos;" };
        public static String sanitizeText( String text ) {
            StringBuffer buffer = new StringBuffer( text );
            for( int i = 0; i < buffer.length(); i++ ) {
                for( int k = 0; i < specialCharacters.length; k++ ) {
                    if( buffer.charAt(i) == specialCharacters[k] ) ) {
                         buffer.replace( i, i + 1, replacementString[k] );
                         i += replaceString[k].length;
                    } else if( (int)buffer.charAt(i) > 128 ) {
                         String replacement = "&#" + (int)buffer.charAt(i) + ";";
                         buffer.replace( i, i + 1, replacement );
                         i += replacement.length();
            return buffer.toString();
    Regards
    Abhishek Mahajan

  • SharePoint key word query, how does the "Query Text" query special character in a query variable?

    I have a no code sandbox solution, in a content by search web part, I want to return pages from the library except the page I am visiting.
    I have 2 pages:
    Page A, the title is: Page title without special character
    Page B, the title is: Page title with special character "a b c d ..."
    And then I use Title<>{Page.Title} in the query text of the CSWP.
    While I visit Page A, the CSWP returns Page B, it works as expected.
    But while I visit Page B, the CSWP returns nothing, expected result should be Page A. I just consider, whether the special characters in the Title of Page B breaks the query text.
    I can not find similar topics in the forum, Does anyone have idea?
    Many thanks!

    Thank you for your feedback, Daniel.
    I have some updates, and found the root cause: if the field value contains special characters, the CSWP will not render the double quotation marks around the field value.
    View the page html source, and then find the text "QueryModification", you will see what happen:
    Query Text Input: Title<>{Page.Title}
    1. While the page title is "Test Page 1" (without special character), the rendered query text is
    Title<>\"Test Page 1\". It works as expected.
    2. While the page title is "Test-Page-1" (with special character "-", of cause we have more special characters on production), the rendered query text is
    Title<>Test-Page-1.  The double quotation marks are not rendered by the CSWP, so the query text are broken. It does not work as expected.
    If I make the query text as Title<>"{Page.Title}"
    1. While the page title is "Test Page 1", the rendered query text is
    Title<>\"\"Test Page 1\"\". It does NOT work since the
    quotes are duplicated (no sure why CSWP duplicates the quota mark),
    2. While the page title is "Test-Page-1", the rendered query text is
    Title<>\"Test-Page-1\".  Quotes are correct, but it does NOT work as expected still.
    The expected rendered query text (view from the html source) should be
    Title<>\"Test\\\-Page\\\-1\". (Here is test url: <a href="http://server/_api/search/query?querytext='Title<>"Test%5c%5c%5c-Page%5c%5c%5c-1"'&rowlimit=10">http://server/_api/search/query?querytext='Title<>"Test%5c%5c%5c-Page%5c%5c%5c-1"'&rowlimit=10)
    From the above information, I can say the CSWP not handle the special character correctly ("\" is not inserted before any special charactor).
    Is there any setting in CSWP can be used to resolve above problem?

  • Suitable OSS Note for special charecters when upload a file

    hi,
    can anbody help me in finding OSS Note for
    special charecters in file upload as i was unable to print  'é' this charcter as a result it was going into short dump
    Please help me

    Hi,
    Are u using smatrforms, if it is
    Create text in smart form->click edit button of text->menu->insert->characters->displayable characters->then select ur special charactor.
    that no will display in text node. check that no with OSS note.
    Thanks,
    Sendil

  • Support for file extensions with more than three characters when saving - I want my FLAC!

    Why does the Wave Editor still drop characters from filenames with more than three character extensions when you save a file? But since -opening- a FLAC file with an extension of ".flac" doesn't get chopped to ".fla", why does Audition still chop off the extra character when -saving-?
    It gets old quickly when you have to save, close and reopen files in order to get Audition's Multitrack editor to play nice and be able to find files when you reopen the Session.
    Given that the FLAC filter is open source, I may just have to modify the code and recompile it to force a save to ".fla"... But of course, ".fla" is a Flash file extension, which I also use, so that is a crude hack for me.

    Hi bro...
    use in BYTE mode in place of in TEXT mode. and at the end of each line give some special charactor so as to distinguish between lines.This is effected  by unicode check too
    regards
    Edited by: Mohit Kumar on Feb 9, 2009 9:44 AM

  • Print report in Thai and English Characters

    Hi ,
    I able to enter Thai characters from front end but at backend(database) it looks like this '¿¿¿' .someone has any idea why is it so?
    Also, I am using some logic to print amount in words in oracle report builder 6i.Our client requirement is to print these amount in words in Thai Characters..Please share your thoughts!
    Thanks,
    Neha

    Don't worry about backend.  Change your report builder field as specified font.  Report builder automatically converts these special charactors into to actual font you specified.  Then you can take output from your report builder.

  • Exception = CX_SY_CONVERSION_NO_NUMBER

    Hi,
    May we ask for your assitance, why we are getting this error:
    Error analysis:
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_CONVERSION_NO_NUMBER',
    was neither
    caught nor passed along using a RAISING clause, in the procedure
    "CONVERT_FISCPER_SELECTION" "(FORM)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    The program attempted to interpret the value "XXXX" as a number, but
    since the value contravenes the rules for correct number formats,
    this was not possible.
    Information on where terminated:
    The termination occurred in the ABAP program "SAPLGUSL" in
    "CONVERT_FISCPER_SELECTION".
    The main program was "SBIE0001 ".
    The termination occurred in line 406 of the source code of the (Include)
    program "LGUSLF01"
    of the source code of program "LGUSLF01" (when calling the editor 4060).
    The program "SAPLGUSL" was started as a background job.
    Processing was terminated because the exception "CX_SY_CONVERSION_NO_NUMBER"
    occurred in the
    procedure "CONVERT_FISCPER_SELECTION" "(FORM)" but was not handled locally, not
    declared in the
    RAISING clause of the procedure.
    The procedure is in the program "SAPLGUSL ". Its source code starts in line 350
    of the (Include) program "LGUSLF01 ".
    Thanks.

    HI...
    this error occur when we are trying to move data of charactor type or even SPACE or special charactor to NUMERIC type....
    soloution to your problem....
    only give numeric values in the selection screen or look for some user exit if available or go for enhancement framework.
    this is a same kind of problem which i was getting
    regards

  • Sax parse xml bug , I can't figure it out!

    (1) orginal xml file as followings:
    <row>
    <field name="productBundleId">22456</field>
    <field name="localPath">/products/01092008/RealArcade/STD_StonesOfKhufu_NOK6030_EN_v1_0_12.jar</field>
    <field name="description">/products/01092008/RealArcade/STD_StonesOfKhufu_NOK6030_EN_v1_0_12.jad</field>
    </row>
    (2) task parsing the above and and retrieve the value and set it to a javabean:
    (3) Using the SAX as the xml file is very big , about 1M
    * @author mertef
    public class XerseHandlerImp extends DefaultHandler implements MF_CONSTANTS
         List                              m_data               = new ArrayList();
         private CompareSimpleBean     m_csb               = null;
         private String                    m_tmpVal          = "";
         private boolean                    m_id               = false;
         private boolean                    m_jar               = false;
         private boolean                    m_jad               = false;
         private String                    m_whitespace     = "";
         private boolean                    m_character          = false;
         @Override
         public void characters(char[] ch, int start, int length) throws SAXException
    *          // System.out.println(new String(ch,start,length));*
              m_tmpVal = new String(ch, start, length);*
    if (jad) System.out.println(tmpVal);*
         @Override
         public void endElement(String uri, String localName, String name) throws SAXException
              m_character = false;
              if (name.equals(MOVAYA_ROW))
                   m_data.add(m_csb);
              if (name.equals(MOVAYA_FIELD))
                   if (m_id)
                        m_csb.setId(m_tmpVal);
                        m_id = false;
                        m_jar = false;
                        m_jad = false;
                   else if (m_jar)
                        m_csb.setJarPath(m_tmpVal);
                        m_id = false;
                        m_jar = false;
                        m_jad = false;
                   else if (m_jad)
                        m_csb.setJadPath(m_tmpVal);
                        m_id = false;
                        m_jar = false;
                        m_jad = false;
         @Override
         public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException
              m_whitespace = new String(ch, start, length);
    (4) please pay attention to the bold area , the method:
    character()
    I declare a variable "m_character" to decide if the parser don't read content of
    an item in above xml file ,such as
    /products/01092008/RealArcade/STD_StonesOfKhufu_NOK6030_EN_v1_0_12.jar
    (5)error:
    but some time it only reads part of the character contents:
    eg:
    /products/01092008/RealAr
    cade/STD_StonesOfKhufu_UnitedStates_LGCU515_EN_v1_0_12.jad
    It means that they parser comes across some character when parsing,
    but in fact it doesn't.
    You can use println() to monitor the outputs.
    So I need to declare some boolean variable to decide whether all the content of one item has read fully.
    (6)
    May be its a bug, my xml file don't include any special charactor.

    The problem is that the character data might be delivered in multiple chunks, this means that the characters method might be called more than once for the same element.
    One way around this is to create a StringBuilder or something similar in the startElement() method, and fill it with the characters in the characters() method and read it in the endElement() method.
    For more information: http://forum.java.sun.com/thread.jspa?threadID=5255925

  • Spark textinput does not display unicode properly

    I need to type in some special charactors using unicode input method.
    (install microsoft pinyin, and use secondary inputs-> unicode input, and type "E826" into the textinput box)
    in spark textinput, the charactor is showing as a sqare; while mx textinput displays the charactor correctly.
    does anybody know solution for this issue? or is it a known bug in flex?  thanks!

    I did not set font for neither s:textinput nor mx:textinput.  "Arial" should be used by default.
    I am wondering how mx:textinput can work. is there any alternative font set for it by default?
    I am not sure which font contains these special charactors.
    thanks!

  • InDesign: Letter spacing messed up in automatic page numbering

    The numbers in my documents are smashed together when using automatic page numbering in InDesign.. They are fine when there is a single character (1-9 )but when there is two characters (10 or higher) the kerning is gone and the numbers overlap?
    Anyone know why and how to fix?

    I think I might have just figured it out...
    I was cutting and pasting text boxes from masters above... deleting the special charactor and insearting agin in a text box that I had inserted one before instead of creating a new one to insert new special character... ID does not like that I guess

  • Printing abap form in polish

    Hello
    When i print a form in polish, special charactors like ł, ś, ć etc are all printed as '#.
    Polish is installed and we are in Unicode.
    Ty
    Hicham.

    Hi
    I don't know about the printer, how can i check it?
    TY
    Hicham

Maybe you are looking for

  • Error in Synchronous client proxy

    Hi Gurus, I have created a scenario in which I am using client proxy at source side (ECC ) and soap at target side. Its a synchronous scenario for which I have written an abap report.This interface sends a company name and uses a webservice to fetch

  • Why does my While loop not work?

    I was using the SetInterval timer but this kept causing problems getting the timing right, So I thought - get the loop to work infiitely... var cond=0; while (cond !=1){ $("#DivStage1").fadeIn(1000); $("#DivStage1").delay(6500).fadeOut(500); //8000 $

  • HTTP---RFC Scenario

    Hi All, I have Done HTTP--RFC Scenario and i got the Bellow Error in Receiver RFC CC Receiver channel 'CC_POS_CashJournal_IB' for party '', service 'Sub_ssd_subdev' Error can not instantiate RfcPool caused by: com.sap.aii.af.rfc.RfcAdapterException:

  • Regarding SXMB_MONI

    Dear Friends, I have done simple http to rfc synchronous synchronous scenario in sap xi 3.0 SP09 & now I went to the runtime work bench and in message monitoring I was selected adapter frame work. Then I could see the status is success full from send

  • Record mode " R"

    Hi , Here i have a Write Optimized DSO as EDW layer from which the data is loaded to other DSO 's Now,  i have a record with record mode value ' R' ( reverse posting ) in EDW, I understand that the particular key combination record  will be deleted f