-10003 error at SXCI_Scan_Config

I'm trying to do a low-level SCXI multichannel acquisition using the following hardware:
PXI 1010 chassis (combined PXI & SCXI)
PXI 6030E in slot 8 (communicating with the SCXI)
1 1021 SCXI module in the first slot
When I call SCXI_SCAN_Config to prepare the daq, I get a -10003 error (invalid parameter value). I have checked and rechecked the values and changed them to every conceivable value, but the error remains. I have included a vi, which should work, but doens't. Does anyone has an exlanation?
One thing I have also found, which might be related: when I configure the NIDAQ-DLL call, all the parameters are set to I16, but some should be arrays. I have tried both.
Thanks
Attachments:
Low_level_SCXI_AI_NI_POST.vi ‏29 KB

Walter,
I took a look at the VI you attached, and I think I have located the problem. If you configure the Call Library Function Node for SCXI_SCAN_Setup(), the DAQboard and modeFlag parameters are being passed as "Pointer to Value", but they should be passed as "Value". I think this should take care of the problem.
Good luck with your application.
Spencer S.

Similar Messages

  • Export fails with 904 and 10003 errors

    I have Oracle 8i on Windows 2000. Windows 2000 is sp3 and 8i is 8.1.6. patched with 8.1.6.3.0 and 8.1.3.8. I have 5 servers with the same configuration using the exact same downloaded patches. One server is a test server.
    Two of the servers are running the database perfectly. Three others cannot export sucessfully. All exports are done in WE8IS08859P1
    First I export the entire database. It starts to export table definitions,profiles, user definitions...... successfully until it reaches
    about to export system's tables via conventional path...
    .exporting table DEF$_AQCALL 0 rows exported
    EXP_00008: ORACLE error 904 encountered
    ORA_00904: Invalid column name
    from then on I get
    EXP_00008: ORACLE error 1003 encountered
    ORA-01003: no statement parsed
    I have tried to redo the patches. The Oracle Installer tells me that the patch has already run and will not reapply it. I copy all of the required .dll's, .exe's and whatever again. I reran catalog.sql and catproc.sql I run describe dbms_java and get a long package description. When I try to run create or replace java system again (the last step of the second patch), it just hangs.
    I have used "Beyond Compare 2" to compare the BIN folders of working and non-working databases. I find that some of the .dll's were slightly different sizes. I don't understand that - I didn't think that the sizes would change. I recopied the .dll's from the working server to the failing test server - no difference. I checked every object that the patch has you copy again and all were correct. - the export still fails.
    Every forum I have tried tells me to run catalog.sql and catproc.sql to correct this but it doesn't work.
    I would appreciate and more suggestions please!

    First of all, you are talking to a novice Oracle person. No one here is an expert. If I sound stupid - I am!
    Yes, they are exactly the same. This is what I get on the bad server and the good server
    Path=D:\Oracle\Ora81\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:\WINNT\system32
    ;C:\WINNT;C:\WINNT\System32\Wbem;D:\Oracle\Ora81\orb\bin
    I don't quite see a version here other than the 1.1.7 but it is the same on the good and bad server.
    I am sorry to say, I don't know what recycling the database is so no, I didn't.
    Thanks for taking another stab at helping!

  • Error message 10003

    We have been syncing two Ipods to one computer for several months. Just recently, ITunes will not open when one of the two users is logged on and displays the error message 10003. I reinstalled but it still won't open. When the Administrator is logged on, there are no problems.

    Hi Kristi,
    unfortunately, no. I can not use the high level LabView VI's, because I need the pointer to the AI double buffer. The only way to get this pointer is to define it through NIDAQ DLL calls. As I can't combine the higher level VI's (which are Task ID orientated) and low level NIDAQ-DLL calls (which are device numer orientated) I am forced to set up my entire acquisition in low level DLL calls. It's a pity that NI chose to use the LVDAQ wrapper DLL for their NIDAQ calls, otherwise a hybride approach would have been possible.
    You may ask why I need the pointer to the acuisition buffer. I need to read a segment of data every N samples, but also need that data in a circular buffer which will be something like 5N in size. I
    is possible to use high level VI's, but that means I would have to create, fill and maintain my own circular buffer. This would mean extra copies of data and extra processor capacity, when all I have to do now is keep track where the data is written in the acquisition buffer en read the required segment.
    So, sorry, we can't work around the problem. But I assume there has to be a logical explanation why I get the -10003 error.
    Walter

  • Iplimage to picture control

    Dear Guys,
    While integration of opencv libraries in LabVIEW i had struck with this.. I can able to display the processed images in the window handle. i want to display it on the same iplimage(opencv image) to .NET Picture control or LabVIEW Picture in the front panel.. How can i do this. Can someone help me to sort out this issue...
    Waiting for your reply.
    Sasi.
    Certified LabVIEW Associate Developer
    If you can DREAM it, You can DO it - Walt Disney

    Hi
     You can convert IplImage to Bitmap image to show in .Net Control or Convert IplImage to 2D array to display on to the Picture control of labview.
    May this code will help you .
    #include "extcode.h"
    #include "cv.h" //main OpenCV header
    #include "highgui.h" //GUI header
    #pragma pack(1)
    /*typedef struct {
    uint8_t v1;
    uint8_t v2;
    uint8_t v3;
    } TD2;
    typedef struct {
    int32_t dimSizes[2];
    TD2 Cluster[1];
    } TD1;
    typedef TD1 **TD1Hdl;*/
    typedef struct
    char status;
    int code;
    uChar *source;
    } er;
    typedef struct {
    int32_t dimSizes[2];
    uint32_t elt[1];
    } TD1;
    typedef TD1 **TD1Hdl;
    #include "lv_epilog.h"
    #pragma pack()
    _declspec(dllexport) void ColorImageToRGBHexArray( IplImage*a,TD1Hdl Pt,er *error);
    _declspec(dllexport) void ColorImageToRGBHexArray( IplImage*a,TD1Hdl Pt,er *error)
    if (!a)
    error->code =-10002;
    error->status=TRUE;
    if (error->source == NULL)
    error->code =1234;
    else
    else
    if (a->nChannels == 3)
    int R,G,B;
    int i;
    int j;
    for(i=0;i<(a->height); i++)
    for(j=0;j<(a->width);j++)
    B=((uchar *)(a->imageData + i*a->widthStep))[j*a->nChannels + 0];
    G =((uchar *)(a->imageData + i*a->widthStep))[j*a->nChannels + 1];
    R =((uchar *)(a->imageData + i*a->widthStep))[j*a->nChannels + 2];
    (*Pt)->elt[i*a->width +j] = R*65536 +G*256 +B;
    else
    error->code =-10003;
    error->status=TRUE;
    Warm Regard
    Orooj Ahmed

  • My cloud won't work. I get error code #10003. Anyone else had this?

    I can't back up anything, my Cloud worked initially to back up everything- except my contacts, they would never back up, now it won't even let me sign in via the computer. It says unknown error and to call customer service when I try to login online. It gives me error code #10003 when i try to login on my phone. The tech support said that error code wasnt in their system! WTH!!! They have opened 3 tickets so far and I still have no resolution, its been 3 weeks. I have spent over 10 hours on the phone with tech support. I have uninstalled, reinstalled, factory reset, changed my password, just about everything I can think of to do. Nothing works. Anyone else had issues like this? Now it also takes hours to send a photo via mms. I am so frustrated. I just got this phone and had issues with it since day one but they kept saying the next software update would take care of the issue, but it seems to have just made more issues. Now they want to give me a used replacement instead of a new phone. I just want what i paid for to work correctly!

    I don't want a used replacement phone when I just bought mine. I have had your "like new" replacements before for my basic phone and had a ton of issues straight out of the box, which is why I don't want one when my phone is so new and I have had issues since day 1! Not once on my several calls to tech support, did anyone tell me to go exchange it the first 2 weeks. That is just one reason they want to send me a replacement. Another is the USB does not work properly, I can't use it to do anything but charge the phone- and my husband has the same phone so I know is not the cord or the computer because his works perfectly. The connection was sporadic so I just installed a new SIM card. So far that has helped with dropping 4g all the time. I have never been able to back up my contacts, spent 2 hours on the phone with tech support the first night I got it just trying to sync the contacts from my old phone. It never worked, I had to hand input the numbers. If Verizon won't do right by be and give me a new phone, I at least would like them to get mine working like it should have when I bought it.

  • In Windows Vista 7, SP2, Firefox takes several minutes to launch, is non-responsive, hangs sometimes launches additional windows without my clicking. I get error code 10003.

    I'm using Firefox 6.0.2 in Wndows Vista 7, SP2. I'm using Norman Security Suite anti-virus software. Firefox behaves erratically. Sometimes it takes several minutes to launch. If I launch an new window it sometimes hangs. It launches two extra windows without my having clicked to launch. Always two. I get an error code 10003 but when I search for this I get no information about it.
    Windows Task Manager shows plugin-container for Firefox running in addition to firefox.exe.

    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Restore the default home page
    * https://support.mozilla.com/en-US/kb/How%20to%20set%20the%20home%20page#w_restore-the-default-home-page
    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Check and tell if its working.

  • Error 10003 at AI Control

    Hi,
    When I start to run 25K Functional Test System of SofTest Designs Corp. I receive following error massages
    1. ERROR 10007 occurred at DIO port Conf.
    Possible Reasons:
    Ni - DAQ LV: A channel, port, or counter is out of range for the device type or device configuration; or the combination of channels is not allowed; or the scan order must be reversed ( 0 last).
    2. ERROR 10003 at AI Control.
    Possible Reasons:
    NI - DAQ LV: The value of a numeric parameter is invalid.
    3. ERROR 10401 occurred at CTR control
    Possible Reasons:
    NI - DAQ LV: The specified device is not a National Instruments product, the driver does not support the device (for example, the driver was released before the device was supported); or the device has not been configured using the NI - DAQ Configuration Utility.
    How to solve these problems? I appreciate your help.

    Hi,
    I fixed out the Error 10003. Configuring Device 1 (PCI 6071E) Voltage set up "-10/+10V" change to "0/+10V" and "Differential" change to "Reference Single Ended".
    We still have error 10007 & 10401 when starting up the computer. The tester passes the test but the label print out from printer cannot read the bar code from microscan (P/N: FIS-0710-0005). I go to Check Panel --> Digital I/O, I found line state 0 &1 are not on, other line state from 2 to 7 are on (Red). How to make the line state 0 & 1 to be on?
    I replaced a new scan, check the cable. They are good.
    The Labview version: NI-DAQ6.1, Window 95, National Instruments: NI488.2 

  • I obtain error -10003 from AI hardware config when I use AC coupling

    I am using a function generator to make a sine wave and I want to obtain the data. However, there is an error 10003 at AI hardware config when I use AC coupling and I am not sure why?
    Attachments:
    Motor_Current_Measurement2.vi ‏133 KB

    What model DAQ board are you using. There's only a couple from NI that support AC coupling.

  • Error 10003 occurred at ULx Read(Analo​g Wfm 1Chan NSamp).vi?

    Hello I am using the Measurement computing hardware USB-2416 and when I run the following Vi (Screen shot attached and the VI was made by following the video http://www.youtube.com/watch?v=GqyooarvbuM) I am getting the following error
    Error 10003 occurred at ULx Read (Analog Wfm 1Chan NSamp).vi
    Possible reason(s):
    Measurements: Some or all of the samples requested have not yet been acquired.
    To wait for the samples to become available use a longer read timeout or read later in your program. To make the samples available sooner, increase the sample rate. If your task uses a start trigger, make sure that your start trigger is configured correctly. It is also possible that you configured the task for external timing, and no clock was supplied. If this is the case, supply an external clock.
    Attachments:
    daq.PNG ‏38 KB

    You have a rate of 93 and are collecting 1000 samples.  Is that what you want?  That is not what the video shows.
    That means it takes about 10.75 seconds to collect 1000 samples.  I bet the timeout for the function defaults to 10 seconds.  That means you will have only collected 930 samples and thus explains why you get this error message.

  • I get error 10003 when I set the port width to 64 using port config on port 4.

    Why is this, when 64 lines are available? (setting it to 56 works fine). I am using a PC-DIO-96 and LabView 4.1 on Windows 98SE

    I can't find any documenation about this type of limitation for the PC-DIO-96. How is it that you were able to get NI-DAQ 6.7 working with LabVIEW 4? This could provide some clue about what is going wrong.
    Upgrading both your LabVIEW and NI-DAQ to the latest and greatest is the best solution.
    However, if you want to get something going while waiting for LabVIEW 6i to arrive, I'd recommend uninstalling NI-DAQ 6.7 and installing NI-DAQ 6.6 instead (available online at http://digital.ni.com/softlib.nsf/web/all+software​). This would be the last version thoroughly tested with LabVIEW 4.0.
    If you still have trouble, you might need to uninstall/reinstall both LabVIEW and NI-DAQ.

  • ORA-00942 Error during unicode export of BI 7.0

    Hello Everyone,
    I am doing an export of a non-unicode BI 7.0 system to convert and import it into a Unicode database. All the jobs have passed except one and I see the following error in the log file (SAPAPPL0_3.log)
    /usr/sap/ABD/SYS/exe/run/R3load: START OF LOG: 20080302124247
    /usr/sap/ABD/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    /usr/sap/ABD/SYS/exe/run/R3load: version R7.00/V1.4
    Compiled Jun  9 2007 09:20:06
    /usr/sap/ABD/SYS/exe/run/R3load -e SAPAPPL0_3.cmd -datacodepage 4102 -l SAPAPPL0_3.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (RSCP) INFO: I18N_NAMETAB_TIMESTAMPS not in env: checks are ON (Note 738858)
    (RSCP) WARN: UMGCONTAINER has 1 problems.
    (RSCP) INFO: UMGSETTINGS nametab creation: ok.
    (RSCP) INFO: Global fallback code page = 1100
    (RSCP) INFO: Common character set is  not  7-bit-ASCII
    (RSCP) INFO: Collision resolution method is 'fine'
    (RSCP) INFO: R3trans code pages = Normal
    (RSCP) INFO: EXPORT TO ... code pages = Normal
    (RSCP) INFO: Check for invalid language keys: active, by default
    (RSCP) INFO: I18N_NAMETAB_NORM_ALLOW = 999999999
    (RSCP) INFO: I18N_NAMETAB_NORM_LOG   = 1000000002
    (RSCP) INFO: I18N_NAMETAB_ALT_ALLOW  = 10000
    (RSCP) INFO: I18N_NAMETAB_ALT_LOG    = 10003
    (RSCP) INFO: I18N_NAMETAB_OLD_ALLOW  = 0
    (RSCP) INFO: I18N_NAMETAB_OLD_LOG    = 500
    (GSI) INFO: dbname   = "ABD20070922100908
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "ussbbdd5                                                        "
    (GSI) INFO: sysname  = "HP-UX"
    (GSI) INFO: nodename = "ussbbdd5"
    (GSI) INFO: release  = "B.11.23"
    (GSI) INFO: version  = "U"
    (GSI) INFO: machine  = "ia64"
    (GSI) INFO: instno   = "INITIAL   "
    (EXP) ERROR: DbSlExeRead failed
      rc = 103, table "/BIC/SZTERR_CD"
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    (DB) INFO: disconnected from DB
    /usr/sap/ABD/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/ABD/SYS/exe/run/R3load: END OF LOG: 20080302124251
    When I run the following command on /BIC/SZTERR_CD, I do not get any table information back. I am not sure how to fix it though.
    SELECT * FROM DBA_OBJECTS WHERE OBJECT_NAME = '/BIC/SZTERR_CD '; 
    I did finish all the unicode preconversion steps and also ran the SMIGR_CREATE_DDL program. I had exported recently from the same system but I never got this error during that run.
    Another question is about the order in which the steps need to be performed. I completed the preconversion steps, then ran the SMIGR_CREATE_DDL program before proceeding to the export phase. Is this right or does it not matter?
    Thanks again for your help!

    Hello Stacy,
    > When I run the following command on /BIC/SZTERR_CD, I do not get any table information back. I am not sure how to fix it though.
    > SELECT * FROM DBA_OBJECTS WHERE OBJECT_NAME = '/BIC/SZTERR_CD ';
    If the object does not exists on the source target database, please check if the ddic of sap still contains the table definition. (SE11 or SE14)
    If yes you can set the status of the table /BIC/SZTERR_CD to "ok" in the corresponding task file.
    You can not fix this problem in other way after you have started the conversion, because of the export files are already generated (with the information of the sap ddic)...
    > I completed the preconversion steps, then ran the SMIGR_CREATE_DDL program before proceeding to the export phase. Is this right or does it not matter?
    That was the right way.
    Regards
    Stefan

  • Error while running forge post Endeca integration with ATG

    Hi All,
    We have integrated Endeca application with ATG and then tried running the Endeca baseline update script. However the script failed with the below error message
    Parsing XML dimensions data with validation turned on
    Parsing project file "C:\apps\ATGSample\data\forge_output\ATGSample.xml" (project="ATGSample")
    XMLParser: Reading dimensions, dvals, and synonyms from file "C:\apps\ATGSample\data\forge_output\\ATGSample.dimensions.xml"
    ERROR 06/07/13 05:15:57.022 UTC (1370582157018) DGIDX {dgidx,baseline} Internal error while decompressing input stream: null
    FATAL 06/07/13 05:15:57.022 UTC (1370582157018) DGIDX {dgidx,baseline} Fatal error at file , line 0, char 0; Message: An exception occurred! Type:RuntimeException, Message:The primary document entity could not be opened. Id=C:\apps\ATGSample\data\forge_output\\ATGSample.dimensions.xml
    WARN 06/07/13 05:15:57.022 UTC (1370582157019) DGIDX {dgidx,baseline} Lexer/OLT log: level=-1: 2013/06/07 10:45:57 | INFO | Disabling log callback
    We checked the physical location of forge output and found that there is no file called 'ATGSample.dimensions.xml '
    However, when we manually placed this file in the forge output folder and ran dgidx alone, the baseline update failed with the below error
    Parsing XML dimensions data with validation turned on
    Parsing project file "C:\apps\ATGSample\data\forge_output\ATGSample.xml" (project="ATGSample")
    XMLParser: Reading dimensions, dvals, and synonyms from file "C:\apps\ATGSample\data\forge_output\\ATGSample.dimensions.xml"
    ERROR 06/07/13 05:15:57.022 UTC (1370582157018) DGIDX {dgidx,baseline} Internal error while decompressing input stream: null
    FATAL 06/07/13 05:15:57.022 UTC (1370582157018) DGIDX {dgidx,baseline} Fatal error at file , line 0, char 0; Message: An exception occurred! Type:RuntimeException, Message:The primary document entity could not be opened. Id=C:\apps\ATGSample\data\forge_output\\ATGSample.dimensions.xml
    WARN 06/07/13 05:15:57.022 UTC (1370582157019) DGIDX {dgidx,baseline} Lexer/OLT log: level=-1: 2013/06/07 10:45:57 | INFO | Disabling log callback
    ============================================================================
    === DGIDX: Version = "6.4.0.692722"
    === Start Time : Fri Jun 07 11:04:15 2013
    === Arguments : "C:\Endeca\MDEX\6.4.0\bin\dgidx.exe -v --compoundDimSearch --lang en --out C:\apps\ATGSample\logs\dgidxs\Dgidx\Dgidx.log --dtddir C:\Endeca\MDEX\6.4.0\conf\dtd --tmpdir C:\apps\ATGSample\data\temp C:\apps\ATGSample\data\forge_output\ATGSample C:\apps\ATGSample\data\dgidx_output\ATGSample"
    === Current Directory : C:\apps\ATGSample
    === Exec Path : C:\Endeca\MDEX\6.4.0\bin\dgidx.exe
    ============================================================================
    Language/collation in use is English (collation=endeca)
    WARN 06/07/13 05:34:15.054 UTC (1370583255046) DGIDX {dgidx,baseline} Lexer/OLT log: level=-1: 2013/06/07 11:04:15 | INFO | Enabling log callback
    No application configuration specified. Using "C:\apps\ATGSample\data\forge_output\ATGSample" as the application configuration prefix.
    ============================================================================
    === DGIDX: Starting phase "Read raw dimensions, properties, and records"
    === Current Time : Fri Jun 07 11:04:15 2013
    === Total Elapsed : 0.1131 seconds
    === User CPU Time : 0.0625 seconds
    === System CPU Time : 0.1250 seconds
    === Memory Usage : 18.44 MB
    ============================================================================
    Parsing XML dimensions data with validation turned on
    Parsing project file "C:\apps\ATGSample\data\forge_output\ATGSample.xml" (project="ATGSample")
    XMLParser: Reading dimensions, dvals, and synonyms from file "C:\apps\ATGSample\data\forge_output\\ATGSample.dimensions.xml"
    In Dval [id=10001] named "clothing-sku.color", the name is non-searchable.
    In Dval [id=10002] named "clothing-sku.size", the name is non-searchable.
    In Dval [id=10003] named "furniture-sku.woodFinish", the name is non-searchable.
    In Dval [id=10093] named "product.brand", the name is non-searchable.
    In Dval [id=10094] named "product.catalogId", the name is non-searchable.
    In Dval [id=10006] named "product.disallowAsRecommendation", the name is non-searchable.
    In Dval [id=10007] named "product.features.displayName", the name is non-searchable.
    In Dval [id=10095] named "product.language", the name is non-searchable.
    In Dval [id=10008] named "product.nonreturnable", the name is non-searchable.
    In Dval [id=10096] named "product.priceListPair", the name is non-searchable.
    In Dval [id=10009] named "product.siteId", the name is non-searchable.
    In Dval [id=10010] named "sku.siteId", the name is non-searchable.
    In Dval [id=10011] named "product.category", the name is non-searchable.
    In Dval [id=10079] named "item.type", the name is non-searchable.
    XMLParser: Done reading dimensions, dvals, and synonyms from "C:\apps\ATGSample\data\forge_output\\ATGSample.dimensions.xml"
    XMLParser: Reading auto propmap file "C:\apps\ATGSample\data\forge_output\\ATGSample.auto_propmap.xml"
    XMLParser: Done reading auto propmap file "C:\apps\ATGSample\data\forge_output\\ATGSample.auto_propmap.xml"
    XMLParser: Reading properties from file "C:\apps\ATGSample\data\forge_output\ATGSample.prop_refs.xml"
    XMLParser: Done reading properties from file "C:\apps\ATGSample\data\forge_output\ATGSample.prop_refs.xml"
    XMLParser: Reading rollup properties and dimensions from file "C:\apps\ATGSample\data\forge_output\ATGSample.rollups.xml"
    XMLParser: Done reading rollup properties and dimensions from file "C:\apps\ATGSample\data\forge_output\ATGSample.rollups.xml"
    XMLParser: Reading record spec property from file "C:\apps\ATGSample\data\forge_output\ATGSample.record_spec.xml"
    XMLParser: Property "common.id" is a record spec property.
    XMLParser: Done reading record specs from "C:\apps\ATGSample\data\forge_output\ATGSample.record_spec.xml"
    XMLParser: Reading record filter properties from file "C:\apps\ATGSample\data\forge_output\ATGSample.record_filter.xml"
    XMLParser: Done reading record filter properties from file "C:\apps\ATGSample\data\forge_output\ATGSample.record_filter.xml"
    XMLParser: Creating dimensions from dvals.
    XMLParser: Reading rollup properties and dimensions from file "C:\apps\ATGSample\data\forge_output\ATGSample.rollups.xml"
    XMLParser: Done reading rollup properties and dimensions from file "C:\apps\ATGSample\data\forge_output\ATGSample.rollups.xml"
    XMLParser: Reading dimensions from file "C:\apps\ATGSample\data\forge_output\ATGSample.dimension_refs.xml"
    XMLParser: Done reading dimensions from file "C:\apps\ATGSample\data\forge_output\ATGSample.dimension_refs.xml"
    XMLParser: Reading dimension groups from file "C:\apps\ATGSample\data\forge_output\ATGSample.dimension_groups.xml"
    XMLParser: Done reading dimension groups from file "C:\apps\ATGSample\data\forge_output\ATGSample.dimension_groups.xml"
    XMLParser: Reading precedence rules from file "C:\apps\ATGSample\data\forge_output\ATGSample.precedence_rules.xml"
    XMLParser: Done reading precedence rules from file "C:\apps\ATGSample\data\forge_output\ATGSample.precedence_rules.xml"
    XMLParser: Reading dval refs from file "C:\apps\ATGSample\data\forge_output\ATGSample.dval_refs.xml"
    XMLParser: Done reading dval refs from file "C:\apps\ATGSample\data\forge_output\ATGSample.dval_refs.xml"
    XMLParser: Reading dval ranks from file "C:\apps\ATGSample\data\forge_output\ATGSample.dval_ranks.xml"
    XMLParser: Done reading dval ranks from file "C:\apps\ATGSample\data\forge_output\ATGSample.dval_ranks.xml"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10079] "item.type"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10094] "product.catalogId"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10095] "product.language"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10009] "product.siteId"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10001] "clothing-sku.color"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10007] "product.features.displayName"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10006] "product.disallowAsRecommendation"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10002] "clothing-sku.size"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10003] "furniture-sku.woodFinish"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10008] "product.nonreturnable"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10093] "product.brand"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10096] "product.priceListPair"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10010] "sku.siteId"
    ERROR 06/07/13 05:34:15.242 UTC (1370583255242) DGIDX {dgidx,baseline} No dimension_refs entry found for dimension [10011] "product.category"
    XMLParser: Reading refinement config from file "C:\apps\ATGSample\data\forge_output\ATGSample.refinement_config.xml"
    XMLParser: Done reading refinement config from file "C:\apps\ATGSample\data\forge_output\ATGSample.refinement_config.xml"
    XMLParser: Reading dimension search index configuration from file "C:\apps\ATGSample\data\forge_output\ATGSample.dimsearch_index.xml"
    XMLParser: Done reading dimension search index configuration from file "C:\apps\ATGSample\data\forge_output\ATGSample.dimsearch_index.xml"
    XMLParser: Reading record search index configuration from file "C:\apps\ATGSample\data\forge_output\ATGSample.recsearch_indexes.xml"
    XMLParser: Done reading record search index configuration from file "C:\apps\ATGSample\data\forge_output\ATGSample.recsearch_indexes.xml"
    XMLParser: Reading record search interface configuration from file "C:\apps\ATGSample\data\forge_output\ATGSample.recsearch_config.xml"
    XMLParser: Done reading record search interface configuration from file "C:\apps\ATGSample\data\forge_output\ATGSample.recsearch_config.xml"
    WARN 06/07/13 05:34:15.288 UTC (1370583255283) DGIDX {dgidx,baseline} Errors while parsing record search interface configuration from file "C:\apps\ATGSample\data\forge_output\ATGSample.recsearch_config.xml": RETURN_RELRANK_SCORE no longer supported. Search interface member "allAncestors.displayName" in interface "All" is not a property or dimension Search interface member "product.displayName" in interface "All" is not a property or dimension Search interface member "sku.displayName" in interface "All" is not a property or dimension Cannot put search interface member "product.features.displayName" into the search interface "All" because it has not been enabled for full-text search Cannot put search interface member "product.brand" into the search interface "All" because it has not been enabled for full-text search Search interface member "product.repositoryId" in interface "All" is not a property or dimension Search interface member "sku.repositoryId" in interface "All" is not a property or dimension Search interface member "product.briefDescription" in interface "All" is not a property or dimension Search interface member "product.description" in interface "All" is not a property or dimension Search interface member "product.longDescription" in interface "All" is not a property or dimension Search interface member "product.keywords" in interface "All" is not a property or dimension Cannot put search interface member "clothing-sku.color" into the search interface "All" because it has not been enabled for full-text search Cannot put search interface member "clothing-sku.size" into the search interface "All" because it has not been enabled for full-text search Cannot put search interface member "furniture-sku.woodFinish" into the search interface "All" because it has not been enabled for full-text search Search interface member "sku.manufacturer_part_number" in interface "All" is not a property or dimension
    XMLParser: Reading search chars from file "C:\apps\ATGSample\data\forge_output\ATGSample.search_chars.xml"
    XMLParser: Done reading search chars from file "C:\apps\ATGSample\data\forge_output\ATGSample.search_chars.xml"
    XMLParser: Reading language stemming settings from file "C:\apps\ATGSample\data\forge_output\ATGSample.stemming.xml"
    XMLParser: Done reading per-language stemming settings from file "C:\apps\ATGSample\data\forge_output\ATGSample.stemming.xml"
    Default language English manually configured to use static word forms.
    XMLParser: Reading word forms from file "C:\Endeca\MDEX\6.4.0\conf\stemming\en_word_forms_collection.xml"
    XMLParser: Done reading word forms from file "C:\Endeca\MDEX\6.4.0\conf\stemming\en_word_forms_collection.xml". There are 50374 word forms.
    XMLParser: Reading language config from file "C:\apps\ATGSample\data\forge_output\ATGSample.languages.xml"
    XMLParser: Done reading language config from file "C:\apps\ATGSample\data\forge_output\ATGSample.languages.xml"
    XMLParser: Reading stop words from file "C:\apps\ATGSample\data\forge_output\ATGSample.stop_words.xml"
    XMLParser: Done reading stop words from file "C:\apps\ATGSample\data\forge_output\ATGSample.stop_words.xml", finished in 0.0039 seconds.
    FATAL 06/07/13 05:34:17.616 UTC (1370583257616) DGIDX {dgidx,baseline} ENE Indexer: Error processing records file.
    WARN 06/07/13 05:34:17.616 UTC (1370583257616) DGIDX {dgidx,baseline} Lexer/OLT log: level=-1: 2013/06/07 11:04:17 | INFO | Disabling log callback

    I've seen this type of error before when Forge is configured to read multiple files with spec *.xml.  Is that how you've configured your record adapter?  This configuration then collides with Forge XML config files merged into the same data/processing directory.
    From memory there's a couple of solutions for this - one might be to give the files a common name prefix if that's feasible, e.g. _data*.xml.  You could use a sub-directory to separate the files, but you'd need to modify your copy scripts.

  • When trying to setup a new Operating Unit gives an error: FRM-40735: PRE-FORM trigger raised unhandled exception ORA-06502

    EBS - Payables - Version 12.1.3.
    We Have many others Operating Units configured and no errors occurs.
    This error occurs only if we set a new OU.
    All profiles have been configured properly. (MO: Operating Unit, HR: Security Profile, etc..)
    The trace shows:
    SELECT PROFILE_OPTION_VALUE
      FROM FND_PROFILE_OPTION_VALUES
    WHERE PROFILE_OPTION_ID = 5852                           
       AND APPLICATION_ID = 178
       AND LEVEL_ID = 10003
       AND LEVEL_VALUE = 124280
       AND LEVEL_VALUE_APPLICATION_ID = 200        
       AND PROFILE_OPTION_VALUE IS NOT NULL
    The PROFILE_OPTION_ID = 5852   is  "ICX:Session Timeout".
    If I set this profile the error does not occur. But its is very strange to have to configure it for a responsibility level.

    Hi All.
    I discovered what the problem was.
    The size of the name of the responsibility was with many characters.
    Reduced the size and the error stopped occur.
    Tks!

  • F-28 tax posting error

    we use F-28 to post incoming payment for company code 1110, customer account 10003, but this customer doesn't have any open item, so in "post incoming payments select open items" screen, we choose another company code 2110 and another customer 20003, 20003 has open items, we fill in the  cash discount, the "not assigned" field now is zero, but when we try to save, it displays the error:
    Account 3000060 2110 for deductions/discounts must not be tax-relevant
    Message no. F5037
    Diagnosis
    The system wants to create an automatic posting for cash discount deductions or unauthorized deductions in the above-mentioned account.
    In company code 2110, no tax adjustment is defined for such deductions (in table T001, it was specified that the cash discount base is the net amount). In this case, the account to be posted must not be tax-relevant.
    Procedure
    Correct the master record of the account mentioned above.
    our setting for account 3000060 is : tax catgory:+, line item display, post auto only, since this account has balance, what should I do to save the F-28 result? thanks

    Hi Jolinchew,
    As far as I know,The tax category of the G/L account you are using must be unassigned.Reason:  the expense-account for deductions/discounts must not be tax-relevant.
    So you can consider to change the g/l account master record to a non-tax relevant status or to use a different g/l account which is not tax relevant.
    Hope above infor. could help you to solve this error.
    With Best Regards,
    Gladys Xing

  • Error while accessing DBlink to mysql

    Getting following error (trace file content) when querying suing the DB link (select * from "DeviceWindows_Devices"@monolith2.us.oracle.com;)
    table: DeviceWindows_Devices
    Entered hgopcda at 2012/11/15-18:56:59
    Column:1(WindowID): dtype:4 (INTEGER), prc/scl:10/0, nullbl:0, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/11/15-18:56:59
    Entered hgopcda at 2012/11/15-18:56:59
    Column:2(DeviceID): dtype:4 (INTEGER), prc/scl:10/0, nullbl:0, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/11/15-18:56:59
    The hoada for table DeviceWindows_Devices follows...
    hgodtab, line 651: Printing hoada @ 0x281a100
    MAX:2, ACTUAL:2, BRC:1, WHT=6 (TABLE_DESCRIBE)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER N 4 4 0/ 0 0 0 0 WindowID
    4 INTEGER N 4 4 0/ 0 0 0 0 DeviceID
    Exiting hgodtab, rc=0 at 2012/11/15-18:56:59
    Entered hgodafr, cursor id 0 at 2012/11/15-18:56:59
    Exiting hgodafr, rc=0 at 2012/11/15-18:56:59
    Entered hgopars, cursor id 1 at 2012/11/15-18:56:59
    type:0
    SQL text from hgopars, id=1, len=60 ...
    00: 53454C45 43542041 312E5769 6E646F77 [SELECT A1.Window]
    10: 49442C41 312E4465 76696365 49442046 [ID,A1.DeviceID F]
    20: 524F4D20 44657669 63655769 6E646F77 [ROM DeviceWindow]
    30: 735F4465 76696365 73204131 [s_Devices A1]
    Exiting hgopars, rc=0 at 2012/11/15-18:56:59
    Entered hgoopen, cursor id 1 at 2012/11/15-18:56:59
    hgoopen, line 83: NO hoada to print
    Exiting hgoopen, rc=0 at 2012/11/15-18:56:59
    Entered hgodscr, cursor id 1 at 2012/11/15-18:56:59
    Entered hgopcda at 2012/11/15-18:56:59
    Column:1(WindowID): dtype:4 (INTEGER), prc/scl:10/0, nullbl:0, octet:0, sign:0, radix:0
    Exiting hgopcda, rc=0 at 2012/11/15-18:56:59
    Entered hgopcda at 2012/11/15-18:56:59
    Column:2(DeviceID): dtype:4 (INTEGER), prc/scl:10/0, nullbl:0, octet:0, sign:0, radix:0
    Exiting hgopcda, rc=0 at 2012/11/15-18:56:59
    Entered hgopoer at 2012/11/15-18:56:59
    hgopoer, line 159: got native error 0 and sqlstate HY092; message follows...
    [unixODBC][Driver Manager]Invalid attribute/option identifier
    Exiting hgopoer, rc=0 at 2012/11/15-18:56:59
    hgodscr, line 456: calling SQLSetStmtAttr got sqlstate HY092
    hgodscr, line 506: NO hoada to print
    Exiting hgodscr, rc=28500 at 2012/11/15-18:56:59 with error ptr FILE:hgodscr.c LINE:456 FUNCTION:hgodscr() ID:Set array fetch size
    Driver : ODBC 5.2(w) Driver
    Oracle Database: 11.1.0.7
    Mysql Database: 5.5.20
    Able to connect from isql and select commands also works fine from there
    -bash-3.2$ isql -v monolith_itasmon
    | Connected! |
    | |
    | sql-statement |
    | help [tablename] |
    | quit |
    | |
    Please help in resolving this, thanks in advance.
    Thanks,
    Vani
    Edited by: user580543 on Nov 16, 2012 2:10 AM

    Hi ,
    Sorry for the delay.
    Please find the trace file.
    Thanks,
    Vani
    [ODBC][26106][__handles.c][444]
              Exit:[SQL_SUCCESS]
                   Environment = 0x532c160
    [ODBC][26106][SQLSetEnvAttr.c][182]
              Entry:
                   Environment = 0x532c160
                   Attribute = SQL_ATTR_ODBC_VERSION
                   Value = 0x3
                   StrLen = -6
    [ODBC][26106][SQLSetEnvAttr.c][349]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLAllocHandle.c][345]
              Entry:
                   Handle Type = 2
                   Input Handle = 0x532c160
    [ODBC][26106][SQLAllocHandle.c][463]
              Exit:[SQL_SUCCESS]
                   Output Handle = 0x5361780
    [ODBC][26106][SQLSetConnectAttr.c][318]
              Entry:
                   Connection = 0x5361780
                   Attribute = SQL_ATTR_AUTOCOMMIT
                   Value = (nil)
                   StrLen = -5
    [ODBC][26106][SQLSetConnectAttr.c][500]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLDriverConnect.c][678]
              Entry:
                   Connection = 0x5361780
                   Window Hdl = (nil)
                   Str In = [DSN=MONOLITH_ITASMON;UID=itasmon;PWD=********][length = 45]
                   Str Out = 0x5363848
                   Str Out Max = 1024
                   Str Out Ptr = 0x7fffe146fe44
                   Completion = 0
              UNICODE Using encoding ASCII 'ISO8859-1' and UNICODE 'UCS-2LE'
    [ODBC][26106][SQLDriverConnect.c][1487]
              Exit:[SQL_SUCCESS]
                   Connection Out [[DSN=MONOLITH_ITASMON;UID=itasmon;PWD=********][length = 45 (SQL_NTS)]]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_DRIVER_NAME (6)
                   Info Value = 0x7fffe146fb20
                   Buffer Length = 512
                   StrLen = 0x7fffe146fe48
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_DRIVER_VER (7)
                   Info Value = 0x7fffe146fb20
                   Buffer Length = 512
                   StrLen = 0x7fffe146fe48
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_DBMS_NAME (17)
                   Info Value = 0x7fffe146fb20
                   Buffer Length = 512
                   StrLen = 0x7fffe146fe48
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_DBMS_VER (18)
                   Info Value = 0x7fffe146fb20
                   Buffer Length = 512
                   StrLen = 0x7fffe146fe48
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_CATALOG_NAME (10003)
                   Info Value = 0x7fffe146fe90
                   Buffer Length = 512
                   StrLen = 0x7fffe1470124
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_IDENTIFIER_QUOTE_CHAR (29)
                   Info Value = 0x7fffe146fd60
                   Buffer Length = 512
                   StrLen = 0x7fffe147021c
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_COLUMN_ALIAS (87)
                   Info Value = 0x7fffe146fd60
                   Buffer Length = 512
                   StrLen = 0x7fffe147021c
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_NO_DATA]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_INTEGER
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_SMALLINT
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_NO_DATA]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_SMALLINT
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_VARBINARY
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_NO_DATA]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_BIGINT
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_NO_DATA]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_BIGINT
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_TINYINT
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_NO_DATA]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_TINYINT
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_LONGVARCHAR
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetTypeInfo.c][164]
              Entry:
                   Statement = 0x538ae20
                   Data Type = SQL_LONGVARBINARY
    [ODBC][26106][SQLGetTypeInfo.c][314]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 2
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLEndTran.c][315]
              Entry:
                   Connection = 0x5361780
                   Completion Type = 0
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_CURSOR_COMMIT_BEHAVIOR (23)
                   Info Value = 0x7fffe14700de
                   Buffer Length = 8
                   StrLen = 0x7fffe14700dc
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLEndTran.c][488]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_TXN_CAPABLE (46)
                   Info Value = 0x7fffe1470274
                   Buffer Length = 2
                   StrLen = 0x7fffe1470278
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLGetInfo.c][214]
              Entry:
                   Connection = 0x5361780
                   Info Type = SQL_TXN_ISOLATION_OPTION (72)
                   Info Value = 0x7fffe1470270
                   Buffer Length = 4
                   StrLen = 0x7fffe1470278
    [ODBC][26106][SQLGetInfo.c][528]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLSetConnectAttr.c][318]
              Entry:
                   Connection = 0x5361780
                   Attribute = SQL_ATTR_TXN_ISOLATION
                   Value = 0x2
                   StrLen = -5
    [ODBC][26106][SQLSetConnectAttr.c][671]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeHandle.c][365]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x538ae20
    [ODBC][26106][SQLFreeHandle.c][462]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLAllocHandle.c][510]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x5361780
    [ODBC][26106][SQLAllocHandle.c][872]
              Exit:[SQL_SUCCESS]
                   Output Handle = 0x538ae20
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 4
                   Target Type = 1 SQL_CHAR
                   Target Value = 0x7fffe1470028
                   Buffer Length = 124
                   StrLen Or Ind = 0x7fffe1470110
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 5
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe14701c0
                   Buffer Length = 0
                   StrLen Or Ind = (nil)
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 6
                   Target Type = 1 SQL_CHAR
                   Target Value = 0x7fffe146ffb0
                   Buffer Length = 120
                   StrLen Or Ind = 0x7fffe1470108
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 7
                   Target Type = -16 SQL_C_SLONG
                   Target Value = 0x7fffe14701a8
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe1470130
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 9
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe14701cc
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe1470128
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 10
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe14701c4
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe1470120
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 11
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe14701c8
                   Buffer Length = 0
                   StrLen Or Ind = (nil)
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLBindCol.c][165]
              Entry:
                   Statement = 0x538ae20
                   Column Number = 16
                   Target Type = -16 SQL_C_SLONG
                   Target Value = 0x7fffe14701a4
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe1470118
    [ODBC][26106][SQLBindCol.c][251]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLColumns.c][208]
              Entry:
                   Statement = 0x538ae20
                   Catalog Name = [NULL]
                   Schema Name = [itasmon][length = 7]
                   Table Name = [DeviceWindows_Devices][length = 21]
                   Column Type = [NULL]
    [ODBC][26106][SQLColumns.c][405]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFetch.c][158]
              Entry:
                   Statement = 0x538ae20
    [ODBC][26106][SQLFetch.c][340]
              Exit:[SQL_NO_DATA]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 0
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLFreeStmt.c][140]
              Entry:
                   Statement = 0x538ae20
                   Option = 2
    [ODBC][26106][SQLFreeStmt.c][246]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLAllocHandle.c][510]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x5361780
    [ODBC][26106][SQLAllocHandle.c][872]
              Exit:[SQL_SUCCESS]
                   Output Handle = 0x53bdd30
    [ODBC][26106][SQLPrepare.c][189]
              Entry:
                   Statement = 0x53bdd30
                   SQL = [SELECT A1.WindowID,A1.DeviceID FROM DeviceWindows_Devices A1][length = 60]
    [ODBC][26106][SQLPrepare.c][364]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLNumResultCols.c][149]
              Entry:
                   Statement = 0x53bdd30
                   Column Count = 0x532c880
    [ODBC][26106][SQLNumResultCols.c][234]
              Exit:[SQL_SUCCESS]
                   Count = 0x532c880 -> 2
    [ODBC][26106][SQLExecute.c][183]
              Entry:
                   Statement = 0x53bdd30
    [ODBC][26106][SQLExecute.c][344]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLDescribeCol.c][231]
              Entry:
                   Statement = 0x53bdd30
                   Column Number = 1
                   Column Name = 0x7fffe146ff00
                   Buffer Length = 30
                   Name Length = 0x7fffe1470044
                   Data Type = 0x7fffe1470040
                   Column Size = 0x7fffe146ffe8
                   Decimal Digits = 0x7fffe147003c
                   Nullable = 0x7fffe1470038
    [ODBC][26106][SQLDescribeCol.c][474]
              Exit:[SQL_SUCCESS]
                   Column Name = [WindowID]
                   Data Type = 0x7fffe1470040 -> 4
                   Column Size = 0x7fffe146ffe8 -> 10
                   Decimal Digits = 0x7fffe147003c -> 0
                   Nullable = 0x7fffe1470038 -> 0
    [ODBC][26106][SQLColAttribute.c][277]
              Entry:
                   Statement = 0x53bdd30
                   Column Number = 1
                   Field Identifier = SQL_DESC_UNSIGNED
                   Character Attr = (nil)
                   Buffer Length = 0
                   String Length = (nil)
                   Numeric Attribute = 0x7fffe146fff0
    [ODBC][26106][SQLColAttribute.c][648]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLDescribeCol.c][231]
              Entry:
                   Statement = 0x53bdd30
                   Column Number = 2
                   Column Name = 0x7fffe146ff00
                   Buffer Length = 30
                   Name Length = 0x7fffe1470044
                   Data Type = 0x7fffe1470040
                   Column Size = 0x7fffe146ffe8
                   Decimal Digits = 0x7fffe147003c
                   Nullable = 0x7fffe1470038
    [ODBC][26106][SQLDescribeCol.c][474]
              Exit:[SQL_SUCCESS]
                   Column Name = [DeviceID]
                   Data Type = 0x7fffe1470040 -> 4
                   Column Size = 0x7fffe146ffe8 -> 10
                   Decimal Digits = 0x7fffe147003c -> 0
                   Nullable = 0x7fffe1470038 -> 0
    [ODBC][26106][SQLColAttribute.c][277]
              Entry:
                   Statement = 0x53bdd30
                   Column Number = 2
                   Field Identifier = SQL_DESC_UNSIGNED
                   Character Attr = (nil)
                   Buffer Length = 0
                   String Length = (nil)
                   Numeric Attribute = 0x7fffe146fff0
    [ODBC][26106][SQLColAttribute.c][648]
              Exit:[SQL_SUCCESS]
    [ODBC][26106][SQLSetStmtAttr.c][243]
              Entry:
                   Statement = 0x53bdd30
                   Attribute = SQL_ATTR_ROW_ARRAY_SIZE
                   Value = 0x1
                   StrLen = 0
    [ODBC][26106][SQLSetStmtAttr.c][636]Error: HY092
    [ODBC][26106][SQLGetDiagRec.c][710]
              Entry:
                   Statement = 0x53bdd30
                   Rec Number = 1
                   SQLState = 0x7fffe146fe48
                   Native = 0x7fffe146fec0
                   Message Text = 0x7fffe146fc30
                   Buffer Length = 510
                   Text Len Ptr = 0x7fffe146fec4
    [ODBC][26106][SQLGetDiagRec.c][747]
              Exit:[SQL_SUCCESS]
                   SQLState = HY092
                   Native = 0x7fffe146fec0 -> 0
                   Message Text = [[unixODBC][Driver Manager]Invalid attribute/option identifier]
    [ODBC][26106][SQLGetDiagRec.c][710]
              Entry:
                   Statement = 0x53bdd30
                   Rec Number = 2
                   SQLState = 0x7fffe146fe48
                   Native = 0x7fffe146fec0
                   Message Text = 0x7fffe146fc30
                   Buffer Length = 510
                   Text Len Ptr = 0x7fffe146fec4
    [ODBC][26106][SQLGetDiagRec.c][747]
              Exit:[SQL_NO_DATA]

Maybe you are looking for

  • How do I add text to photos using iphone4.

    My husband is a diesel mechanic and often needs to send photos of parts etc, it would be helpful if he could add text to the photo. doesnt need to be fancy fonts etc. just visable and adjustable. may need to add details like length, diameter, maybe a

  • Error in creating connection to Oracle in Visual Studio 2005

    Hi all, After installing Oracle 11 http://www.oracle.com/technology/software/htdocs/odtlic.html?url=/technology/software/tech/dotnet/utilsoft.html successfully, when I made a connection between Visual Studio 2005 to Oracle following this instruction

  • Rewcovery issues

    hello, the original HDD of my hp touchsmart 600 1205 failed so i changed it (Seagate 500GB, 7200 rpm). i recovered the system with recovery discs provided by HP. during Win7 setup i got the following message: Windows Setup could not configure Windows

  • Stills in the Palette

    I have over 5000 photos in iPhoto. Does DVD Studio Pro have a hard time processing this many photos. I am asking this because when I open up the palette and click on stills, the program basically stalls. It can't seem to open up all of the thumbnails

  • Copying Titles in Title Window causes PPro CS5 to crash

    Hi Community, when i copy a title in the title window, PPro CS5 crashes immediately after pressing "STRG+C" or right-click "Copy" (Windows) with a heavy error-message and premiere closes itself. This happens with Mercury Playback Engine ON and OFF. A