Inconsistency while storing Spanish Characters in Devl Vs Prod Databases:

Hi there,
We have setup dev and prod database instances with the same NLS Characterset settings,
However, when a Spanish character is saved in the devl instance,
the character is saved to the database correctly.
However the same character when saved in prod, is stored as ampersand, pound, 0255; not á.
Although the character displays correctly via sqldeveloper as well as in the reports,
any ideas as to why there is inconsistency in the behavior.
SQL> select instance_name from V$instance;
INSTANCE_NAME
utf8devl
SQL> select * from nls_database_parameters
where parameter like '%CHARACTERSET';
PARAMETER                VALUE
NLS_CHARACTERSET          AL32UTF8
NLS_NCHAR_CHARACTERSET          AL16UTF16
SQL> desc tblpersoninfo
Name Null? Type
ACTIVE VARCHAR2(1)
ID NOT NULL NUMBER(9)
LAST_NAME VARCHAR2(255)
FIRST_NAME VARCHAR2(255)
MI VARCHAR2(12)
SQL>select last_name from tblpersoninfo where id=2;
LAST_NAME
xxxxx     á
SQL> select instance_name from V$instance;
INSTANCE_NAME
utf8prod
SQL> select * from nls_database_parameters
where parameter like '%CHARACTERSET';
PARAMETER                VALUE
NLS_CHARACTERSET          AL32UTF8
NLS_NCHAR_CHARACTERSET          AL16UTF16
SQL>select mi from tblpersoninfo where id=2;
MI
á
(although the character renders properly here, it is saved as ampersand, pound, 0255;)
SQL>select length(mi) from tblpersoninfo where id=2;
LENGTH(MI)
6
when I was expecting 1 as the result for the above query.
best regards,
NK
Edited by: NK on Jan 13, 2012 10:03 AM
Edited by: NK on Jan 13, 2012 10:04 AM

NK wrote:
The programmer who has reported this problem is using the same application just switching between the 2 environments;
á Typ=1 Len=6 CharacterSet=AL32UTF8: 26,23,32,32,35,3bI guess Srini is correct in asking for the process in which this is stored. E.g. What does above "just switching" actually involve?
Above characters & #225 ; implies "html character entities" input, which means prod does not behave same as dev. (Oracle would not, by itself, cause that kind of "conversion".)
Investigate input at client side (e.g. web server form).
Note, to clarify for readers of this thread: the rendering of the html entity to character glyph (á) occurs in forum post.
Edit:
added a missing and crucial "not"
Edited by: orafad on Jan 13, 2012 8:31 PM
Edited by: orafad on Jan 13, 2012 8:33 PM
Edited by: orafad on Jan 13, 2012 9:19 PM

Similar Messages

  • Spanish characters getting garbled while executing command using Java code

    Hi,
    I try to execute a command using java code. output of the command contains spanish characters. Few of these characters getting garbled after the command execution.
    Runtime r = Runtime.getRuntime();
              Process p = null;
    String pgm="ipconfig /all";
              try
                        p = r.exec(pgm);
    BufferedReader br=new BufferedReader(new InputStreamReader
                                  (p.getInputStream()));
    while((val = br.readLine()) != null){ System.out.println(val);
              catch (Exception e)
                        return (null);
    I tried to run the code using -Duser.language=es -Duser.region=ES -Dfile.encoding=Cp850, but this did nt help. I could see the outputs properly in command prompt,
    If i redirect the output to a text file , it is getting garbled,
    Please let me know to solve this issue.

    884543 wrote:
    Hi,
    I try to execute a command using java code. output of the command contains spanish characters. Few of these characters getting garbled after the command execution.
    Runtime r = Runtime.getRuntime();
              Process p = null;
    String pgm="ipconfig /all";
              try
                        p = r.exec(pgm);
    BufferedReader br=new BufferedReader(new InputStreamReader
                                  (p.getInputStream()));
    while((val = br.readLine()) != null){ System.out.println(val);
              catch (Exception e)
                        return (null);
    I tried to run the code using -Duser.language=es -Duser.region=ES -Dfile.encoding=Cp850, but this did nt help. I could see the outputs properly in command prompt,
    If i redirect the output to a text file , it is getting garbled,
    Please let me know to solve this issue.Set the character set to UTF-8 to your InputStreamReader, for More details on usage refer the java api :
    http://download.oracle.com/javase/6/docs/api/java/io/InputStreamReader.html

  • Encoding Spanish Characters

    I've read that AMERICAN_AMERICA.AR8MSWIN1256 supports both Arabic and Latin.
    When I insert data from .NET to Oracle, accented spanish characters are being replaced by question marks.
    Does AMERICAN_AMERICA.AR8MSWIN1256 support spanish or I'm missing something in my configuration?!
    Thank you in advance for your cooperation!

    Probably UTF-8 (which would be the AL32UTF8 or UTF8 character set depending on the Oracle version). That is a variable width character set, so one character will be stored in between 1 and 4 bytes. That has implications for data storage as well as for how you go about declaring fields since VARCHAR2(10) allocates, by default 10 bytes, which would be enough for between 2 and 10 characters depending on the characters you enter. In 9i and later, if memory serves, you can set NLS_LENGTH_SEMANTICS to CHAR from BYTE to change that default so that a VARCHAR2(10) allocates 10 characters of storage space. That will only affect new table definitions, though, it won't change existing definitions.
    Justin

  • Embedding Spanish characters

    Hey, I'm building a bi-lingual tool (english and spanish)
    that uses all dynamic text fields. Problem: special Spanish
    characters are being dropped, even though I have specified them
    within the fields' embed-character sets.
    The piece is built as such: all copy is stored as nodes on
    two data objects – one english, one spanish. Texts are then
    populated into the dynamic text fields from the active language's
    object. I have specified
    "ÁáÉéÍíÓóÚúÜüÑñ¡¿"
    as characters to embed. However, the special characters are
    displaying incorrectly (or not at all). For example: "Español"
    displays as "Espaol". I also ran into a scenario where the "í"
    gylph (as in "Sí") displays as a copyright symbol (©).
    If anyone has any insight on this, I'd GREATLY appreciate
    it.

    How comes the text into the movies? If it's loaded from a
    textfile, make sure it's saved in UTF-8/Unicode format. In xml
    files, you can include this also in the xml header, like this:
    <?xml version="1.0" encoding="UTF-8"?>
    but it's more important that the text is saved in the right
    format, then Flash should display it right.
    Here's more on that:
    http://www.adobe.com/support/flash/languages/flashlocalization/.
    hth,
    blemmo

  • Error while storing

    good day all i am facing problem while storing more then 4000 char in a table whose datatype is varchar2(4000)
    we use long datatype to solve this however while storing and retreiving we are facing the problem can any one assist ,
    appreciate your anticipation with your earliest
    Regards

    Obviously, you can't store more than 4000 characters in a varchar2(4000) column. Storing your data in a LONG column will solve this, though I'd highly recommend using CLOB rather than LONG. Oracle will probably drop the LONG type at some point since CLOB is so much nicer.
    Can you provide the precise error you're getting (including the ORA-xxxxx error number)? If you cuold post the code that's causing the error as well, that would be helpful.
    Justin

  • HTML + using spanish characters

    Hi
    If this is a dumb question - forgive me.
    Note this is for a site that will be in English & Spansih
    (translated pages
    in Spanish)
    But if I want to include spanish characters on a site do I
    need to replace
    each spanish character with ascii code or is there another
    way to get the
    characters to display
    e.g.
    resúmenes - do i have to enter it into the html as
    res&uacute;menes
    also
    When I view the pages on my pc the spanish characters display
    correctly.
    Once the pages are uploaded the spanish characters do not
    display - why
    would this happen?
    Thanks
    B
    www.visit-the-coqui.com/
    If you are thinking of a vacation to Puerto Rico
    http://gadgetgrapevine.blogspot.com
    Latest gadget and other news here

    Thanks david for the explaination.
    So now I need to figure out how I can save my html as utf-8
    without using
    notepad (I don't have dreamweaver and have used up my trial
    period).
    Any one know of any other way of creating a utf-8 html file?
    thanks
    B
    www.visit-the-coqui.com/
    If you are thinking of a vacation to Puerto Rico
    http://gadgetgrapevine.blogspot.com
    Latest gadget and other news here
    "David Powers" <[email protected]> wrote in message
    news:[email protected]...
    >B wrote:
    >> could you explain the difference in 'laymans terms'
    >
    > UTF-8 (Unicode) is designed to handle virtually all
    writing systems,
    > including Arabic, Japanese, Chinese - and English.
    ISO-8859-1 is Western
    > European encoding, which handles only those characters
    used in Western
    > European languages. ISO-8859-1 actually supports the
    accented characters
    > used in Spanish, but older browsers weren't always
    capable of displaying
    > them, which led to the use of HTML entities, such as
    &ntilde;.
    >
    > If you select ISO-8859-1 (Western European) in
    Dreamweaver, it
    > automatically converts all accented characters, such as
    those used in
    > Spanish, into entities, which makes the code very
    difficult to read. If
    > you select UTF-8, the accented characters are preserved.
    Since English
    > doesn't have any accented characters, the encoding is
    identical in
    > ISO-8859-1 and UTF-8.
    >
    > If you're working with a database, though, it's very
    important not to mix
    > the two types of encoding for data that uses accented
    characters. If you
    > do, the accented characters will be garbled.
    >
    >> also I posted another ? regarding a BOM warning that
    I now get after
    >> saving as utf-8 - is this an issue?
    >
    > I saw that, but didn't reply because you said you used
    Notepad. I have no
    > idea how Notepad handles the BOM (if I remember
    correctly, it stands for
    > Byte Order Mark). As the validation warning told you,
    older browsers can't
    > handle the BOM, so it's best to omit it. Dreamweaver
    Preferences let you
    > determine whether to add the BOM or leave it out of
    UTF-8 pages. By
    > default, Dreamweaver omits the BOM.
    >
    > --
    > David Powers, Adobe Community Expert
    > Author, "The Essential Guide to Dreamweaver CS3"
    (friends of ED)
    > Author, "PHP Solutions" (friends of ED)
    >
    http://foundationphp.com/

  • IPlanet setting to properly display Spanish characters in PDF Document?

    I have a bilingual PDF document (Spanish and English). The document displays correctly on multiple other systems (Unix/Weblogic, NT4, IIS), but when I move it up to my server that is running iPlanet, the Spanish characters do not display properly. Since it displays fine in other environments, I am guessing it is a setting that needs to be changed in iPlanet and not something that needs to be changed with my PDF document. Any suggestions?
    Thanks so much in advance.
    Tracey

    Hi,
    I am not sure if you are referring to the users creating your forms or the users using your forms.
    In terms of typing charactes if the keyboard is set so that you can type spanish characters and the font you are in has those characters then they will be entered into the form, both when creating and filling of the form.
    There is nothing specific that needs to be done to the form to allow this, it just accepts the characters that the OS passes to it from the keyboard.
    (Point of note: if you are specifying a font to be used this would need to contain the characters that you want to use).
    If I have misunderstood the problem then I apologise and if you provide more detail I can investigate further.
    Regards
    Malcolm

  • Special Spanish Characters - What do i need?

    I am using Photoshop 7 to create graphics for a training series that is being translated into Spanish. I am using FCP 6.03 on a G5. What do I need from Adobe in order to create the graphics in the Spanish language? i only have access to some of the special characters of the language using the Spanish keyboard - I can show a list of the characters, but how do I use the unicode IDs of the characters in Photoshop to display the special characters? I can get the upside down ? and !, and the n with the tilde; the accented vowels are not part of the keyboard combinations.

    Scroll to the bottom for Mac key combinations:
    http://www.spanishnewyork.com/spanish-characters.html

  • Allowing Spanish characters in PDF forms

    I'd like to develop a PDF form primarily for Spanish speaking users. Is it possible to allow Spanish characters in a PDF form? I know setting the "default locale" in LC has nothing to do with this, so is it a matter of system settings (ie. keyboard settings) on the user's machine?
    Has anyone every tried this before?
    Thanks

    Hi,
    I am not sure if you are referring to the users creating your forms or the users using your forms.
    In terms of typing charactes if the keyboard is set so that you can type spanish characters and the font you are in has those characters then they will be entered into the form, both when creating and filling of the form.
    There is nothing specific that needs to be done to the form to allow this, it just accepts the characters that the OS passes to it from the keyboard.
    (Point of note: if you are specifying a font to be used this would need to contain the characters that you want to use).
    If I have misunderstood the problem then I apologise and if you provide more detail I can investigate further.
    Regards
    Malcolm

  • Support for English and Spanish Characters

    I have created a database with character set WE8iso8859P1. Some of my tables that I imported from MS Access Database using ODBC contain English as well as Spanish characters. When I select the same from the database I just get ? for the non-English characters. What should I do to see the Spanish characters as well?

    In the timeline, next to the audio (on the left) is a small drop down box which lets you set the language for the track. You'll see 'En' in both of them at the moment, and you need to change the Spanish one to be for Spanish. You should then be able to complete the build.

  • EPMA dimension import issue with spanish characters

    We are using special characters for spanish words, like the word Español.
    When this was imported into EPMA using the Import Profile and importing a flat file, EPMA added the alias member as espan then showed a square box and then the l. Then, when deploying the app, no errors recorded in EPMA but planning showed errors since SQL query could not deal with this strange character (the square box symbol) in its query. When I manually change the member in the dimension library to Español, then the app deploys. So my relational database clearly accepts the characters.
    So, the problem is in the Import of the text file when it has the special character ñ or other spanish characters with the accent marks or tildes. Is there something I need to do when importing a file with this character or other spanish language special characters?
    Thanks
    using V11.1.1.3 EPMA with weblogic
    Jeff

    Hi!
    We have the same problem. Please somebody could help us?
    Thanks in advance!
    Analía

  • Problem with spanish characters

    Hello
    I am using an existing and proven app written in visual foxpro with a recently installed Oracle11g database (have done this before without problems)
    I am using Microsoft ODBC for Oracle and have no possibility of changing this. (always used this without problems)
    If I insert a string in in a fixed length char field of the same length of the string (say char(30)) IF THE STRING DOES NOT HAVE SPECIAL CHARACTERS, everything goes as usual. However, if the string contains some spanish language chars (ó, é, á, ñ) the insert fails indicating that the string is too long. I suspect "somewhere" this characters are encoded in double-byte instead of single-byte.
    My question is, which is the Oracle setting that allows/prevents this? I need special characters encoded in 1 byte. Language is Spanish.
    Some settings that the Oracle DBA passed to me are
    NLS_CHARACTERSET = AL32UTF8
    NLS_NCHAR_CHARACTERSET= AL16UTF16
    Any help will be appreciated, thanks!

    In the database character set AL23UTF8 (NLS_CHARACTERSET=AL23UTF8), accented Spanish characters occupy 2 bytes each. This cannot be changed.
    Two possible solutions:
    -- recreate the database using the character set WE8MSWIN1252
    -- redefine the column from CHAR(30), which usually by default means CHAR(30 BYTE), to CHAR(30 CHAR). This means no more than 30 characters but up to 120 bytes (in AL32UTF8).
    If you run your application with NLS_LANG=.WE8MSWIN1252 and you do not use byte-oriented SQL functions such as SUBSTRB, INSTRB, or LENGTHB, you will most probably see no functional difference between single-byte storage and multibyte storage of Spanish characters. On the client side, these characters will be single-byte.
    -- Sergiusz

  • How can I get the Spanish characters for my N97

    I need the spanish characters so I can send SMS in spanish...

    To get the accented letters, hold the Sym key down and repeated press the "base" letter until you see the character you want.
    Example:  Sym & "n" results in "ñ", etc.

  • JNDI : connection problem while storing data more than one records

    I am persisting data into the MSSQL Server 2005 database using the JNDI lookup. I can insert the single record at a time, but when I ran the test program for 10 or 20 records i am getting the following exception on Jboss
    Configuration details : JBoss, Spring, MSSQL server 2005, Jdk 5
    JNDI mapping from JBOSS
    <?xml version="1.0" encoding="UTF-8"?>
    <datasources>
    <local-tx-datasource>
    <jndi-name>jdbc/myjndi</jndi-name>
    <!-- allows DS to be accessed remotely -->
    <use-java-context>false</use-java-context>
         <connection-url>jdbc:inetdae7:localhost:1434?database=myDB&secureLevel=0</connection-url>
         <driver-class>com.inet.tds.TdsDriver</driver-class>
         <user-name>sa</user-name>
         <password>admin123</password>
    <min-pool-size>5</min-pool-size>
    <max-pool-size>50</max-pool-size>
    <metadata>
         <type-mapping>MS SQLSERVER2000</type-mapping>
    </metadata>
    </local-tx-datasource>
    </datasources>
    Exception :
    14:07:06,812 INFO [myMDB] Exception while Storing Event in Database : Could not get JDBC Connection; nested exception is org.jboss.util.Neste
    dSQLException: Could not create connection; - nested throwable: (com.inet.tds.r: java.net.SocketExceptionjava.net.SocketException: Connection reset); - neste
    d throwable: (org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (com.inet.tds.r: java.net.SocketExceptionjava.net.S
    ocketException: Connection reset))
    14:07:06,812 INFO [STDOUT] org.jboss.util.NestedSQLException: Could not create connection; - nested throwable: (com.inet.tds.r: java.net.SocketExceptionjava
    .net.SocketException: Connection reset); - nested throwable: (org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (co
    m.inet.tds.r: java.net.SocketExceptionjava.net.SocketException: Connection reset))
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:107)
    14:07:06,812 INFO [STDOUT] at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:112)
    14:07:06,812 INFO [STDOUT] at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:77)
    14:07:06,812 INFO [STDOUT] at org.springframework.orm.ibatis.SqlMapClientTemplate.execute(SqlMapClientTemplate.java:177)
    14:07:06,812 INFO [STDOUT] at org.springframework.orm.ibatis.SqlMapClientTemplate.insert(SqlMapClientTemplate.java:356)
    14:07:06,812 INFO [STDOUT] at com.org.project.gen.MyDAOImpl.insert(MyDAOImpl.java:25)
    14:07:06,812 INFO [STDOUT] at com.org.project.geo.MyTabletDAO.addEvent(MyTabletDAO.java:137)
    14:07:06,812 INFO [STDOUT] at com.org.project.mdb.myMDB.onMessage(myMDB.java:72)
    14:07:06,812 INFO [STDOUT] at sun.reflect.GeneratedMethodAccessor68.invoke(Unknown Source)
    14:07:06,812 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    14:07:06,812 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)
    14:07:06,812 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:475)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:87)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:94)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:389)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:873)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:1090)
    14:07:06,812 INFO [STDOUT] at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1392)
    14:07:06,812 INFO [STDOUT] at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:256)
    14:07:06,812 INFO [STDOUT] at com.tibco.tibjms.TibjmsSession._submit(TibjmsSession.java:3567)
    14:07:06,812 INFO [STDOUT] at com.tibco.tibjms.TibjmsSession._dispatchAsyncMessage(TibjmsSession.java:1963)
    14:07:06,812 INFO [STDOUT] at com.tibco.tibjms.TibjmsSession._run(TibjmsSession.java:3054)
    14:07:06,812 INFO [STDOUT] at com.tibco.tibjms.TibjmsSession.run(TibjmsSession.java:4204)
    14:07:06,812 INFO [STDOUT] at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
    14:07:06,812 INFO [STDOUT] at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
    14:07:06,812 INFO [STDOUT] at java.lang.Thread.run(Thread.java:595)
    14:07:06,812 INFO [STDOUT] Caused by: org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (com.inet.tds.r: java.net.
    SocketExceptionjava.net.SocketException: Connection reset)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.createManagedConnection(LocalManagedConnectionFactory.
    java:161)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.InternalManagedConnectionPool.createConnectionEventListener(InternalManagedConnection
    Pool.java:508)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.InternalManagedConnectionPool.getConnection(InternalManagedConnectionPool.java:207)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.JBossManagedConnectionPool$BasePool.getConnection(JBossManagedConnectionPool.java:534
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.BaseConnectionManager2.getManagedConnection(BaseConnectionManager2.java:395)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.TxConnectionManager.getManagedConnection(TxConnectionManager.java:297)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateConnection(BaseConnectionManager2.java:447)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.connectionmanager.BaseConnectionManager2$ConnectionManagerProxy.allocateConnection(BaseConnectionManage
    r2.java:874)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:103)
    14:07:06,812 INFO [STDOUT] ... 33 more
    14:07:06,812 INFO [STDOUT] Caused by: com.inet.tds.r: java.net.SocketExceptionjava.net.SocketException: Connection reset
    14:07:06,812 INFO [STDOUT] at com.inet.tds.k.createSQLException(Unknown Source)
    14:07:06,812 INFO [STDOUT] at com.inet.tds.TdsConnection.a(Unknown Source)
    14:07:06,812 INFO [STDOUT] at com.inet.tds.TdsConnection.a(Unknown Source)
    14:07:06,812 INFO [STDOUT] at com.inet.tds.TdsConnection.<init>(Unknown Source)
    14:07:06,812 INFO [STDOUT] at com.inet.tds.q.<init>(Unknown Source)
    14:07:06,812 INFO [STDOUT] at com.inet.tds.k.createConnection(Unknown Source)
    14:07:06,812 INFO [STDOUT] at com.inet.tds.TdsDriver.connect(Unknown Source)
    14:07:06,812 INFO [STDOUT] at org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.createManagedConnection(LocalManagedConnectionFactory.
    java:151)
    14:07:06,812 INFO [STDOUT] ... 41 more

    Hi Subin,
    You can try couple of things.
    If your data is less than 32767, you can pass it to stored procedure and change it to clob type like
    PROCEDURE CLOBQUERY
         Param     IN     CLOB,
    and you can call Procedure
    EXECUTE CLOBQUERY '[Param.1]'
    If your data is around than 1000000(32767*32), you can break the data in length of 32767 and pass it to param 1 to 32 like
    EXECUTE CLOBQUERY '[Param.1][Param.2][Param.3]..[Param.32]'
    Finally you can try to update jdbc drive.
    check the link Link: [JDBC Limitation|http://confluence.atlassian.com/display/JIRA/UsingOracle10gdriverstosolvethe4000character+limitation]

  • How to type spanish characters

    Have Ideapad S210. Does anyone know how to type spanish characters.  I have regular USA keyboard.  Thanks.  
    Solved!
    Go to Solution.

    Which windows ?
    normally you go in control panel and find "language" to add new language for keyboard

Maybe you are looking for

  • How can I restore an old iPhone backup from Time Machine?

    Hi there, I lost my iPhone 4S but have a extra iPhone 4 (used for travel) that I would like to restore the 4S backup to. The problem is that the backup of my 4S has somehow disappeared from itunes and the only one that shows up is the iPhone 4 backup

  • Инсталляция BOE XI 3.1 останавливается на отметке в 57%

    Я пытаюсь поставить Business Objects Enterprise на сервер с SuSE 11.1, но процесс инсталляции всё время останавливается на отметке в 57%. Я ставлю новый mysql север. Он поднимается, равно как и CMS c SIA. Данная проблема встречается как при клиентско

  • IDOC ADAPTER Issue, some meta data loads, some doesn't

    Hey all, I just started trying to setup the IDOC adapter connection between our R/3 system and our XI system. I decided to try and pull in some meta data via IDX2 to start. The weird thing is that I get some IDOC structures successfully, but not othe

  • How can I free RAM after running labview vi

     I am trying to acquire 7 channels of data for 60 secs at 44100 Hz using a PCI-6259 card and LabVIEW.  I am using the DAQmx Read polymorphic vi to acquire the data and the 'Write to Spreadsheet File' VI to write it.  When I run the program for the fi

  • Strange things with checkbox

    Hi! I have a strange problem: In liveCycle Designer ES 8.2 I have on Master Page checkbox "mycheckbox". My code: if(mycheckbox.rawValue == "0")     myPage.presence = "visible"; else if(mycheckbox.rawValue == "1")     myPage.presence = "hidden"; When