HELP NEEDED! Not Equal problem!!

Hi, I had written a page that does some validation and in the end if validation are done, insert records into the database.
However I am not sure why my not equals is not working, therfore not inserting records into the database.
WOuld appreciate if anyone can help me out.
     if(event.getSource() == RegisterButton)
               String user;
               //Get username and pwd
               user=txtusername.getText();
               String pass1=new String(txtpassword1.getPassword());
               String pass2=new String(txtpassword2.getPassword());
          if(user.equals("")||pass1.equals("")||pass2.equals("")) {
          JOptionPane.showMessageDialog (this, "Please entered all the fields");
          else if(!pass1.equals(pass2)) {
           JOptionPane.showMessageDialog (this, "Password does not match");
          //Connecting to database for retrival
               String data = "jdbc:mysql://localhost:3306/mydatabase";
               try {
               Class.forName("com.mysql.jdbc.Driver");
               Connection conn = DriverManager.getConnection(data, "root", "admin");
               Statement st = conn.createStatement();
               ResultSet rec = st.executeQuery("SELECT * FROM userInfo WHERE userID='" +user+"' ");
               while(rec.next()) {
               String users = rec.getString("userID");
                System.out.println(users);
                if(user.equals(users)) {
                JOptionPane.showMessageDialog (this, "Please enter a new username");
               if(!user.equals(users)) {
               st.executeUpdate("INSERT INTO userInfo VALUES (user,pass1)");
               st.close();
               catch (SQLException s) {
               System.out.println("SQL Error: " + s.toString() + " "+ s.getErrorCode() + " " + s.getSQLState());
               catch (Exception e) {
               System.out.println(" Error: " + e.toString() + e.getMessage());
               }the part that i highlighted is not working.

i have edited the codes,it insert but doesn't validate 1 of my requirement.
that is when it had the same username,it suppose to prompt user to enter naother new username.
now it inserts duplicate copies of it.
when i insert i also got an erorr saying operation not allowed after result set closed.
can help mi do some editing please.
thanks
     if(event.getSource() == RegisterButton)
               String user;
               //Get username and pwd
               user=txtusername.getText();
               String pass1=new String(txtpassword1.getPassword());
               String pass2=new String(txtpassword2.getPassword());
          if(user.equals("")||pass1.equals("")||pass2.equals("")) {
          JOptionPane.showMessageDialog (this, "Please entered all the fields");
          else if(!pass1.equals(pass2)) {
           JOptionPane.showMessageDialog (this, "Password does not match");
          //Connecting to database for retrival
               String data = "jdbc:mysql://localhost:3306/mydatabase";
               try {
               Class.forName("com.mysql.jdbc.Driver");
               Connection conn = DriverManager.getConnection(data, "root", "admin");
               Statement st = conn.createStatement();
               boolean allow=true;
               ResultSet rec = st.executeQuery("SELECT * FROM userInfo");
               while(rec.next()) {     
               String users = rec.getString("userID");
           //     System.out.println(users);
                if(user.equals(users)) {
                     allow=false;
                JOptionPane.showMessageDialog (this, "Please enter a new username");
               if(allow)  {
               st.executeUpdate("INSERT INTO userInfo VALUES ('"+user+"','"+pass1+"')");
               st.close();
               conn.close();
               catch (SQLException s) {
               System.out.println("SQL Error: " + s.toString() + " "+ s.getErrorCode() + " " + s.getSQLState());
               catch (Exception e) {
               System.out.println(" Error: " + e.toString() + e.getMessage());
          

Similar Messages

  • Help Needed in resolving problems with Hyperion Planning Web Forms

    Hi,Can anyone help me with this problem?Problem:We are running Planning 2.3.1 I have created Webform & security(application owner has the ownership).Somehow Iam getting only 7 dimensions into webform & 1 dimension is missing in that. But whereas 8 dimensions are there in Essbase.Hsp_Rates dimension is available in essbase outline but Iam unable to see that dimension in the webform selection.And using the webform Iam unable to load any data ...the form is graded/protected.Is this happening because i dont have the requirement of 1 member from each Dimension?Please someone let me know why this is happening what might be the reason.ThanksUser

    Hi,The dimension Hsp_Rates is a hide dimension used by Planning to store the exchange rates for the differentes exchanges.All the standard information is stored on HSP_InputValue member (in this dimension).When you create a web form, Planning automatically asign this member (but don't show it).Probably you can't load data because you are selected on Version dimension a Standard Botton Up version, and you only can load data on level 0 members in this type of version.If you want to load data on upper level members, then you need to create a Standard Target version (in the Version dimension) and select it in the form.Please, advice if this solve your problemClaudioBPD Solutions

  • Help needed with 848p problem

    hi allll
     i have buyed new MSI 848p Neo and i have the following hardware  
    CPU: 2 GHZ 533 P4
    Memery : 256 DDR 2700
    GC: MSI 848 p
    HD: WD 10 GB
    when i connacted everting only the processer  fan was working the hard drive and the CD doesnot work (POST)
    if i unplage the Hard drive and the CD it will work (POST)  
    the problem is the Pc doesnot Post only the processer  fan and i have blank screen ?
    help needed
    thanks  

    Try this.
    Put your optical drives like CD-ROM drive to IDE 1 and set as Primary Master aka Master mode and put your HDD to IDE 2 and set as Secondary Master aka Master mode also.
    Btw, what is your PSU specs?

  • Help needed in logic problem

    HI,
    I am trying to implement one marketing application, where the goods will be dispatched via some transportation. The receipt name is lr number or lrno. Some times for same lr no., 2-3 goods will be dispatched. Now, I am developing one application, if an user selects the from and to date from the web page, the web page should display all the lrno. Form date to to-date, its destination place and total amount, etc. These values are coming from backend.
    Eg.
    Trname      Lrno           dt          amt
    BLR     LR300          1/2/05          1000
    MUM     LR400          1/2/05          2000
    MUM     LR400          1/2/05          100
    MUM     LR400          1/2/05          200
    DL     LR600          3/2/05          1000
    My problem is if there are 2-3 goods for same lrno, the amounts should add up and final amount should come. Only in one record.(in one row). In the above example, for MUM 3 rows are there. So, the trname, lrno, dt shuld be same , but the total amount of all the three records should be added up and display.
    Expected output
    BLR     LR300          1/2/05          1000 as it is displayed
    MUM     LR400          1/2/05          2300// it should display like this.
    DL     LR600          3/2/05          1000 // as it displayed.
    My output as follows: I cold add the amount, but, each time, the record is displayed. Like this
    BLR     LR300          1/2/05          1000 //correct output
    MUM     LR400          1/2/05          2000 //this should not display
    MUM     LR400          1/2/05          2100 // this should not display
    MUM     LR400          1/2/05          2300 //Only this record should be displayed.
    DL     LR600          3/2/05          1000 //correct output
    Code sample as follows:
    <%
    while(rs.next())
              trfamt=rs.getInt("cfrta");
              String carnam=rs.getString("ccara").trim();
              String lrdt=rs.getString("clrd").trim();
              String lrnum=rs.getString("clrn").trim();
              brk="y";
              cnt1=0;
              cnt=cnt+1;
              out.println("Counter="+cnt);
              if(cnt==1)
                   subtot=trfamt;
                   tmp=lrnum;
              }//end of if(cnt==1) cndition
              else
                   if(lrnum.equals(tmp)) //compares whether two lrno are same or not.
                        brk="n";
                        subtot=subtot+trfamt; // if lrno are same, its amount is added up
                        //carnam1=carnam;
                        //lrnum1=lrnum;
                        System.out.println(lrnum+""+tmp+" "+"Lr numbers are same.totaling is continued");
                        tmp=lrnum;
                        cnt1=cnt1+1;
                        }//end of if     
                   else
                        if(cnt1==0)
                             subtot=0; // if lrno are different, fresh totaling is done
                             subtot=trfamt;
                             System.out.println("Lr numbers are different.Fresh Totaling is done");
                             tmp=lrnum;
                             }//end of if(cnt1=0)condition
                   }//end of else
                   }//end of if(cnt==1)condition else part
         if((cnt==1)||(brk.equals("y"))||(cnt1>0))
                        {%>
                        <TABLE>
                        <TR>
                             <TD><%out.println("Carier Name="+carnam);%></TD>
                             <TD><%out.println("Lrnumber="+lrnum);%></TD>
                             <TD><%out.println("Amount="+subtot);%></TD>
                        </TR>
                        </TABLE>
                        <%}
         }//end of while condition %>          
    How to correct this error ! please help me.
    With regards,
    AShvini

    Thank you Ram.
    I will try your code. ok, i took another look at it and dont see y it shouldnt
                            if(lrnum == mc.getLrNum())
                  //if this has already been added, just update amount
                  mc.addAmount(trfamt);
                  dupRecord = true;
                                               break; //it would work correctly even without this, but y do unnecessary iterations if id found
    ,/code]
    Since past 3 days, i am struggling with this bug. SO,
    i asked for line by line compilation. As u said, i
    tried to download IDE from www.ecllips.com, but,
    stuckup somewhere. so, i gave up.
      don't give up, install eclipse (or any other ide), it would do wonders to ur development effort.
    I will try with your code and get back to u.
       cool :-)
    ram.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Urgent help need on swing problem

    Dear friends,
    I met a problem and need urgent help from guru here, I am Swing newbie,
    I have following code and hope to draw lines between any two components at RUN-TIME, not at design time
    Please throw some skeleton code, Thanks so much!!
    code:
    package com.swing.test;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class LongguConnectLineCommponent
        public static void main(String[] args)
            JFrame f = new JFrame("Connecting Lines");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new ConnectionPanel());
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
    class ConnectionPanel extends JPanel
        JLabel label1, label2, label3, label4;
        JLabel[] labels;
        JLabel selectedLabel;
        int cx, cy;
        public ConnectionPanel()
            setLayout(null);
            addLabels();
            label1.setBounds( 25,  50, 125, 25);
            label2.setBounds(225,  50, 125, 25);
            label3.setBounds( 25, 175, 125, 25);
            label4.setBounds(225, 175, 125, 25);
            determineCenterOfComponents();
            ComponentMover mover = new ComponentMover();
            addMouseListener(mover);
            addMouseMotionListener(mover);
        public void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            Point[] p;
            for(int i = 0; i < labels.length; i++)
                for(int j = i + 1; j < labels.length; j++)
                    p = getEndPoints(labels, labels[j]);
    //g2.draw(new Line2D.Double(p[0], p[1]));
    private Point[] getEndPoints(Component c1, Component c2)
    Point
    p1 = new Point(),
    p2 = new Point();
    Rectangle
    r1 = c1.getBounds(),
    r2 = c2.getBounds();
    int direction = r1.outcode(r2.x, r2.y);
    switch(direction) // r2 located < direction > of r1
    case (Rectangle.OUT_LEFT): // West
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x + r2.width;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_TOP): // North
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y + r2.height;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    break;
    case (Rectangle.OUT_LEFT + Rectangle.OUT_TOP): // NW
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x + r2.width;
    p2.y = r2.y;
    if(r1.y > r2.y + r2.height)
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_RIGHT): // East
    p1.x = r1.x + r1.width;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_TOP + Rectangle.OUT_RIGHT): // NE
    p1.x = r1.x + r1.width;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    if(r1.y > r2.y + r2.height)
    p1.y = r1.y;
    else
    if(r1.y > r2.y + r2.height)
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_BOTTOM): // South
    p1.x = r1.x;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    break;
    case (Rectangle.OUT_RIGHT + Rectangle.OUT_BOTTOM): // SE
    p1.x = r1.x + r1.width;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    break;
    case (Rectangle.OUT_BOTTOM + Rectangle.OUT_LEFT): // SW
    p1.x = r1.x;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.x > r2.x + r2.width)
    p2.x = r2.x + r2.width;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    return new Point[] {p1, p2};
    private void determineCenterOfComponents()
    int
    xMin = Integer.MAX_VALUE,
    yMin = Integer.MAX_VALUE,
    xMax = 0,
    yMax = 0;
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.x < xMin)
    xMin = r.x;
    if(r.y < yMin)
    yMin = r.y;
    if(r.x + r.width > xMax)
    xMax = r.x + r.width;
    if(r.y + r.height > yMax)
    yMax = r.y + r.height;
    cx = xMin + (xMax - xMin)/2;
    cy = yMin + (yMax - yMin)/2;
    private class ComponentMover extends MouseInputAdapter
    Point offsetP = new Point();
    boolean dragging;
    public void mousePressed(MouseEvent e)
    Point p = e.getPoint();
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.contains(p))
    selectedLabel = labels[i];
    offsetP.x = p.x - r.x;
    offsetP.y = p.y - r.y;
    dragging = true;
    break;
    public void mouseReleased(MouseEvent e)
    dragging = false;
    public void mouseDragged(MouseEvent e)
    if(dragging)
    Rectangle r = selectedLabel.getBounds();
    r.x = e.getX() - offsetP.x;
    r.y = e.getY() - offsetP.y;
    selectedLabel.setBounds(r.x, r.y, r.width, r.height);
    determineCenterOfComponents();
    repaint();
    private void addLabels()
    label1 = new JLabel("Label 1");
    label2 = new JLabel("Label 2");
    label3 = new JLabel("Label 3");
    label4 = new JLabel("Label 4");
    labels = new JLabel[] {
    label1, label2, label3, label4
    for(int i = 0; i < labels.length; i++)
    labels[i].setHorizontalAlignment(SwingConstants.CENTER);
    labels[i].setBorder(BorderFactory.createEtchedBorder());
    add(labels[i]);

    If you need some help, be respectful of the forum rules and people will help. By using "urgent" in the title and bumping your message every 2 hours you're just asking to be ignored (which is what you ended up with).

  • Major help needed with date problem

    hi everyone, I have been working on this problem for so long, my brain is completely fried, really. the part of the project I have listed is just one of larger program that I have all figured out; this is the last part and I am just struggling to come up with a start. I think i need to use a for loop, but not quite sure.
    HERE IS THE PROBLEM:
    (2)     Prompt the user for a premium amount (in dollars and cents, but assume the user does not enter the $ sign), a start date and an end date for a policy term, and an effective date for a policy cancellation. Dates should be entered with three separate prompts for year, month, and day, in that order. Month will be a number between 1 and 12, and year will have 4 digits. Assume any pair of dates is possible, between January 1, 1900 and December 31, 2200. You may assume that the user always enters a valid date. You may also assume that the user enters a start date that is before the end date. Assume the cancellation effective date is between the start and end dates. You may also assume that the premium amount the user enters is a valid number.
    (5)     Using the start date, end date, premium and a desired refund amount (entered by the user), calculate the cancellation effective date required to produce an amount equal to or slightly larger than the desired refund amount
    if anyone is looking for some major duke stars, please post here . . .

    (5)     Using the start date, end date, premium and a
    desired refund amount (entered by the user),
    calculate the cancellation effective date requiredto
    produce an amount equal to or slightly larger than
    the desired refund amountCan you describe in precise detail--clear enough so
    that somebody who had no idea about this problem or
    the process could do it--the steps you'd take to do
    this without regard to Java?If I understand correctly, you need to find out what percentage of their policy they want to use (the refund they want back tells you what percentage of the premium they want back, so the rest is what they want to use). Then use that percentage to calculate the number of days they would have to use the policy to get that refund (you already know the total days, so total days * percentage = days until refund). Then you just need to find out what day is that many days after the start day. that would be when they would cancel. Hopefully that makes sense. I am still trying to have it make sense for me. I can't figure out how to code this.

  • Help needed. Having problems loggin in to my computer

    Hi,
    I recently upgraded to Mac os X 10.5, and since then I have been having all kinds of problems loggin in to my computer. It is not recognizing my password. I reset the Admin password using the install dvd disc, but that still didn't help. I loggin but I don't have access to any of my files or documents. Could someone please help.
    Thanks in advance.

    you really need to decide if you are going to reinstall or try to fix your current system. I just posted a long answer to your other thread.
    is your current account listed as admin in system preferences?
    and what happens if you try to log into your old account?
    Message was edited by: V.K.

  • Helped needed. PPPoE problem

    In trying to secure my wireless connection, I changed a lot of the router's default settings. Somewhere along the line, I have lost the ability to get to the internet on the Linksys. Here are the sys details.
    WIN XP
    Westell 2100 broadband modem
    Linksys WRT54G
    I usually have everything set so that the Westell is in Bridged mode. The problem was nothing was secure.
    Here is what is on the Linksys.
    PPPoE,  
     User Name:  It is correct.
                             Password:          It is correct.                      
                             Service Name:                                      
                            Connecton Demand : Max Idle Time  5  Min.                 
                            KeepAlive : Redial Period    Sec.       180    
                 Optional Settings
    (required by some ISPs)
                             Router Name:                           
                                         Host Name:                              
                             Domain Name:                                     
                             MTU:                           
                             Size:                             
    Network Setup                                                                                     
    Router IP                                 Local IP Address:         .   .  .                           
                             Subnet Mask:                           
    Network Address
    Server Settings (DHCP)                                   DHCP Server:             Enable  Disable             
                             Starting IP Address:     192.168.1.                  
                             Maximum Number of  DHCP Users:                             
                             Client Lease Time:         minutes (0 means oneday)                  
                             Static DNS 1:   .  .   .                          
                             Static DNS 2:   .  .   .                          
                             Static DNS 3:   .  .   .                          
                             WINS:              .  .   . 
    IP address: 192.168.1.101
    Mask is correct
    Gateway:   192.168.1.1
    There are no ACCESS Restrictions, no MAC Filters, Wireless Security is currently DISABLED. I have pushed the reset button on the Linksys (and the Westell, too) trying to fix things and  nothng changed.
    Here is what is on the desktop.
    Dhcp enabled:                   Yes 
    Autoconfiguration enabled: Yes 
    IP address:                       192.168.1.101
    Subset Mask:                    255.255.255.0
    Default Gateway:               192.168.1.1
    Dhcp Server:                     192.168.1.1
    DNS servers:                     192.168.1.1 
    I have done power cycles to no avail. 
    Any help will be appreciated. 

    Since you have Resetted your Modem and Router. Connect the Modem to Computer and check if you are able to go online or not. If yes, then on your computer open the Command Prompt window and type "ipconfig" and hit enter and post the details output in your next post.
    If the IP address of your Modem is in the range of your Router, then your modem is Unbridge so you need to Bridge your Modem again. 

  • Help needed with Layout problem

    Hello everybody
    I need to insert components such as buttons in a JPanel using absolute positioning
    I still cant dot this
    even if I used the method setLocation for the component
    I wanna know if I have to change the default layout for JPanel or whatever
    thanks a lot

    i found this quite useful:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html#border
    dont know if it will specifically help with your absolute positioning problem.

  • Help needed with connection problem before I chew off my foot.

    I am on 24/7 with Virgin.
    From last Friday, my connection telephone number has been constantly engaged.
    BT tell me it is not a valid number (?).
    I can access the internet just by changing the number in remote access to the one I'm using now - a pay by the minute number.
    This leads me to believe thay my settings are correct - as they have been for a considerable time.
    Virgin have responded once with a standard reply confirming the telephone number (useless) to four e-mails. There is an unconnected (no pun intended) 'server' problem with their 'online help'.
    I am on Netscape or IE, external Zoom modem and I haven't done anything which might alter my settings.
    Any help would be much appreciated - even sympathy might make me feel better!
    Please bear in mind that I am a techno-idiot with any advice offered.
    Thanks in advance.

    I get a perpetual 'engaged' tone with a mechanical woman telling me that the number is busy, please try later.
    The 'helpline' is a premium number. Cleverly, I have had premium numbers blocked on my 'phone line to defeat the fraudsters re-directing calls.
    This means that I have to use someone else's 'phone to call a premium number!
    Since last Friday, I have sent a total of six e-mails to Virgin and received one 'standard' reply which was of no help.
    I agree that it seems like an ISP problem.
    However, perhaps someone could kindly talk me through the things I ought to be checking on my computer (in words of one syllable where possible!).
    Thankyou in anticipation.

  • Help needed with permissions problem in new Aperture 3.5.1

    Hello and thank you for helping me with my first question to this wonderful support center. I have been using Aperture for many years. I recently upgraded my Mac to Mavericks, now running 10.9.2. and then upgraded (by necessity) to Aperture 3.5.1. I am working on a big project for a client and have an assistant in another city. I live outside the US so mailed  my library to my asst. on an external drive. She updated to 10.9.2 or .3 and Aperture 3.5.1. No problems. She modified the library and sent the library to the client in another city in the US on an external drive who has also upgraded to  Mavericks and is running Aperture 3.5.1.  So we are all in Mavericks with recent Apertures. When client tried to open the sent library client got a message that stated:
    "Aperture cannot access this library. To use this library, make sure its file permissions are set correctly.”
    Clientʻs Tech assistant at her office is a PC specialist but apparently did try on Friday and did try to repair permissions but I am told that it did not work. I wish I had more specific info on what Tech assistant did but I do not at this time.
    On Monday I would like to give them very specific instructions about what to do to open the library
    For recent discussions I have found only this
    https://discussions.apple.com/message/23600132#23600132
    Oct 30, 2013 3:35 PM by Frank Caggiano
    about repairing permissions.
    I am sure that we are all running Mavericks and new Aperture, that does not seem to be at the root of  the immediate problem. As we are in two different countries and three different cities and communication is hard, please tell me if this is a common problem with an easy fix and if it should be fixed by Repairing Permissions, please tell me exactly what I should tell them to do on Monday. They can at least see this discussion from their city!
    Many thanks!! This is an urgent project so I very much appreciate your help.

    Have your collegues check the file system of the drive and the "Ignore Ownership on this volume" flag.
    To check the filesystem and "Ignore ownership" flag select the drive in the Finder and use the command "File > Get Info ⌘i"
    In the panel unlock the padlock in the "Sharing & Permissions" brick and set the "Ignore ownership" flag at the bottom of the panel.
    Also, check the "General" brick of the panel. The format should be showing as "Mac OS Extended (Journaled)". Aperture checks for the correct formating before opening a library and may refuse to open a library on a drive formatted for Windows.
    If the format is wrong, it would be best to move the library to a different drive with the correct formatting.
    Once the "Ignore ownership" flag is set, try again to repair the permissions and see, ifyou now can open the library.

  • Urgent Help needed- Not able to schedule reports in BI Publisher

    Hi,
    I have configure the scheduler service on my windows server. Now i am trying to schedule a report from BI pubisher. But it is not working. When i click submit button, It is not doing anything. It seems it adds entry in the job schedule table. Even when i click schedules link, it shows just show progress status on explorer status bar but nothing happens.
    Any help would be on this would be highly appretiated.
    Thanks,
    Prasad

    Hi Prasad,
    Are you still having the problem? Which version of BI Publisher are you running? If you are running an earlier version, then upgrade it to 10.1.3.3.3 and the problem gets solved. We also had the same problem when we were on 10.1.3.3.0 and now it's gone after we upgraded. Hope this helps.
    -MS

  • More help needed on m2v problems!

    I have also been having problems when I try to import compressed (using Compressor) video files in SP 4. I have repaired file permissions and shortened the name of the file (as recommended in previous posts), but every time I try to import the file into SP, it closes the program and gives me an error report. When I try to open the file by itself, if opens Droplet. When I hit "submit," it freezes the program. Also, other compressed video files (that I have burned DVD's with in the recent past) don't work. They all do the same thing. It was all working fine last week (about two months after I upgraded Production Suite), and all of a sudden it's making me loose hair.
    Another thing I should mention: I have very little space left (1.89 GB) on my internal hard drive. This filled up very quickly, and I'm not quite sure how. When I started my computer yesterday, I had 5.5 GB. Before that, I had even more, though I'm hazy on the details. Anyway, I would GREATLY appreciate any help that's out there! Thanks!

    One thing (which may or may not help) is clearing off you hard drive, 1.89 Gigs on 80 Gigs will lead to the computer slowing down considerably, anything over 80% seems to be the number of more problems creeping up, and you should clear out as much as possible. With temp files, virtual memoory etc, it causes issues

  • Help needed - K7N2G-ILSR problem

    I just got a K7N2G-ILSR mobo and after I installed it, I get an error "NO DRIVE ATTACHED TO FASTTRACK CONTROLLER. NO BIOS INSTALLED"
    I downloaded the latest bios and flashed it but I still get the same error.  
    When I am in the setup, it recognizes my harddrive (which is a Maxtor IDE).
    I'm not using serial ATA.
    Please help me figure this out.

    the problem is that after i get that error message, it takes me to the windows safe mode menu.  after i pick a windows mode to start up with, it re-boots only to bring me back to the original error message.
    i can't boot into windows.
    here are my specs if this helps any...
    K7N2G-ILSR
    Athlon XP 2600
    Corsair XMS pc2700 512mb ram
    Maxtor hard drive (8gb)

  • Help needed Hard disk Problem

    I am not very computer Savoy!. But every time I turn my laptop on it keeps freezing up on me and I get a massage that says I am having a Hard Disk Problem and that I should back up all my files before the computer crashes. And I would like to what I should do to fix this? I thought that I could reload my operating system but my computer did not come with that disk and I can't seem to find it here on this web site. Any idea's?

    Without knowing specifically which model you have it's difficult to tell for sure, but most Toshiba's made in the past few years come with a Recovery Partition.  You can invoke the Recovery Process by holding down the 0 (zero) key while turning the computer on and holding it down until the Recovery Process starts.  You can also create a set of Recover Disks from the Recovery partiton by going to "Start - All Programs - Toshiba - Recovery - Recovery Disk Creator". 
    As for the error message about Hard Disk Problem, that could mean that the hard drive is starting to malfuncion and will soon stop functioning at all.  You need to determince what brand of hard drive your's is, go to that companies support site, download their Diagnostic Program, install it, and run the most exhaustive test to determine if it is failing or not. 
    And please backup you important data as soon as humanly possible as there is a good chance you will lose it forever.
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

Maybe you are looking for

  • Ipod recognized by windows but not seen in explorer or itunes. only charges

    I recently had to reimage my hard drive. Once I got everything back to the way it was, I reinstalled iTunes and the iPod software. However, whenever I try to connect my iPod mini to my computer, Windows will recognize it as a new device and get a "Fo

  • How can i browse that files which is save in its o...

    I cant browse that downloads which is save in browser's folder. I cant play it music or video player. It only open with that particular browser. Can I move it in my sd card

  • Mac Mini from 2010 with Dell U2711 resolution question

    I just hooked up a Dell U2711 monitor with the DVI cable. I should be able to get a resolution of 2560x1440 with that, but the highest res I have in my System Prefs is 1920x1080. Does anyone know what I need to do to get the max resolution?

  • PGI Should get block - without material cost in material master

    Hi All, The scenario is we want to show error message while doing PGI if the material does not have any material cost in material master. How it is possible? Will we able to do with standards? Scenario: Material cost is nil in the material master, sy

  • Failure in proxy use

    Hi everyone,    I have a problem with offline editing in a roundtrip between After Effects CC and Premiere Pro CC. I'll tell you exactly what I am doing, maybe someone can point what I'm doing wrong. I use Windows 7.    So I intend to edit and do the