From keyword not Found error

Brief History :
Before our application is running in websphere5.0 now i migraded to websphere 6.0.Now our application is running in websphere 6.0.In our application we have written all our quries in one .xml(SelectRepository.xml....) file.
Problem:
while i am going through my application(while doing searching,inserting and updating) i am getting some query problem.we are using one parser for parsing these .xml repositories.
Problem Description :
If our query is in 4 lines,the first line is mixed with second line,if there is no space after fist line.
My Doubt of problem:
we are using 3 common .jar files in websphere 5.0 and websphere 6.0
names xalan.jar,xerces.jar,xsl.jar.
My doubt is whether can i use same files for websphere 6.0 or i have to use some other files.
Final description :
Plz provide help me out in the query problem.it requires space in each line ending of every query.

Brief History :
Before our application is running in websphere5.0 now i migraded to websphere 6.0.Now our application is running in websphere 6.0.In our application we have written all our quries in one .xml(SelectRepository.xml....) file.
Problem:
while i am going through my application(while doing searching,inserting and updating) i am getting some query problem.we are using one parser for parsing these .xml repositories.
Problem Description :
If our query is in 4 lines,the first line is mixed with second line,if there is no space after fist line.
My Doubt of problem:
we are using 3 common .jar files in websphere 5.0 and websphere 6.0
names xalan.jar,xerces.jar,xsl.jar.
My doubt is whether can i use same files for websphere 6.0 or i have to use some other files.
Final description :
Plz provide help me out in the query problem.it requires space in each line ending of every query.

Similar Messages

  • 'FROM keyword not found where expected'error while Inserting into Text file

    Hi,
    I have created a simple interface for testing purpose. All it has to do is to Read the data from a Source Text file and put it into another text file (exactly the same headers as that of source) ...
    I am using Oracle as my staging area.
    But at 'Insert column Header' Stage, it gives me a warning 'FROM keyword not found where expected' and when it goes to the next step 'Insert Rows' it gives me the same error 'FROM keyword not found where expected' and aborts its execution.
    I checked the query for insertion and found nothing wrong in it (FROM Statement is just where it is expected, that is) but somehow its not working.
    Can somebody help me out as i have done it before on other Installations and dont know why it is occuring that too for the simplest thing in ODI ...
    Regards,
    Nitesh.

    Probably you missed the concat operator.
    select rpad(nvl(lu_parid,' '),1,19)|| v_comma ||
    rpad(nvl(lu_class,' '),1,3)
    from temp_te07                                                                                                                                                                                                                                                                                                           

  • ORA-00923:FROM KEYWORD NOT FOUND WHERE EXPECTED

    I have nade a oracle ODBC TO MS-EXCEL.While writting query in microsoft query editor I got the error msg
    ORA-00923:FROM KEYWORD NOT FOUND WHERE EXPECTED
    The following query runs fine on sql plus editior
    wht could be the reason ,pls guide me
    select ORDR_H.ORDERDT,ordR_h.orderno,ordr_h.partycd "CODE",
    DECODE (PARTY_M.PARTY_TY,1,'TRADE',2,'NTR'),
    party_m.party_n1,c1.citee_nm "Stockist Place",
    c.citee_nm "CONSIGNEE PLACE"
    from citee_m c,citee_m c1,ordr_h,ordr_d,party_m
    where
    ordr_h.orderno=ordr_d.orderno
    and c.citee_cd=ordr_h.destncd
    and c1.citee_cd=party_ct
    and ordr_h.partycd=party_m.party_cd
    and ordr_h.orderdt>='01-jan-09'
    order by 2,3

    One thing that comes to mind is that ODBC does not allow Oracle-specific syntax.

  • I am getting error from keyword not found where expected

    I am unable to find the error in the following query... its giving from key word not found where expected
    select ms.state_name,sum(decode(mp.status,'12',1,0)) cnt_active,sum(decode( mp.status,'12',mh.chargesheet_name,0)) sum_active,
    sum(decode(mp.status,'18',1,0))) cnt_inactive, sum(decode( mp.status,'18',mh.chargesheet_name,0)) sum_inactive,
    sum(decode(mp.status,'',1,'5',1,'16',1,'17',1,0)) cnt_expired, sum(decode( mp.status,'',mh.chargesheet_name,'5',mh.chargesheet_name,'16',mh.chargesheet_name,'17',mh.chargesheet_name,0)) sum_expired
    from mst_pindetails mp,mst_batchno mb,mst_chargesheet_hdr mh,mst_state ms where mp.swhbatchcode=mb.swhbatchcode and mb.chargesheetno = mh.chargesheet_code
    and trim(ms.state_id) = mb.statecode group by state_name

    ok working no problem

  • Getting an error -from keyword not found where needed.

    plzz reaply asap!!!
    what is wrong with the query???
    SELECT
    aaa.user_id
    aaa.ispeak,
    SUM (round(aaa.aduration_seconds/decode(aaa.ispeak,0,offpeakpulse,peakpulse))*decode(ispeak,0,offpeakpulse,peakpulse)) DURATION,
    srt.circle,
    srt.package_id ,
    srt.peak_rate ,
    srt.offpeak_rate ,
    srt.bst_plantype ,
    srt.free_value ,
    srt.peak_pulse ,
    srt.offpeak_pulse ,
    srt.pulse_unit ,
    srt.rating_unit
    FROM aaa_sessions aaa, subscriber_rate_tab srt
    WHERE aaa.user_id = srt.externalid(+)
    AND (aaa.start_time_utc between srt.activedt and srt.inactivedt)
    AND (aaa.end_time_utc between srt.activedt and srt.inactivedt);

    That's why formatting is important, you missed comma in the very first line. aaa.user_id. Always try to write formatted code, for example:
    SELECT aaa.user_id,
           aaa.ispeak,
           SUM(round(aaa.aduration_seconds /
                     decode(aaa.ispeak, 0, offpeakpulse, peakpulse)) *
               decode(ispeak, 0, offpeakpulse, peakpulse)) DURATION,
           srt.circle,
           srt.package_id,
           srt.peak_rate,
           srt.offpeak_rate,
           srt.bst_plantype,
           srt.free_value,
           srt.peak_pulse,
           srt.offpeak_pulse,
           srt.pulse_unit,
           srt.rating_unit
      FROM aaa_sessions aaa, subscriber_rate_tab srt
    WHERE aaa.user_id = srt.externalid(+)
       AND (aaa.start_time_utc between srt.activedt and srt.inactivedt)
       AND (aaa.end_time_utc between srt.activedt and srt.inactivedt);Now there is another thing about you group function SUM. But I am leaving that up to you sort it out.

  • 2.1 EA 1: ORA-00923: FROM keyword not found where expected

    Hi,
    there is a simple table which results in this error when opening the data tab. All other tabs are ok. In 1.5 the table can be opened with the data tab.
    Columns:
    ID     NUMBER     No          1
    PARENT_ID     NUMBER     Yes          2
    NODE_NAME     VARCHAR2(50 BYTE)     Yes          3
    KREDFILIALE     VARCHAR2(50 BYTE)     Yes          4
    VALID_FROM     DATE     Yes     to_date('20081001','yyyymmdd')     5
    VALID_TO     DATE     Yes     to_date('20090930','yyyymmdd')     6
    LEVEL     NUMBER(2,0)     Yes          7
    LIEFERANTENNR     VARCHAR2(50 BYTE)     Yes          8
    SCGROUP     NUMBER     Yes          9
    Regards,
    Juergen

    logged Bug 9000729 - ea1: otnforum: datatab fails to open for a reserved keyword column name
    -Raghu

  • File not found error from scheduler

    Hi,
            We have a scheduler file with .cfa extension  in the cf scheduler  which trigger some mails to certain recipients on execution.
    At the bottom option fo the scheduled task, we have checked the option to 'save output to file' and has given the file
    path. On direct execution of the given url, the  file is executed successfully and mails are fired.
    But while trying to execute the same via scheduler it is not firing the mails. On investigation of the output file,
    found the error message 'File not found'.
    Is it possible that the file get  executed when directly browsing the url and shows 'file not found' error
    while executing via cf scheduler?(CF 8 is used.)

    To be more specific,
    the url format given in the cf admin scheduler is like this:
    "http://www.domainname.com/myfolder/myfile.cfa"
    A file path to log the output is also given to publish.
    If we copy the above url to a browser and execute, the file gets executed and mails are fired.
    If we set the interval or run the scheduler from the administrator,mails are not sent.On examination of log file given in the scheduler section, it is
    showing error '/myfolder/myfile.cfa' file not found.

  • File not found error (404) from web browser

    I installed 901 DB on different Oracle home and iAS 1.0.2.2 in a
    different Oracle home. The ifsconfig went thru fine.
    However I am unable to access the login page ( I executed
    ifsapachesetup ). I tried to access
    http://<machine>:<port>/servlet/files.
    I see the following error in Jserv.log
    ajp12: Servlet Error: NoClassDefFoundError:
    oracle.ifs.protocols.dav.impl.IfsDavServlet
    On the browser I get File not found error ( HTTP 404 )
    Do I need to perform additional steps on Solaris machine ( apart
    from executing apache setup script ).
    Please help me.

    Make sure you have started all the services:
    - ifsjservctl -start
    - ifslaunchdc
    - ifslaunchnode
    - ifsstartdomain
    all are in the iFS bin directory.
    Keith

  • Operation not found error while calling AM methods from managed bean

    Hi,
    operation not found error while calling AM methods from managed bean.
    written a method with two parameters in AM.
    exposed the method in AM client interface
    in the page bindings added the method in method action ..left empty in the value fields of the parameters.
    calling the method from managed bean like below
    String userNameVal = (String)userName.getValue();
    String passwordVal = (String)password.getValue();
    OperationBinding operationBinding =
    ADFUtils.findOperation("verifyLogin");
    operationBinding.getParamsMap().put("userName",userNameVal);
    operationBinding.getParamsMap().put("password",passwordVal);
    operationBinding.execute();
    i am getting operation verifyLogin not found error.Please suggest me something to do.
    Thanks
    Satya

    Hi vlsn,
    Can you try with the below code
    // in your backing bean
    OperationBinding operation = bindings.getOperationBinding("verifyLogin");
    //Put your both parameters here
    operation.getParamsMap().put("parameter_name1", parameterValue1);
    operation.getParamsMap().put("parameter_name2", parameterValue2);
    operation.execute();
    if (operation.getResult() != null) {
    Boolean result = (Boolean) operation.getResult();
    and share the result.
    regards,
    Rajan

  • Can't Download from iTunes Store - "Requested Resource Not Found" Error

    I am trying to download a couple of (free) apps for my iPhone and iTunes is throwing up an error saying "The requested resource was not found. There was an error in the iTunes Store. Please try again later." Is anyone else having this issue at the moment? Is the store down?

    It has been a few hours now. Same problem. "Resource Not Found" error when trying to download apps from the iTunes store. Anyone else having this problem? Anyone NOT having this problem? Anyone?

  • When I call VI on Linux from Teststand on Windows using TCP/IP I get "file not found error".any sugeestions?

    I am trying to execute a VI running on Linux from Teststand running on windows 2000 prof ,both running on two different machines.I used TCP/IP for the interface using the following steps on Labview VI:tools>options>VIserver>TCP/IP and gave the ip address of both the machines.When I gave the file path as c:\home\test.vi in Edit labview Vi call window(the Vi in linux is stored in /home/test.vi)and also in remote vi path:/home/test.vi,I get a file not found error.The teststand version is 3.0 and labview is 7.0.Any idea why this is happening and any solutions?

    priya guru,
    Here is a knowledge base that addresses your question: �How do I call test VIs that reside on a non-Windows platform from TestStand?�
    You also need to set TCP/IP Access found in Tools->Options->'VI Server: TCP/IP Access'. Make sure that you list the IP address in the Access List to allow TCP/IP access to that machine. Finally you need to specify which VIs are accessible to remote applications. Open up Tools->Options->'VI Server: Exported VIs' and provide paths to the VIs you wish to be remotely accessible.
    I have attached an example VI that demonstrates VI Server in action. Please post back if you are still having problems. Good luck!
    Cr
    aig H.
    National Instruments
    Attachments:
    Remote_Run_--_VI_Server.zip ‏88 KB

  • When i try to share a movie to idvd from imovie i get a file not found error

    when i to share a movie from imovie to idvd i get a file not found error can anyone help?

    Hey ninimac!
    Here is an article that can help you troubleshoot this issue with burning DVDs in iDVD:
    iDVD: Troubleshooting issues with burning discs
    http://support.apple.com/kb/ht1583
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • 404 not found error from BB Protect download

    Hi,
    My sync/charge contact has broken off, so I am trying to download Blackberry Protect directly onto the phone.  Every the browser seems to work fine, but every time I click 'Download Protect', whether from Google or within Blackberry's site logged on with BlackberryID, I get the 404 : Not found error on my phone.
    Is it impossible to download directly, do Blackberry have a problem with downloads at the moment or is there another issue?
    Thanks,
    Tom

    Hi,
    My sync/charge contact has broken off, so I am trying to download Blackberry Protect directly onto the phone.  Every the browser seems to work fine, but every time I click 'Download Protect', whether from Google or within Blackberry's site logged on with BlackberryID, I get the 404 : Not found error on my phone.
    Is it impossible to download directly, do Blackberry have a problem with downloads at the moment or is there another issue?
    Thanks,
    Tom

  • 404 page not found error after upgrade to 4.0 from 3.x

    We developed this application in 1.6 and a couple years ago upgraded to 3.2. We've just upgraded the Production version to 4.0.0 (that's what was on the Dev box). I understand that the template we used when developing it is now obsolete and I added some stuff to make it work properly (found tips here). In Dev it seemed to work correctly but now that it's in production we're getting a 404 Page not found error which "seems" to only occur after a search returns some results and you change the search criteria and try to rerun the search with this modified criteria without first leaving that page (if you click to a different tab and back before changing the search criteria you don't get the error). It doesn't matter which criteria field you change (date, text, LOV) the error comes up consistently. The criteria is submitted via a button (Go request). It's a PL/SQL function body returning SQL query. The only processes that are run is a Reset Pagination on the Go request.
    Is there some quick setting that can be changed that causes this? Or something in 4.0 that is different that I need to change when submitting a page, etc... I can't see anything in the debug & all the variables do have appropriate values.

    A column in the search results was changed to a Simple Checkbox when we upgraded to 4.0 (it has always been a checkbox in the older APEX versions). When I put it back to Standard Report Column I no longer get the page not found error.
    Is there some additional/different setting I need to do in order to use the simple checkbox option in a search results set?
    ETA: I see now that Checkboxes are not intended to work in standard report regions so I'll change them to LOVs or something and my problem should be solved.
    Edited by: mimi_jones on Jul 18, 2011 6:16 AM

  • 'dimension attribute was not found' error while refresing the cube in Excel

    Dear All,
    Thanks for all your support and help.
    I need an urgent support from you as I am stuck up here from nearly past 2-3 days and not getting a clue on it.
    I have re-named a dimension attribute 'XX' to 'xx' (Caps to small)in my cube and cleared all dependencies (In Attribute relationship tab as well).
    But while refreshing the data in excel client (of course after processing the full cube) I get an error
    'Query (1, 1911) the [Dimension Name].[Hierarchy Name].[Level Name].[XX] dimension attribute was not found' error.
    Here I am trying to re-fresh an existing report without any changes with the new data.
    Does not it re-fresh automatically if we clear the dependencies or there something that I am missing here (Like order of the dependencies).
    Cube processed completely after modifications and able to create new reports without any issues for same data. What else could be the reason?
    Can some one help me here?
    Thanks in Advance and Regards,

    Thnaks alot Vikram,
    In se11  ,when i was trying to activate the  /BIC/FZBKUPC , it is showing the warnings  like
    Key field KEY_ZBKUPCP has num. type INT4: Buffering not possible, Transport restricted.What it means.
    In PErformance Window it is showing like:
    A numeric type was used for a key field. A table of this sort cannot be buffered.When buffering, the table records for numeric values cannot be stored in plain text.
    Procedure
    You can enter "no buffering" as an attribute of the technical settings and then repeat the activation process. The table is not buffered.
    If you want to buffer the table, you must replace the type in the key field by a character type, i.e. that you must modify the table.
    Please adivice with your valueable suggestyions.
    Thanks Vikram.

Maybe you are looking for