Oracle UCM/IPM Issue - Urgent Solution needed

Hi folks,
Solution needed for the below problem in oracle IPM/UCM cluster .
General Scenario :
The document checked in Oracle UCM can be viewed through IPM Viewer only if the security group of the document is set to a IPM Profile .
The IPM Profile is created in Oracle UCM Configuration Manager Component whenever a application is created in IPMServer .
Issue in Clustering :
IPMApplication created in host 1 is creating profile in UCM Component Manager of host 1 but not in UCM Host2 component manager (Vice Versa).
This affects url generations of checked in documents through proxy since the IPM profile is not available in cluster.
Scenario :
IPM MetaData UCM Component Manager(Profile)
Host1 Host2 Host1 Host2 Host1 Host2
IPM_APP_1 Visible Visible Visible Visible Not Visible
Visible IPM_APP_2 Visible Visible NotVisibe Visible

hi
Error Message is- "Invoiced quantity is greater than mother invoice quantity".
this error means your Depot invoice quantity is high, please check your mother invoice quantity, its means branch invoice quantity , and depot invoice quantity , is deferent so , please check both invoice quantity ,
and also check you migo,
ME21N-VL10B-VL02N-VF01-J1IIN-MIGO-VA01-VL01N-J1IJ-VF01, in this process you can do J1IG , Its process
me21n-vl10b-vl02n-vf01-j1iin-migo-j1ig-va01-vl01n-j1ij-vf01, this is process of depot sales, so please check this process

Similar Messages

  • Oracle UCM/IPM Issue

    Hi Team ,
    Please help me with the following issue which need to be resolved asap.
    Issue in Clustering :
    IPMApplication created in host 1 is creating profile in UCM Component Manager of host 1 but not in UCM Host2 component manager (Vice Versa).
    This affects url generations of checked in documents through proxy since the IPM profile is not available in cluster.
    Scenario :
    IPM MetaData UCM Component Manager(Profile)
    Host1 Host2 Host1 Host2 Host1 Host2
    IPM_APP_1 Visible Visible Visible Visible Not Visible
    Visible IPM_APP_2 Visible Visible NotVisibe Visible
    Thnaks in advance for a solution .
    Thanks & Regards ,
    Muthukumar

    Hi,
    Thanks for your response.
    I have tested HelloWorld Project.
    It's giving Output: Hi Weblogic
    Then i go for HelloBPEL project
    Before test this HelloBPEL. I run script. that script given by oracle. I Re-deployed into soa_server. It's successfully Deployed. I tested in EM console. It's created one instanceID.
    Then I login into Oracle IPM console. Test the HelloBPEL project
    and Using below
    SolutionNamespace: HelloBPEL
    CommandNamespace: SartHelloBpel
    Username: weblogic
    It's showing this error:- javax.ejb.EJBException: EJB Exception: ; nested exception is: oracle.bpel.services.workflow.client.WorkflowServiceClientException: javax.naming.NamingException: String index out of range: -1; nested exception is: oracle.bpel.services.workflow.client.WorkflowServiceClientException: javax.naming.NamingException: String index out of range: -1

  • Oracle 9i OMS Login issues - URGENT help needed !

    Hi,
    I am a new user for ORACLE 9i (windows 2003 server ) and I am in deep trouble! I need to take backup of an existing database in our production server but I cannot login to the OEM as I do not know the sysdba ( userid & Password). The worst part is that no one knows the Admin userid & password.
    I can login to the standalone database using the sys password.
    Question1 : Is there any other way to login in the OMS ???
    Question2: Is there any other way of taking backup of the Database ???
    Message was edited by:
    PC5

    Question1 : Is there any other way to login in the OMS ???
    Use system user login , Also once you can login as sysdba on sqlplus
    you change password as well
    Alter user sys identified by <password> ;
    Alter user system identified by <password> ;
    Question2: Is there any other way of taking backup of the Database ???Yes you can take backup manually as well but,
    What kind of backup you want to take logical or physical backup ?
    Virag

  • [b]Connection to Oracle DB per JDBC URGENT HELP NEEDED PLEASE![/b]

    Hallo,
    I'm a newbie. I want to make a connection to the oracle db on the server and I have been having serious problems. See CODE and ERROR MESSAGEs below:
    import java.sql.*;
    public class SqlConnection01 {
         public static void main(String[] args) {
              Connection con = null;
              Statement stmt = null;
              try {
                   Class.forName("oracle.jdbc.driver.OracleDriver"); //Loading the Oracle Driver.
    con = DriverManager.getConnection
         ("jdbc:oracle:thin:@38.218.2.227:1521:testdb","data","test"); //making the connection.
                   stmt = con.createStatement ();// Sending a query to the database
                   ResultSet rs = stmt.executeQuery("SELECT mand,kost,ktest,kok FROM test");
                        while (rs.next()) {
                             String mandt = rs.getString("1");
                             String kostl = rs.getString("2");
                             String ktest = rs.getString("3");
                             String kokrs = rs.getString("4");
                             System.out.println( mandt + kostl ktest kokrs );
              } catch(Exception e) {
                   e.printStackTrace();
              } finally {
                   try
                        if(stmt != null) stmt.close();
                        if(con != null) con.close();
                   } catch (Exception exception) {
                        exception.printStackTrace();
    ERROR MESSAGE:
    java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=153092352)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:334)
         at oracle.jdbc.ttc7.TTC7Protocol.handleIOException(TTC7Protocol.java:3695)
         at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:352)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:362)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:536)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:328)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at SqlConnection01.main(SqlConnection01.java:24)
    What am I doing wrong here. I am using Oracle9i client installed on my pc (Release 2 (9.2.0.1.0) for Windows ) so I downloaded the ojdbc14 drivers for this version and I copied them in my bin directory C:\j2sdk1.4.2_06\bin\ojdbc14 .
    Secondly I can connect to the db per command line( sqlplus /nolog; conn data/test@testdb) and querry the testdb.
    I can also test the connection using oracle Net Manager and the test is successful.
    But I can't start up the lsnrctl on my pc.I get this message any time i issue the command(C:\>lsnrctl
    'lsnrctl' is not recognized as an internal or external command, operable program or batch file.)
    What am I doing wrong here? What should I do to have this connection possible. Thanks very much in advance.

    oh sure! Below is the TNSNAMES I copied from my PCfound in(C:\oracle\ora92\network\admin\SAMPLE) The next thing could be how could I get access to the TNSNAMES on the server?
    STARTS HERE:
    <alias>= [ (DESCRIPTION_LIST =  # Optional depending on whether u have
                        # one or more descriptions
                        # If there is just one description, unnecessary ]
         (DESCRIPTION=
         [ (SDU=2048) ]     # Optional, defaults to 2048
                        # Can take values between 512 and 32K
         [ (ADDRESS_LIST=    # Optional depending on whether u have
                        # one or more addresses
                        # If there is just one address, unnecessary ]
         (ADDRESS=
              [ (COMMUNITY=<community_name>) ]
              (PROTOCOL=tcp)
              (HOST=<hostname>)
              (PORT=<portnumber (1521 is a standard port used)>)
         [ (ADDRESS=
              (PROTOCOL=ipc)
              (KEY=<ipckey (PNPKEY is a standard key used)>)     
         [ (ADDRESS=
              [ (COMMUNITY=<community_name>) ]
              (PROTOCOL=decnet)
              (NODE=<nodename>)
              (OBJECT=<objectname>)
    ... # More addresses
         [ ) ] # Optional depending on whether ADDRESS_LIST is used or not
         [ (CONNECT_DATA=
              (SID=<oracle_sid>)
              [ (GLOBAL_NAME=<global_database_name>) ]
         [ (SOURCE_ROUTE=yes) ]
         (DESCRIPTION=
         [ (SDU=2048) ]     # Optional, defaults to 2048
                        # Can take values between 512 and 32K
         [ (ADDRESS_LIST= ]     # Optional depending on whether u have more
                        # than one address or not
                        # If there is just one address, unnecessary
         (ADDRESS
              [ (COMMUNITY=<community_name>) ]
              (PROTOCOL=tcp)
              (HOST=<hostname>)
              (PORT=<portnumber (1521 is a standard port used)>)
         [ (ADDRESS=
              (PROTOCOL=ipc)
              (KEY=<ipckey (PNPKEY is a standard key used)>)
         ...           # More addresses
         [ ) ]           # Optional depending on whether ADDRESS_LIST
                        # is being used
         [ (CONNECT_DATA=
              (SID=<oracle_sid>)
              [ (GLOBAL_NAME=<global_database_name>) ]
         [ (SOURCE_ROUTE=yes) ]
         [ (CONNECT_DATA=
         (SID=<oracle_sid>)
         [ (GLOBAL_NAME=<global_database_name>) ]
         ... # More descriptions
         [ ) ]     # Optional depending on whether DESCRIPTION_LIST is used or not
    I think this is the example of what is in the TNSNAMES. It hasn't got the infos I need here.It just explain.

  • Photosmart C7280 was installed & working - now will not install - URGENT solution needed

    All in one was working fine. Is on Network. Dell Workstation is wired and so is all in one. Other computers are laptops - wireless working fine.  For an unexplained reason the software on the Dell stopped working - fax, scan, etc. But it would print but gave error messages.  So I uninstalled it and downloaded the latest software from theHP website.  First time trid to install - error message in the checking process - second part and uninstalled and did a check of the hP site but timed out. rebooted. Tried again after downloading from HP again. THis time it got to the install stage but once again an error. repeat process and this time downloaded a solution. Followed the steps in the solution - msconfig including firewall, rebooting, etc. Unsuccessful again.  Now have no printer on Dell and need to have it working as I have assessment taskc due on weekend and can't print them.  Need solution to solve this issue.

    When you said you try to download it from the website. Did you click INSTALL on the driver or did you download and save it first on your computer? You may want to try and download and save it on the desktop. Once download is complete, manually start the installation by double clicking it on your desktop.
    Aside from that, try to install just the drivers?
    So when you're installing the driver/software, it will give you a screen where you can check the box for the user license agreement right? and above that is a 4 link that would say: Internet Connection Usage, Select a software (can't remember the rest of the two options) Click on the internet connection usage and choose the following options:
    -First question: NO, I'll do it myself
    -Second question: NO, thank you
    -Press OK to go back to the main screen
    This time, click on the SELECT A SOFTWARE TO INSTALL
    -Uncheck everything. except the very top of the list which is grayed out; That's the driver of the printer
    -There might be other software installed on your pc already that would say "already installed" you can ignore that since it will be grayed out. You need to uncheck those things that you can uncheck.
    -Click Ok to go back to main screen.
    -Proceed with the installation.
    I hope that works for you.
    ---Click KUDOS if you want to say THANKS.

  • Direct Deposit Issues Urgent Help needed

    We recently switched to DD. We had a new employee come in and give us incorrect account info. So when payroll was run, this employee did not get money in his account. It went to a different account.
    I need help asap on how you all handle this situation? Is there any way for us to generate a NACHA file to do a debit to the incorrect account? If not, how do you handle this at your company? We have even opened a SR and they are telling us the application can't do this. There has to be a way to correct errors and we don't know what this is.
    Please help us and let me know how you all handle DD errors like this. We are needing to find a solution to this as quickly as possible.
    thanks
    Ronnie
    [email protected]

    Yep, you are in a tough situation there. Trying to take money out of an account is a whole different story from putting money into an account. Technically you need the approval of the account owner to do a debit to the incorrect account. My suggestion - contact your bank and ask them how best to recover this money from the account that it went to. I am surprised that the receiving bank accepted the deposit. Surely you are including the employee name in the ACH detail, correct? Normally such an error would come back as a reject. You would void the payment and issue a new payment (either check or ACH).
    What we do here is that the first week we do a prenote entry for an employee. No dollars. You are not required to do a prenote, but it can save you a lot of problems. We also ask the employee to provide a blank (voided) check from their checking account. That helps avoid getting bad information from an employee. Anyway, if the employee gives you bad information, the pre-note should come back with a reject, you would go back to the employee and get the right data, reset the prenote process and do another pre-note, and once good, start doing the ACH payment.
    So I suggest - 1) Find out why this payment was not rejected but accepted into the wrong account, 2) Do a prenote process, and 3) Have employees submit a check (voided) with their ACH request form. Do steps 2 and 3 and you should not have errors. But do ask your bank what they recommend doing if a payment does get accepted to the wrong account.
    John Dickey

  • Problem...urgent solution needed

    The problem is... table A and table B are related with B as parent table and A child. The value of id (primary key) of table B needs to be populated with the column Bid when the following where condition satisfies.
    A.x=B.x and A.y=B.y and A.z=B.z for every value of A
    My problem is to create either a procedure, a function or a package which populates the value of B.id in table A with the above where condition for id value of A
    I created a function which gives me the return value of Bid but unable to update the table as several ids of table A have the same value of Bid.
    select A.id into bid from A,B where A.x=B.x and A.y=B.y and A.z=B.z;
    return bid;
    but in the same function I am unable to update
    update A set bid=bid;
    taking the return value from the function. I am unable to understand why? I am pretty weak in pl/sql kindly help me if am making some mistake. I NEED HELP FAST...THANKS IN ADVANCE
    Can anyone suggest me the solution?

    Thank you so much. I tried the update statement in two ways
    1)by putting just the update statement in the function. it gave an error which says
    4/1 PL/SQL: SQL Statement ignored
    5/23 PL/SQL: ORA-00925: missing INTO keyword
    2) I tried my another function where i retrieve the value of
    begin
    SELECT a.ID INTO V_a_ID
    FROM a,
    b
    WHERE a.x= p_ID
    AND a.y = code
    AND upper(TRIM(a.z)) = upper(p_S_NAME)
    AND (to_number(nvl(P_H_N,'0'))
    BETWEEN to_number(a.h) AND
    to_number(a.hb))
    AND substr(P_q,1,5) = substr(a.q,1,5)
    AND upper(P_r) = upper(a.r) and b.id=bid
    RETURN V_a_ID;
    update a set adrlib_id=(select b.id from b where a.x=b.x and a.y=b.y and a.z = b.z and (a.r between b.r and b.r1));
    in the second instance, the retrieval of bid works fine but the update is ignored. please suggest. I also want to mention that for every value of a.id there are more than one values of bid. so the update will return more than one rows. kindly help.

  • Urgent Solution needed--Problem in JSP compilation with JDK 1.5 and JDK 1.6

    Hi,
    I m using JDK 1.5 and Tomcat 5.0 the problem is that after starting server when I m going to access my application at that time instead of displaying HomePage it directly display the blank page on screen.
    After analyzing tomcat log I have found that there was a problem with JSP page compilation.
    The exception logged in Tomcat Log is given below
    An error occurred at line: 1 in the generated java file
    The type Collection is not generic; it cannot be parameterized with arguments <? extends E>
    Stacktrace:
    *     at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:92)*
    *     at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)*
    *     at org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:423)*
    *     at org.apache.jasper.compiler.Compiler.compile(Compiler.java:308)*
    *     at org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)*
    *     at org.apache.jasper.compiler.Compiler.compile(Compiler.java:273)*
    *     at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:566)*
    *     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)*
    *     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)*
    *     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)*
    *     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)*
    *     at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:654)*
    *     at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:447)*
    *     at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:379)*
    *     at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:292)*
    *     at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:424)*
    *     at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:343)*
    *     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:144)*
    *     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)*
    *     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)*
    *     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)*
    *     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)*
    *     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)*
    *     at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)*
    *     at java.lang.Thread.run(Thread.java:619)*
    After getting this kind of error I have analyzed my code furhter then I came to know that there was problem with static include tag.
    In my jsp page I have used following line which is the main cause of error
    <%@ include file="top.jsp" %>If I ommit this line then it is working properly.
    Instead of static include I have used jsp:include also.
    Still I m getting same problem.
    We have to migrated from JDK 1.5 to 1.6 and Tomcat 5.0.28 to 6.0.14, still same problem is there.
    We have tried a lot but didnt get success to overcome this problem.
    If anybody having any solution then ur each reply will be appreciated.
    Thanks in advance..........!!!!!!!
    Edited by: JBOSS2000 on Jan 15, 2008 9:29 AM

    Hi "mshanu" and "amit" Thanks for ur replies Here I m posting the code of "top.jsp"........!!!!
    <%@ page errorPage="errordisplay.jsp"%>
    <table cellpadding="0"
           cellspacing="0"  height=50 width=780>
           <tbody>
             <tr class="header">
               <td class="logo"><IMG SRC="assets/Logo.gif" BORDER=0 ALIGN=top></td>
               <td align="right"><span class="applicationtitle"><%@ include file="/contents/logo.htm" %></span><br>
               <span class="companyname"><%@ include file="/contents/companyname.htm" %></span></td>
             </tr>
            </tbody>
    </table>To include top.jsp I have tried
    <jsp:include page="top.jsp" flush="true">
    </jsp:include>
             AND       
    <%@ include file="top.jsp"%>but none of this worked.
    If I remove the include then It is working properly.
    But I need inluded file too so that I am wondoring for the solution.
    This problem seems very wiered to me. I dont know why it is happening.
    This problem is started only when I used the TOMCAT 6.14.
    Is it the bug of TOMCAT 6.14 or What somebody Plz help.
    I got stuck here.........!!!!!!!!!!
    It doesn't seem any problem with top.jsp. As per my thinking the problem is there in include due to that it doesn't compile the JSP page in Tomcat 6.0.
    Earlier I am having same code running on the Tomcat 5.0.28 and JDK 1.5.0.
    But problem occured when I have used Tomcat 6.x...!!

  • Licence Issue  --urgent help needed

    Hi all,
    I'm working on a configuration management for a OWB data warehouse environment.
    The client is going to buy two iDS package for two developers involved in OWB development.
    Can anyone answer two outstanding questions from the DBA who is going to implement the configuration stuff?
    Q1: Do we need additional licence of iDS on QA server and Production server? Or we can install iDS on more than one server but limit the use to these two developers?
    Q2: Do we need to buy extra licence ($1200 for each named user) for the schemas created when using OWB, including: owb (Build Repository),
    rtr( Run Time Owner),
    rtu( Run Time Access User)
    two target schema (one for staging, one for data warehouse schema).
    If yes, do we need to buy for all the servers(Development, QA, Production).This is realy painful to ask client to buy just because we choose to use OWB.
    Besides, there is another owbrt_sys created by OWB. Licence also needed for this one?
    You may suggest me talk to the Local Oracle representative. Yes, the DBA did. And DBA got different answers from different guy like:
    Answer 1: You don't need to buy iDS on QA and Prod servers as you can just copy your schemas (exp/imp) from Development to QA and Production where you can just run your ETL script generated from OWB.
    (I'm surprised for this)
    Answer 2: Install Runtime repository on Servers where you don't have OWB installed by doing a remote installation. So we don't need OWB(iDS licence for thise servers).
    Sounds good idea and smart. But I failed to do that. The error message shows like :
    INS0034: The Database Server needs to be configured by
    Running Runtime Repository option locally. Please run
    The Runtime Assistant on the Server where the database
    Is located.
    But I can do the remote install of runtime repository after install OWB on the server.
    Thanks for anything about this from your experience or knowledge.
    Daming

    Damming,
    iDS is licensed per developer - if you have 2 developers, you need to buy 2 licenses, if 3, 3 licenses etc. There is no license for the runtime.
    You need to have an Enterprise edition Oracle DB license though.
    Regards:
    Igor

  • Wlan Security Issue urgent help needed

    Dear Community,
    i have a wlc 5500  with two ssids for employees and contractors
    both ssids with layer2 security WPA+WPA2 and auth key mgmt 802.1x are authenticated with ACS 5.0 (active directory) for users access and are working fine after windows adapter setting
    but my question is, can i do some thing like
    authentication with acs 5.0 (active directory) for users access but without windows adapter seting????
    i mean without changing any setting on windows adapter ( leave it as default).
    if i can then how i can???
    or i cann't do that i mean there is not any option to do that?
    plz give me your seggustions i need urgent help on this topic.

    thanks for your reply George
    it seems only for 802.1x authentication key methode needs windows adaptor changing as per you.
    is there any other option to configure wlan scurity with acs (MS active Dir) user authentication like
    let me tell you something
    i want when any client will try to connect any wlan he ll just prompted to use his username and password(of active directory) without doing any changes in window adapter setting???
    i don't care layer 2 security will be whatever like wpa+wpa2 with 802.1x OR something else
    can i do that or no ??
    if yes i can than what type of security?
    please don't tell me about webauthentication i already know about that and i ll use that mothed for GUSET-Wlan.
    kindly reply me soon 
    Thanks

  • Connect by loop in user data: urgent solution needed

    Hai iam using oracle9i and my problem is
    in my client place we r developing a report
    of bill_of_materials and it seems the data
    is having some recursive nature.
    iam getting connect by loop in user data: how to avoid it in oracle9i.
    i have two tables prm010ebomh1 and prm010ebomh2.
    now 1st table consists of the product and 2nd table consists of the components
    forming the product.
    a good solution is welcomed.
    My query is:
    SELECT DISTINCT B.SL_NO,A.FITEM_CD,B.SITEM_CD,
    LPAD(C.ITEM_DESC,LENGTH(C.ITEM_DESC)+(LEVEL*2)-2,' ') AssyLevel,
    b.qty
    from prm010ebomh a, prm010ebomd b,m032item c
    where a.fitem_cd=b.fitem_cd
    and a.type=b.type
    and a.comp_cd=b.comp_cd
    and a.comp_cdch=b.comp_cdch
    and a.comp_cd='IFA'
    AND A.COMP_CDCH='D01'
    START WITH A.FITEM_CD='A0150100'
    CONNECT BY A.FITEM_CD=PRIOR B.SITEM_CD
    ORDER SIBLINGS BY B.SL_NO.

    Modify the data so that the circular references are avoided.
    ORA-01436 CONNECT BY loop in user data
    Cause: The condition specified in a CONNECT BY clause caused a loop in the query, where the next record to be selected is a descendent of itself. When this happens, there can be no end to the query.
    Action: Check the CONNECT BY clause and remove the circular reference.

  • Urgent solution needed please

    Hi everyone,
    I am having a problem when i am trying to upload image to MysqlUSING jsP USER INTERFACES. I am using mozilla as a browser on Mandrake Linux platform. I am calling a bean Images.java which when run in konsole mode its working fine and image is getting uploaded.
    i am not able to understand why i cant upload using the JSP.
    hope u refer to my question and give me a solution for this.
    thanks,
    Harish.

    Check out UploadBean. It allows to upload files in a database.
    http://www.javazoom.net/jzservlets/uploadbean/uploadbean.html

  • Urgent solution needed for the Problem ( get all the combination from table

    we are having a table in following format
    day | grpID | pktID
    sun | 1 | 001
    sun | 1 | 002
    sun | 1 | 003
    sun | 2 | 007
    sun | 2 | 008
    sun | 2 | 009
    mon | 1 | 001
    mon | 1 | 002
    mon | 1 | 003
    mon | 2 | 007
    mon | 2 | 008
    mon | 2 | 009
    tue | 1 | 001
    tue | 1 | 002
    tue | 1 | 003
    tue | 2 | 007
    tue | 2 | 010
    1. We have a combination of pkdIDs related with a specific grpID, for a particular day.
    Ex: For Sunday, we have two combination list for grpID=1 is (001,002,003) and for group id = 2 is (007,008,009)
    2. We need to get all the available combined pktid for each group id for all the days .
    Eg the the expected result that is needed from the above table
    (001,002,003)
    (007,008,009)
    (007,010)

    SQL> with tbl as
      2  (select 'sun' d, 1 grp, '001' pk from dual union all
      3   select 'sun' d, 1 grp, '002' pk from dual union all
      4   select 'sun' d, 1 grp, '003' pk from dual union all
      5   select 'sun' d, 2 grp, '007' pk from dual union all
      6   select 'sun' d, 2 grp, '008' pk from dual union all
      7   select 'sun' d, 2 grp, '009' pk from dual union all
      8   select 'mon' d, 1 grp, '001' pk from dual union all
      9   select 'mon' d, 1 grp, '002' pk from dual union all
    10   select 'mon' d, 1 grp, '003' pk from dual union all
    11   select 'mon' d, 2 grp, '007' pk from dual union all
    12   select 'mon' d, 2 grp, '008' pk from dual union all
    13   select 'mon' d, 2 grp, '009' pk from dual union all
    14   select 'tue' d, 1 grp, '001' pk from dual union all
    15   select 'tue' d, 1 grp, '002' pk from dual union all
    16   select 'tue' d, 1 grp, '003' pk from dual union all
    17   select 'tue' d, 2 grp, '007' pk from dual union all
    18   select 'tue' d, 2 grp, '010' pk from dual) -- end of data sample
    19  select distinct '('||ltrim(max(c1) keep (dense_rank last order by lv),',')||')'
    20  from   (select d,grp,level lv,sys_connect_by_path(pk,',') c1
    21          from   tbl
    22          connect by d=prior d and grp = prior grp and pk > prior pk)
    23  group by d,grp;
    '('||LTRIM(MAX(C1)KEEP(DENSE_RANKLASTORDERBYLV),',')||')'
    (001,002,003)
    (007,008,009)
    (007,010)
    SQL>That works on 9i. Other possiblities on 10g.
    Nicolas.

  • BBM Z10 not opening after app updates...​.Urgent solution needed please!!!.

    I did some applications updates yesterday and since then the BBM application on my Z10 refuse to open. Applications updated were afrinolly(v1.4.3.2), Adobe reader(10.1.0.4), box(1.2.0.79), and blackberry maps(10.0.0.639).Have tried the hard reset but it still refuse to open. Please what's wrong and what can I do. Thanks.

    Hi and Welcome to the Community!
    Anytime random strange behavior or sluggishness shows up, the first thing to try is a proper reboot:
    Pre-BB10 Devices ONLY. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.
    BB10 Devices. Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. If this fails, you can attempt the battery-pull method above, but it is normally NOT recommended unless nothing else works.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • ERD Design Issue Urgent help needed .

    Hi ,
    I'm designing a movie theatre system . I was drawing the ERD Diagram but I'm stuck .
    One theatre can have many movies and One movie can be run on many shows .So I have created seperate Theatre and Movie tables and another associative table containing only MovieID and Theatre ID .
    Now number of shows in a theatre are fixed .. Morning ,Evening and Night .
    The problem comes when I want to find which movie is running on which theatre and what is the show timimg . If I create another table as show table having theatre id and showid (say 1 is Morning and so on ) then how to relate that with movie .I tried a lot but not being able to find out .
    How will I design the tables so that they are in 3rd Normal form .Its a bit urgent.
    Please help me out .
    Regards,
    Rahul .

    Hi Rahul
    If I were you, then to make it flexible i would have tables for
    1) Theatre
    2) Movie
    3) Show
    4) movie_show_theatre_mapping
    And according to your design it should be
    1) Theatre
    2) Movie
    3) Show table with foreign key to theatre
    4) Show_movie_mapping
    Here you can find the movie timing at a particular theatre by quering
    show_movie_mapping and show table where theatre id is a foreign key in show table.
    Regards

Maybe you are looking for

  • What is this Project Builder For

    Hello Readers. i want to know why do we use project builder in short also is it used for creating a setup file for the project. Please mention some proper names for project builder books for oracle 8 available in the market. Thank you

  • Jaseper with JSP coding

    Hi frnds, I need full coding for displaying Jasper report using JSP. Kindly help me to sort out the problem.

  • Passing values dynamically in bulk collect

    1. hi for ex 5 account number in a table packages each account number is having of 30 records with the column aol and new(values are in 0 or 1) i need to copare fro old column and new column values and return if 0 and 1 means return 1 0 and 0 means 0

  • How do I add copyrights and legal info in Robohelp 9?

    I am creating Context Sensitve help in Robohelp 9.  Is there a way to add copyrights and legal info?

  • VO Attribute displaying lookup meaning for code

    Hi experts, How to make a VO attribute display lookup meaning for the code stored in DB into the query results table? Regards Ari