Unicode X type length

Hi
I have requirement for type conversion in unicode project.
I have a struct used in overlay statement
OVERLAY B0004 WITH SREP ONLY REPLSET.
but in unicode only char type structure need to use for ONLY [pattern].
here what should be length of line0, line1.......
or how to convert the hot coded data into Char type variable?
Please help me....
DATA: BEGIN OF REPLSET,
      LINE0(16) TYPE X VALUE '000102030405060708090A0B0C0D0E0F',
      LINE1(16) TYPE X VALUE '101112131415161718191A1B1C1D1E1F',
      LINE2(02) TYPE X VALUE '2227',
      LINE7(01) TYPE X VALUE '7F',
      LINE8(13) TYPE X VALUE '8182838485868788898B8D8E8F',
      LINE9(14) TYPE X VALUE '909192939495969798999B9D9E9F',
      LINEA(11) TYPE X VALUE 'A0A4A6A8A9AAABACADAEAF',
      LINEB(15) TYPE X VALUE 'B0B1B2B3B4B5B6B7B8B9BABBBCBDBE',
      LINED(01) TYPE X VALUE 'DF',
END OF REPLSET.

Can we use like this:
DATA: BEGIN OF REPLSET,
      LINE0(16) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab
VALUE '000102030405060708090A0B0C0D0E0F',
      LINE1(16) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE '101112131415161718191A1B1C1D1E1F',
      LINE2(02) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE '2227',
      LINE7(01) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE '7F',
      LINE8(13) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE '8182838485868788898B8D8E8F',
      LINE9(14) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE '909192939495969798999B9D9E9F',
      LINEA(11) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE 'A0A4A6A8A9AAABACADAEAF',
      LINEB(15) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE 'B0B1B2B3B4B5B6B7B8B9BABBBCBDBE',
      LINED(01) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab VALUE 'DF',
END OF REPLSET.
Do I need to change length here?
please help me

Similar Messages

  • Bigger type length than maximum

    Anyone knows resolutions to problem of:
    "Bigger type length than maximum"?
    ...what's means "ErrorCode =0"?
    Please if you want help me, give me some informations

    Thanks for reply, the java method getErrorCode has given like return the number 0, the code that throws exception is java sql operation(opening and closing of statement and resultSet to executing an INSERT into ORACLE DATABASE)

  • Error : Bigger type length than Maximum

    Hi
    I am using JBOSS Server-with ORACLE 10g-xe(express edition),Thru prepare statement it works well,But thru callable statement it is not working .I am getting the following error
    Bigger type length than Maximum .
    I am using
    jdbc:oracle:thin@host_name:1521:service_name & classes12.jar
    what is the solution?
    by
    balamuralikrishnan.s

    This is a jdbc specific error. Moving to OCI drivers should trash the problem.
    If you aren't able to use OCI drivers, then you should also try to upgrade your jdbc drivers to the newest version. I read about problems with a plus ( + ) in a varchar2 string causing this problem, also I heard stories about blobs, etc. etc. The error is therefore in my opinion a rather generic one that should be described in more detail by Oracle.

  • Help~! - IOexception: Bigger type length than Maximum

    Hi all,
    I've been seeing errors below so often these days when I run my program.
    Anybody has any clue?
    "dberror= Error: java.sql.SQLException: Io exception: Bigger type length than Maximum
    dberror= Error: java.sql.SQLException: Bigger type length than Maximum"
    We are using JDBC thin, oracle8 on Linux.
    Thanks for any help.
    null

    Hi, my columns doesn't have any CLOB datatype.
    Wonder what's the cause...
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Yekesa:
    What is the data type of that column ?. If it is a CLOB column and the size is greater than 32K (approx), I have a seen a simular problem on 8.1.6, Windows NT.<HR></BLOCKQUOTE>
    null

  • TIPS(63) : LONG DATA TYPE의 LENGTH 구하기

    제품 : PL/SQL
    작성날짜 : 1999-04-15
    TIPS(63) : LONG DATA TYPE의 LENGTH 구하기
    =========================================
    PURPOSE
    다음은 function 을 적용할 수 없는 long data type 의 length 를
    구하는 방법을 소개한다.
    Explanation
    Long DataType 에 대해 Length 를 구하려 하는 경우 다음과 같은 Error 가 발생한다.
    SQL> create table TOY
    2 (Toy_ID NUMBER, Description LONG);
    Table created.
    SQL> select LENGTH(Description) from TOY;
    select LENGTH(Description) from TOY
    ERROR at line 1:
    ORA-00932: inconsistent datatypes
    "Inconsistent DataTypes" Error 는 LONG DataType 으로 정의된 Column 에
    Function 을 적용하였기 때문에 발생한다.
    VARCHAR2 Type 을 사용하면 정상 처리할 수 있으나, Oracle7 에서는 VARCHAR2 는
    2,000 Characters 만 저장할 수 있으며, Oracle8 에서는 4,000 Characters 이다.
    Oracle8 에서는 Long Data 를 저장하기 위해 LOB DataType 을 사용할 수 있으며,
    LONG Data Type 은 Oracle7/Oracle8 모두 Support 되므로 LONG Type 에 대해
    Length 를 확인하는 방법을 알아본다.
    Example
    다음은 anonymous PL/SQL Block 을 통해 TOY Table 에서 LONG Column 의
    Length 를 구하는 Script 이다.
    1. Single Record 에 대한 예
    $ vi len_long.sql
    declare
    length_var NUMBER;
    cursor TOY_CURSOR is
    select * from TO;
    toy_val TOY_CURSOR%ROWTYPE;
    begin
    open TOY_CURSOR;
    fetch TOY_CURSOR into toy_val;
    length_var := LENGTH(toy_val.Description);
    DBMS_OUTPUT.PUT_LINE('Length of Description: '||length_var);
    close TOY_CURSOR;
    end;
    SQL> set serveroutput on
    SQL> @len_long
    Length of description : 21
    PL/SQL procedure successfully completed.
    2. Multiple Record 에 대해서는 cursor FOR Loop 를 사용한다.
    $ vi len_long.sql
    declare
    length_var NUMBER;
    cursor TOY_CURSOR is
    select * from TOY;
    toy_val TOY_CURSOR%ROWTYPE;
    begin
    for toy_val in TOY_CURSOR loop
    length_var := LENGTH(toy_val.Description);
    DBMS_OUTPUT.PUT_LINE('ID: '||toy_val.Toy_ID);
    DBMS_OUTPUT.PUT_LINE('Length of Description: '||length_var);
    end loop;
    end;
    SQL> set serveroutput on
    SQL> @len_long
    ID: 1
    Length of Description: 21
    ID: 2
    Length of Description: 27
    PL/SQL procedure successfully completed.
    Reference Document
    ------------------

    Hi Frank,
    I have the exact same scenario where I have huge data coming from DB and its a must that I provide pagination.
    I tried implementing as per the document but the pagination is not working for me too.
    Details of the scenario:
    1. I have a session facade method which takes a searchCriteria (custom criteria) as the input parameter and returns a list of entities.
    a)This is the first method that I call as a default method activity in my taskflow.
    b)The result of this method is dragged and dropped as table in the jsff. (*which created a methodIterator in pageDef unlike the documentation which has accessorIterator*).
    2. I declared 2 class level variables
    a) List<Entity> result: which is set once the method in the (1) above is executed.
    b) long size: which is also set from the method (1) above.
    3. I defined getEntityAll(int index,int range) method which returns List<Entity> as per the index and range using the result (class level variable populated by method in 1)
    4. I defined getEntityAllSize() method which returns the size (class level variable populated by method in 1).
    5. I created the datacontrol on top of the session facade bean.
    6. I made sure to change the DataControlHandler = "oracle.adf.model.adapter.bean.DataFilterHandler"
    7. I've set the rangeSize = 25 in my pagedef.
    Now when I run my page, my default method activity calls the method in (1) above and populates the table, with a scroll bar.
    Once I start scrolling, it calls my method in (1) but it does not call either of the methods (getEntityAll(int index,int range) & getEntityAllSize()) which adds the pagination behavior.
    After this, my table has just 25 rows and further scrolling does not invoke any of the methods from the session bean.
    I'm using jdev : JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923 (11.1.1.4.0).
    Please let me know if I am missing anything.
    Thanks in advance!
    Swapna

  • Change characterestic data type Length

    Hi All,
    Can anyone tell me, how i can change the caracterestic data type length. My characterestic got saved and activated. i can delete and recreate, but i would like to check whether there is any other way.
    Regards,
    Suresh Patipati.

    Hi,
    Unfortunately, a characteristic can be created with a maximum length of 18 characters. The only workaround would be to create an user-defined characteristic of length CHAR18, and then fill it with the first 18 positions of the source field by derivation.
    regards
    Waman

  • Data Type Length --- Urgent

    Hi,
    Can anyone tell me how bits/bytes is one character... Is there any function module to find out the length of a character / string / any other data types in terms of bits/bytes???
    Regards
    Jiku

    Hi Jiku,
    length of a character depends on your system settings, if the system is running on UniCode (2 Byte) or Non UniCode (1 Byte).
    Length of a string: http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb33d9358411d1829f0000e829fbfe/frameset.htm
    Length of other data type look into DESCRIBE syntax.
    Best regards,
      ok
    Message was edited by:
            Oliver Kohl

  • Key Figure data type/length differs in BI and source system

    Hi all.
    It is a strange question, but we need an explanation to our "strange" client. Why many fields which are DEC 13 in source system became CURR 09 in BI? DEC->CURR type switch seems reasonable, but not the length. I guess the shorter numeric field is the less precise it can keep...
    Does SAP give any explanation for that?

    Hi,
         If you are expecting the data to be aggregated in the cube and if the data is loaded by different requests, then in that case the data wouldnot be aggregated.
    EX:  CHAR1   CHAR2    CHAR3   CHAR4     CHAR5    CHAR6    CHAR7    KF1   KF2   KF3
             A               B              C            D        E              F             G          10     20    30
              A               B              C            D        E              F             G          10     20    30
    sUPPOSE IF THE ABOVE 2 ROWS OF DATA ARE GETTING LOADED IN THE SAME REQUEST, then you can expect the data to be aggregated and the o/p of the KFs will be 20, 40 and 60 respectively.
    In case the loading is done with separate requests, then your data will not be aggregated.
    This is becuse in the cube, Request ID (under the Data Package Dimension)    is one of the dimension and this differs when the requests are different.
    Regards
    Sunil

  • Data type & length in SAP side!!

    Hi all,
    i am working in a R/3 -legacy scenario.
    In R/3 side there exist one table called YMD_ARTICLE...
    now i have to make data type based on the 7 fields of that table YMD_ARTICLE..
    and I have given the field name + type(vachar,timestamp,smaal int..etc..)+filed length....in the data type template...
    Now my question is...wat should i give in type ...for the field...
    i min can i use "xsd:string" for every field..... irespective of what given in the template....
    Do we need to declare the lenght,type...for fileds of a DATA TYPE in XI...
    if the DATA type is already there in the R/3 side.....
    Can any one explain me......
    thanks....

    hi,
    >>> i min can i use "xsd:string" for every field..... irespective of what given in the template....
    string can be used to handle other datatypes as well...but try using the same data type as in R/3...
    when u know e.g the value can only be integer then use data type integer... this will also not allow values other than integer to pass...
    hope it helps,
    regards,
    latika.

  • Unicode : From Type X    to     Type C

    Hi ,
    In unicode upgradation from  4.6C to ECC6 I change the declaration  as follows,
    Before Unicode enabling 
    *DATA: BEGIN OF REPLSET,
         LINE0(16) TYPE X VALUE '000102030405060708090A0B0C0D0E0F',
         LINE1(16) TYPE X VALUE '101112131415161718191A1B1C1D1E1F',
         LINE2(02) TYPE X VALUE '2227',
         LINE7(01) TYPE X VALUE '7F',
         LINE8(13) TYPE X VALUE '8182838485868788898B8D8E8F',
         LINE9(14) TYPE X VALUE '909192939495969798999B9D9E9F',
         LINEA(11) TYPE X VALUE 'A0A4A6A8A9AAABACADAEAF',
         LINEB(15) TYPE X VALUE 'B0B1B2B3B4B5B6B7B8B9BABBBCBDBE',
         LINED(01) TYPE X VALUE 'DF',
    *END OF REPLSET.
    After unicode enabling
    DATA: BEGIN OF REPLSET,
          LINE0(16) TYPE c VALUE '000102030405060708090A0B0C0D0E0F',
          LINE1(16) TYPE c VALUE '101112131415161718191A1B1C1D1E1F',
          LINE2(02) TYPE c VALUE '2227',
          LINE7(01) TYPE c VALUE '7F',
          LINE8(13) TYPE c VALUE '8182838485868788898B8D8E8F',
          LINE9(14) TYPE c VALUE '909192939495969798999B9D9E9F',
          LINEA(11) TYPE c VALUE 'A0A4A6A8A9AAABACADAEAF',
          LINEB(15) TYPE c VALUE 'B0B1B2B3B4B5B6B7B8B9BABBBCBDBE',
          LINED(01) TYPE c VALUE 'DF',
    END OF REPLSET.
    your valuable suggestion please

    This seems to work in a Unicode environment:
    DATA: f1 TYPE x,
          f2(2) TYPE c VALUE '00'.
    f2 = f1.
    Rob

  • How to access Target field type, length from DT definition

    I have defined the XSD Type (String, Number, Date..) and the length in the DT for the Target message
    How do I access this info. in the mapping - so I can fill trailing spaces on String data, and zero-fill on Numeric data on the outbound XML MT ?
    Thanks in advance!

    Hi Satish,
    Thanks for this info.
    Exactly - I am trying to avoid Field length maintenance on every field level mapping.
    Currently, I have a  HashMap defined  as follows..
    empFieldLengthsMap = new HashMap();
    // emp field lengths 
    empFieldLengthsMap.put("Record_Type","1");
    empFieldLengthsMap.put("Movement_Type","1");
    empFieldLengthsMap.put("Company_Code","3");
    and then a UDF that yields me the size as follows from the map
    String out = "";
    out =  (String) empFieldLengthsMap.get( targetField );
    if (out == null || out.equals("") ) {
        out = "0";
    return out;
    HOWEVER, I cannot get the target field to input into this UDF!   Any ideas?
    Mustafa
    Edited by: Mustafa Dadawalla on Jul 15, 2010 11:44 AM

  • Unicode X type variable problem

    Hi,
    We are migrating to a Unicode system.
    In non Unicode system we have the following code.
    var1 type x value '0D'.
    replace var1 with ' ' into string1.
    When i am doing uccheck it is giving error 'var1 must be charecter type'.
    how to solve this problem.
    Thanks,
    Koshal

    Hi Koshal,
    1) Use Function module <b>STPU1_HEX_TO_CHAR</b> to convert hex decimal data to character data.
    2) And then use <b>REPLACE</b> statement.
    Thanks,
    Vinay

  • Uploading file - unicode file type gives error

    Hello,
    I am trying to upload an xml file.
    If the file is of ASCii format I can import this file ,but if the file format is changed to unicode or utf-16 I get sax parser error.
    I noticed one thing though,ascii file seems to appear in this format
    <?xml version="1.0" encoding="UTF-8"?>
    <addresses>
    <address>
    <street-name>22 11th ave SW</street-name>
    <city>Dynotopia</city>
    </address>
    </addresses>
    Where as when I change the file format to unicode it appears like this
    ?< ? x m l v e r s i o n = " 1 . 0 " e n c o d i n g = " U T F - 8 " ? >
    < a d d r e s s e s >
    < a d d r e s s >
    < s t r e e t - n a m e > 2 2 1 1 t h a v e S W < / s t r e e t - n a m e >
    < c i t y > D y n o t o p i a < / c i t y >
    < / a d d r e s s >
    < / a d d r e s s e s >
    ?< ? x m l v e r s i o n = " 1 . 0 " e n c o d i n g = " U T F - 8 " ? >
    < a d d r e s s e s >
    < a d d r e s s >
    < s t r e e t - n a m e > 2 2 1 1 t h a v e S W < / s t r e e t - n a m e >
    < c i t y > D y n o t o p i a < / c i t y >
    < / a d d r e s s >
    < / a d d r e s s e s >
    Can some one guide me to automate this process so that my sax processor automatically set itself to the appropriate file format?
    or is it possible at all?

    Thanks DrClap,
    I read the article ( from the link u reffered).
    Here is my problem,
    I am uploading an xml file, here is the code
    if(req.getContentLength() > 0) {
    BufferedReader reader = req.getReader();
    String line = reader.readLine();
    if((line == null) || (line.indexOf(boundary) == -1)) {
    //error generator
    StringBuffer part = new StringBuffer();
    while((line = reader.readLine()) != null) {
    if(line.indexOf(boundary) == -1) {
    part.append(line + "\n");
    } else {
    parts.add(part.toString());
    part = new StringBuffer();
    now my guess is when we convert an ASCii type to string above it works fine,but when the type is otherthen ASCii the conversion of file to string screws up...
    can u pls guide me to make it work so it doesn't.

  • Dynamic SQL on Unicode data types

    Hello,
    We're in the process of converting our database to support Unicode. So, converted the tables to NCHAR/NCHAR2 from CHAR/VARCHAR2. Now, dealing with stored procedures. Here's a stored procedure that's causing issue:(I am just giving the part of the code that's causing issue)
    create procedure xx_xxxxx(
    v_sql_txt nvarchar2(2000),
    P_CV1 IN OUT COM_DEFS.CV_TYP) -- CV_TYP is a ref cursor type declared in COM_DEFS package
    as
    begin
    OPEN p_cv1 FOR v_sql_txt1;
    end;
    v_sql_txt is built my the application and getting passed to the stored procedure.
    It gives an error PLS-00382: expression is of wrong type.
    After some digging, I found that NVARCHAR2/NCHAR types are not supported in OPEN .. FOR.
    Could someone of you suggest an alternative to this?
    Thanks
    M.

    Apparently you don't understand the difference between characterset and national character and you are heading in a completely incorrect direction.
    You should change the characterset of the database NOT the national characterset.
    Consequently
    - you should NOT change all CHAR to NCHAR and VARCHAR2 to NVARCHAR2
    - you should change the NLS_LENGTH_SEMANTICS of the database to CHARACTER (as opposed to BYTE)
    Sybrand Bakker
    Senior Oracle DBA

  • Error ocurred during capture: Bigger type length than Maximum

    Hi,
    I am working on a migration project from mysql 5.1 to oracle 9i. I have got everything setup as mentioned in the installation file (jdk1.5.0_22, mysql-connector-java-5.0.4, sql developer 1.5.3). I have tried the latest version 1.5.5 and 2.1 as well which doesn't seem to work either.
    I have done the suggested changes in the forum specifically talking about this issue. They relate it to the jdbc.library not pointing to the current directory where sqldeveloper is installed but this is without the jdk so I guess that should not be case for this error. I have tested with all possible combinations; like with jdk and pointing the jdbc.library to the directory where sqldeveloper is installed. I have also tried the ORACLE_HOME = %CD%. I really need help on this one. I am quite not able to understand the root cause of this error and if it relates to jdbc, I have got the proper versions set.
    Any ideas would be really appreciated.
    I have attached the current property settings of the installation....
    java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob     sun.awt.windows.WPrinterJob
    java.class.path     ..\..\ide\lib\ide-boot.jar
    java.class.version     49.0
    java.endorsed.dirs     D:\Program Files\Java\jdk1.5.0_22\jre\lib\endorsed
    java.ext.dirs     D:\Program Files\Java\jdk1.5.0_22\jre\lib\ext
    java.home     D:\Program Files\Java\jdk1.5.0_22\jre
    java.io.tmpdir     C:\Temp\1\
    java.library.path     C:\Program Files\sqldeveloper;.;C:\WINDOWS\system32;C:\WINDOWS;E:\oracle\ora90\bin;E:\oracle\ora92\jre\1.4.2\bin\client;E:\oracle\ora92\jre\1.4.2\bin;E:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;E:\oracle\ora90IDS\bin;E:\oracle\ora90IDS\jre\1.3.1\bin;E:\oracle\ora90IDS\jre\1.4.0\bin;C:\Program Files\Oracle\jre\1.1.8\bin;E:\oracle\ora102\bin;E:\ODI\OStore\bin;C:\Program Files\Windows Resource Kits\Tools\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\HITACHI\DynamicLinkManager\bin;C:\Program Files\HITACHI\DynamicLinkManager\lib;C:\Program Files\Common Files\Hitachi;e:\util;E:\Program Files\IBM\Director\bin;C:\Program Files\Common Files\IBM\ICC\cimom\bin;C:\Program Files\Windows Imaging\
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.runtime.name     Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version     1.5.0_22-b03
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.5
    java.util.logging.config.file     logging.conf
    java.vendor     Sun Microsystems Inc.
    java.vendor.url     http://java.sun.com/
    java.vendor.url.bug     http://java.sun.com/cgi-bin/bugreport.cgi
    java.version     1.5.0_22
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Sun Microsystems Inc.
    java.vm.version     1.5.0_22-b03
    jdbc.driver.home     /E:/oracle/ora102/
    jdbc.library     /E:/oracle/ora102/jdbc/lib/ojdbc14.jar
    line.separator     \r\n
    oracle.home     C:\Program Files\sqldeveloper
    oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG     true
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    orai18n.library     /E:/oracle/ora102/jlib/orai18n.jar
    os.arch     x86
    os.name     Windows 2003
    os.version     5.2
    path.separator     ;
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model     32
    sun.boot.class.path     D:\Program Files\Java\jdk1.5.0_22\jre\lib\rt.jar;D:\Program Files\Java\jdk1.5.0_22\jre\lib\i18n.jar;D:\Program Files\Java\jdk1.5.0_22\jre\lib\sunrsasign.jar;D:\Program Files\Java\jdk1.5.0_22\jre\lib\jsse.jar;D:\Program Files\Java\jdk1.5.0_22\jre\lib\jce.jar;D:\Program Files\Java\jdk1.5.0_22\jre\lib\charsets.jar;D:\Program Files\Java\jdk1.5.0_22\jre\classes
    sun.boot.library.path     D:\Program Files\Java\jdk1.5.0_22\jre\bin
    sun.cpu.endian     little
    sun.cpu.isalist     
    sun.desktop     windows
    sun.io.unicode.encoding     UnicodeLittle
    sun.java2d.ddoffscreen     false
    sun.jnu.encoding     Cp1252
    sun.management.compiler     HotSpot Client Compiler
    sun.os.patch.level     Service Pack 2

    Elizabeth,
    I'm not in the exact same circumstance (doing a migration) but getting the exact same error while trying to use SQL Developer to retrieve MySQL data (select * from table@mysql_link) using the DG4ODBC gateway (Oracle Database Gateway for ODBC).
    It sounds like you've found some forum threads here that talk about this error. That's more than I've been able to find, with the exception of yours. Would you mind pointing me to one or two of those? A search here only turns up your thread for me. Thanks!
    Earl

Maybe you are looking for

  • Print preview and print button action

    Hi, This is first time when I am configuring any action in WebUi. I am trying to configure buttons on BT116H_SRVO. Clicking on "Print Preview" shows 'No manual print actions found' and click on "print' throws some exception. I tried to check action c

  • Access denied listing with cfdirectory when remote

    Hello people, I working with cfdirectory to verify the contents of a local directory (this is for an intranet running on a mac). It works ok when I trest it in the local environment but it fails when I run the script from the remote server. I'm a bit

  • How to change NLS parameters in Oracle XE?

    Hi I have to change some parameters in database using Oracle XE server but I don't know how to do it. I must change these parameters: NLS_CHARACTERSET NLS_NCHAR_CHARACTERSET How to do it? Thanks for help.

  • BPM Question (File - XI - File )

    I have a typical situation where I like to make use of the BPM functionality. I have 7 different Files( FileA,FileB,FileC,FileD,FileE,FileF,FIleG) I need to start BPM when File A arrives. Aftger FileA arrives, I need to get all remaining 6 files. I n

  • How to remove the selected owned schema in a database user in security

    Hi all, I am using SQL Server mgmt studio with 2005 db. I accidentally clicked the owned schema while in a database user in security. When I went back to remove the check boxes they were greyed out. How do I remove them? Regards, anjali