N82 map loader error...PLZ HELP!!!

  I' have a problem with my map loader and I hope someone can help me. When I try to open map loader on my PC it gives me an error saying:
'' unhandled exception has occured in a component in yr application. If u click continue the application will ignore his error error and attempt to continue.
  Font 'Tahoma' does not support style 'Regular' ''
What I supposed to do? How can I change that font thing? Please help...
thank you....

Hi theog
In "Add or Remove Programs" do you have "Microsoft .NET Framework 2.0" or later?
Do you see "Tahoma" listed under the Fonts folder which is under the WINDOWS folder?
Happy to have helped forum in a small way with a Support Ratio = 37.0

Similar Messages

  • Map loader error!Help

    Hi,
    My phone is N95 8GB.
    I have an error when using the map loader.
    Below are my detail step.
    1.change to "Data transfer mode" , there are message occur "USB data transfer mode activated.Mass memory may not be used during this time." Is it correct?
    2.execute Map Loader (v1.2)
    there are message occur "An unexpected error occurred.Try again.Sorry for the inconvenient."
    Is any one know jow to resolve it???
    thanks a lot.

    07-Jan-2008 03:04 PM
    jamestw wrote:
    Hi,
    My phone is N95 8GB.
    I have an error when using the map loader.
    Below are my detail step.
    1.change to "Data transfer mode" , there are message occur "USB data transfer mode activated.Mass memory may not be used during this time." Is it correct?
    2.execute Map Loader (v1.2)
    there are message occur "An unexpected error occurred.Try again.Sorry for the inconvenient."
    Is any one know jow to resolve it???
    thanks a lot.
    Hello jamestw
    I can help you with the first question. I can say thats normal. I always get that message, but I have no problem with it.
    The other qestin might have to do with problems on the map server? Have you tried again? Try re-installing Map Loader!

  • Map loader / error loading catalog

    Hi there,
    i have a problem with the "map loader" and my Nokia 5800 XM.
    ... the map loader worked as i bought the phone some months ago. Everything worked fine. Today i had to do a reset. The map is still working, but i cant get the map loader to work.
    After the start of the program and sync with the 5800 XM im getting an errormsg (in german but im trying to translate).. "cannot load the catalog of the 5800 xm"
    Thats it. I googled whole day, but found no solution... so this forum is my last help right now.
    It worked (today) before i have done the reset so im thinking that its not my OS (Windows7 64bit).
    thx in advance
    Murt

    one more thing.. i have updated the FW today to the newest available. 50.0.005
    found also another thread here /t5/Maps-Navigation-and-GPS/Map-Loader-error-while-loading-catalogue/td-p/624895/page/2
    might be an FW problem then?

  • Payment error.plz help me

    We are into problem while processing your request.
    (PS1036ti)
    Confim purhase error
    Plz help me
    #Amir

    When I want to use my credit card and set it in my Q5 this error comes,I do,kt know what should I do???
    #Amir

  • Nokia Map Loader Error in connection

    Hi Guys,
    I have an N80 and have the MAPS software installed on my phone and the Nokia Map Loader software on my Laptop. However, in order for me to download the maps I have to connect my N80 to my laptop in Data Transfer Mode and then run Nokia Map Loader. This should then allow me to download the Maps. I get an error when connecting to my laptop in Data Transfer Mode. It just says Invalid usb connection or something like that. No I don't think it is the maps software but I would like to know if any of you had the same problem before and how it can be resolved. I sent a note to Nokia Tech team to see if they know but it takes a while for them to get back to you.
    So, does anybody know how I can get past this or get the MAPS downloaded?
    Any advice would be greatly appreciated.
    Cheers

    can´t connect nokia map loader, error, won´t work?
    I had this same problem, found your post looking for an answer (lol), and I just SOLVED the problem ; )
    First, you don´t connect in data transfer mode. You must use pc suite mode, or it won´t work.
    Second, (and this is the tricky part), YOU HAVE TO INSTALL nokia maps on your smartphone (so far ok, we all know this), but then you have to RUN THE PROGRAM ONCE.
    Don´t ask me why, but if you just install nokia maps, then try to connect with nokia map loader, it won´t work. You have to install the program then run it once. Exit the program, then connect to you pc (nokia map loader) with pc suite mode.
    BTW, do NOT install nokia maps on your smartphone on the phone memory. ALWAYS USE THE CARD MEMORY, install nokia maps on your memory card, because the maps are so huge. Most phones won´t have enough internal space.
    So this is it, no more suffering. Damn, I´m good ; )
    Message Edited by unsterblich on 17-Jan-2009 03:54 PM

  • Adding "window to a container:illegal argument exception".error plz help

    Thanks to Mr.Andrew and sun for developing the following code for a
    mediaplayer which is implemented in jmf.This is working in core java. But
    when i have converted it to Applet it compiles but an error adding "window
    to a container:illegal argument exception".code is given below plz point
    me where is the error;
    import javax.media.*;
    import java.text.DecimalFormat;
    import java.awt.*;
    import java.awt.FileDialog;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    class nwa extends WindowAdapter{
    frameclass frame;
    public nwa(frameclass frame){
    this.frame=frame;
    public void windowClosing (WindowEvent e)
    //User selected close from System menu.
    //Call dispose to invoke windowClosed.
    frame.dispose ();
    public void windowClosed (WindowEvent e)
    //if (player != null)
    //player.close ();
    System.exit (0);
    class frameclass extends JFrame
    frameclass(){
    nwa n=new nwa(this);
    this.addWindowListener(n);                    
    public class PlayerApplet extends JApplet
              implements
    ActionListener,ControllerListener,ItemListener, KeyListener
    frameclass frame=new frameclass();
    Player player;
    Component vc, cc;
    JProgressBar volumeBar;
         JButton fastRewind;
         JButton fastForward;
         JButton play;
    int sizeIncrease = 2;
    boolean invokedStop = false;
         /** Big */
         int progressFontSize=30;
    boolean first = true, loop = false;
    String currentDirectory;
    public void init(){
    JMenu m = new JMenu ("File");
    JMenuItem mi = new JMenuItem ("Open...");
    mi.addActionListener (this);
    m.add (mi);
    m.addSeparator ();
    JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem ("Loop", false);
    cbmi.addItemListener (this);
    m.add (cbmi);
    m.addSeparator ();
    mi = new JMenuItem ("Exit");
    mi.addActionListener (this);
    m.add (mi);
    JMenuBar mb = new JMenuBar ();
    mb.add (m);
    frame.setJMenuBar (mb);
    setSize (200, 200);
         final JPanel p = new JPanel(new GridLayout(1,0,5,5));
              p.setBorder(new EmptyBorder(3,5,5,5) );
              fastRewind = new JButton("<html><body><font size=+"+
    sizeIncrease+ "><<");
              fastRewind.setToolTipText("Fast Rewind");
              fastRewind.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             skipBack();
                        } else {
    JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file
    first!"));
              fastRewind.addKeyListener(this);
              p.add(fastRewind);
              JButton stop = new JButton("<html><body><font size=+"+
    sizeIncrease+ ">&#9632;");
              stop.setToolTipText("Stop");
              stop.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        invokedStop = true;
                        //player.stop();
                        sp();
              stop.addKeyListener(this);
              p.add(stop);
              play = new JButton("<html><body><font size=+"+
    sizeIncrease+ ">>");
              play.setToolTipText("Play");
              play.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             player.setRate(1);
                             st();
                        } else {
    JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file
    first!"));
              play.addKeyListener(this);
              p.add(play);
              fastForward = new JButton("<html><body><font size=+"+
    sizeIncrease+ ">>>");
              fastForward.setToolTipText("Fast Forward");
              fastForward.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             skipForward();
                        } else {
    JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file
    first!"));
              fastForward.addKeyListener(this);
              p.add(fastForward);
              p.addKeyListener(this);
              frame.add(p,BorderLayout.CENTER);     
              add(frame);
    // pack ();
    setVisible (true);
    public void start(){
    st();
    public void stop(){
    sp();
    public void destroy(){
    player.stop();
    player.deallocate();
    public void actionPerformed (ActionEvent e)
                   if (e.getActionCommand().equals("Exit"))
                   // Call dispose to invoke windowClosed.
                   frame.dispose ();
                        return;
         FileDialog fd = new FileDialog (frame, "Open File",
    FileDialog.LOAD);
         fd.setDirectory (currentDirectory);
         fd.show ();
         // If user cancelled, exit.
              if (fd.getFile() == null)
         return;
    currentDirectory = fd.getDirectory ();
              if (player != null)
         player.close ();
         try
         player = Manager.createPlayer (new MediaLocator
    ("file:" +
    fd.getDirectory() +
    fd.getFile()));
         catch (java.io.IOException e2)
    System.out.println (e2);
    return;
         catch (NoPlayerException e2)
    System.out.println ("Could not find a player.");
    return;
              if (player == null)
         System.out.println ("Trouble creating a player.");
         return;
    first = false;
    frame.setTitle (fd.getFile ().toString());
    player.addControllerListener (this);
    player.prefetch ();
    public void controllerUpdate (ControllerEvent e)
    if (e instanceof ControllerClosedEvent)
    if (vc != null)
    remove (vc);
    vc = null;
    if (cc != null)
    remove (cc);
    cc = null;
    return;
    if (e instanceof EndOfMediaEvent)
    if (loop)
    player.setMediaTime (new Time (0));
    player.start ();
    return;
    if (e instanceof PrefetchCompleteEvent)
    player.start ();
    return;
    if (e instanceof RealizeCompleteEvent)
    vc = player.getVisualComponent ();
    if (vc != null)
    add (vc);
    cc = player.getControlPanelComponent ();
    if (cc != null){
         this.add (cc, BorderLayout.SOUTH);
                        this.show();
    public void keyReleased(KeyEvent ke) {
    int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyTyped(KeyEvent ke) {
         int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyPressed(KeyEvent ke) {
              int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
              }else if (keycode==KeyEvent.VK_UP) {
                   st();
              }else if (keycode==KeyEvent.VK_DOWN) {
                   sp();
    public void skipForward() {
    double secs=5;
    double playersecs = player.getMediaTime().getSeconds();
    Time settime = new javax.media.Time(playersecs + secs);
    player.setMediaTime(settime);
    public void skipBack() {
              double secs1=5;
    double playersecs1 = player.getMediaTime().getSeconds();
    Time settime1 = new javax.media.Time(playersecs1 - secs1);
    player.setMediaTime(settime1);
         public void st() {
         player.start();
         public void sp() {
         player.stop();
    public void itemStateChanged (ItemEvent e)
    loop = !loop;
    When i comment add(frame) this error goes but i got a null poiter
    exception
    Plz help
    manu

    Hi Andrew,
    Thanks for ur reply.Sorrry that my code not included in the code block.
    My problem have been solved partly.Now playerapplet is working properly.It can play files from local machine(through open menuitem from file menu) as well as local network (through url menuitem from file menu).
    There is no requirement to play file from internet at present.
    I have given arrow keys to forward/backward/open/close.
    I have now completed my first part of project.Now i have to start the second part ie Controlling arrow keys using a joystick like instrument.The instrument and driver will be provided by my co. and the user is using only this device.Plz help me how to do that.
    The code is given below
    import javax.media.*;
    import java.text.DecimalFormat;
    import java.awt.*;
    import java.awt.FileDialog;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    <APPLET CODE=PlayerApplet.class
    WIDTH=320 HEIGHT=300>
    </APPLET>
    class nwa extends WindowAdapter
         frameclass frame;
         Player player;
         public nwa(frameclass frame,Player player)
          this.player=player;
          this.frame=frame;
         public void windowClosing (WindowEvent e)
          //User selected close from System menu.
          //Call dispose to invoke windowClosed.
          frame.dispose ();
          public void windowClosed (WindowEvent e)
              if (player != null)
                   player.stop();
                player.close ();
                   player.deallocate();
          System.exit (0);
    class frameclass extends JFrame
    Player player;
         frameclass(Player player)
         nwa n=new nwa(this,player);
         this.addWindowListener(n);                    
    public class PlayerApplet extends JApplet
               implements ActionListener,ControllerListener,ItemListener, KeyListener
               Player player=null;
               frameclass frame=new frameclass(player);
                 Component vc, cc;
                 Container f;
                 JProgressBar volumeBar;
                 JButton fastRewind;
              JButton fastForward;
              JButton play;
              int sizeIncrease = 2;
              boolean invokedStop = false;
              /** Big */
              int progressFontSize=30;
                 boolean first = true, loop = false;
                 String currentDirectory;
                 public void init()
                          f=frame.getContentPane();
                         JMenu m = new JMenu ("File");
                         JMenuItem mi = new JMenuItem ("Open...");
                         mi.addActionListener (this);
                         m.add (mi);
                         m.addSeparator ();
                         mi = new JMenuItem ("URL");
                         mi.addActionListener (this);
                         m.add (mi);
                         m.addSeparator ();
                         JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem ("Loop", false);
                         cbmi.addItemListener (this);
                         m.add (cbmi);
                         m.addSeparator ();
                         mi = new JMenuItem ("Exit");
                         mi.addActionListener (this);
                         m.add (mi);
                         JMenuBar mb = new JMenuBar ();
                         mb.add (m);
                         frame.setJMenuBar (mb);
                         setSize (500, 500);
                           JPanel p = new JPanel(new GridLayout(1,0,5,5));
                        p.setBorder(new EmptyBorder(3,5,5,5) );
                        fastRewind = new JButton("<html><body><font size=+"+ sizeIncrease+ "><<");
                        fastRewind.setToolTipText("Fast Rewind");
                        fastRewind.addActionListener( new ActionListener(){
                             public void actionPerformed(ActionEvent ae) {
                                  if (player!=null) {
                                       invokedStop = false;
                                       skipBack();
                                  } else {
                                       JOptionPane.showMessageDialog(play,
                                       new JLabel("Open a sound file first!"));
                        fastRewind.addKeyListener(this);
                        p.add(fastRewind);
                        JButton stop = new JButton("<html><body><font size=+"+ sizeIncrease+ ">&#9632;");
                        stop.setToolTipText("Stop");
                        stop.addActionListener( new ActionListener(){
                                  public void actionPerformed(ActionEvent ae) {
                                       invokedStop = true;
                                       sp();
                        stop.addKeyListener(this);
                        p.add(stop);
                        play = new JButton("<html><body><font size=+"+ sizeIncrease+ ">>");
                        play.setToolTipText("Play");
                        play.addActionListener( new ActionListener()
                                  public void actionPerformed(ActionEvent ae) {
                                       if (player!=null) {
                                            invokedStop = false;
                                            player.setRate(1);
                                            st();
                                       } else {
                                            JOptionPane.showMessageDialog(play,
                                            new JLabel("Open a sound file first!"));
              play.addKeyListener(this);
              p.add(play);
              fastForward = new JButton("<html><body><font size=+"+ sizeIncrease+ ">>>");
              fastForward.setToolTipText("Fast Forward");
              fastForward.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             skipForward();
                        } else {
                             JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file first!"));
              fastForward.addKeyListener(this);
              p.add(fastForward);
              frame.getContentPane().add(p,BorderLayout.CENTER);
              frame.setVisible (true);
              frame.pack();
              frame.setResizable(false);
      public void stop(){
      sp();
      public void destroy(){
       player.stop();
        player.deallocate();
      public void actionPerformed (ActionEvent e)
              if (e.getActionCommand().equals("Exit"))
                             // Call dispose to invoke windowClosed.
                             player.stop();
                             player.close();
                             player.deallocate();
                             frame.dispose ();
                                  return;
              if (e.getActionCommand().equals("Open..."))
                             FileDialog fd = new FileDialog (frame, "Open File",
                                         FileDialog.LOAD);
                              fd.setDirectory (currentDirectory);
                              fd.show ();
                              // If user cancelled, exit.
                              if (fd.getFile() == null)
                             return;
                              currentDirectory = fd.getDirectory ();
                                   if (player != null){
                                       player.close ();
                                       player.deallocate();
                         try
                  player = Manager.createPlayer (new MediaLocator
                                               ("file:" +
                                               fd.getDirectory() +
                                               fd.getFile()));
                              catch (java.io.IOException e2)
                            System.out.println ("file not found :"+e2);
                            return;
                              catch (NoPlayerException e2)
                            System.out.println ("Could not find a player.");
                            return;
                    if (player == null)
                   System.out.println ("Trouble creating a player.");
                   return;
                    first = false;
                    frame.setTitle (fd.getFile ().toString());
                    player.addControllerListener (this);
                    player.prefetch ();
                   return;
              if (e.getActionCommand().equals("URL"))
                             FileDialog fd = new FileDialog (frame, "Open File",
                                         FileDialog.LOAD);
                         fd.setDirectory (currentDirectory);
                         fd.show ();
                         // If user cancelled, exit.
                              if (fd.getFile() == null)
                             return;
                         currentDirectory = fd.getDirectory ();
                              if (player != null){
                                       player.close ();
                                       player.deallocate();
                   try
                        URL url = new URL ("file://"+fd.getDirectory()+fd.getFile());
                    MediaLocator mediaLocator = new MediaLocator (url);
                        player = Manager.createPlayer (mediaLocator);
                   catch (java.io.IOException e2)
                  System.out.println ("file not found :"+e2);
                  return;
                    catch (NoPlayerException e2)
                  System.out.println ("Could not find a player.");
                  return;
                    if (player == null)
                   System.out.println ("Trouble creating a player.");
                   return;
          first = false;
          frame.setTitle (fd.getFile ().toString());
          player.addControllerListener (this);
          player.prefetch ();
              return;
       public void controllerUpdate (ControllerEvent e)
          if (e instanceof ControllerClosedEvent)
              if (vc != null)
                  frame.getContentPane().remove (vc);
                  vc = null;
              if (cc != null)
                  frame.getContentPane().remove (cc);
                  cc = null;
              return;
          if (e instanceof EndOfMediaEvent)
              if (loop)
                  player.setMediaTime (new Time (0));
                  player.start ();
              return;
          if (e instanceof PrefetchCompleteEvent)
              player.start();
              return;
          if (e instanceof RealizeCompleteEvent)
            if (vc != null)
                  remove (vc);
                  vc = null;
              if (cc != null)
                  remove (cc);
                  cc = null;
              vc = player.getVisualComponent ();
              if (vc != null)
                  frame.getContentPane().add(vc,BorderLayout.NORTH);
              cc = player.getControlPanelComponent ();
              if (cc != null){
                       frame.getContentPane().add (cc, BorderLayout.SOUTH);
                     frame.setVisible(true);
                     frame.pack();
    public void keyReleased(KeyEvent ke) {
    int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyTyped(KeyEvent ke) {
         int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyPressed(KeyEvent ke) {
              int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
              }else if (keycode==KeyEvent.VK_UP) {
                   st();
              }else if (keycode==KeyEvent.VK_DOWN) {
                   sp();
    public void skipForward() {
    Time settime;
    double secs=5;
    double playersecs = player.getMediaTime().getSeconds();
    double duration = player.getDuration().getSeconds();
              if((playersecs+secs) < duration){
                      settime = new javax.media.Time(playersecs + secs);
                      player.setMediaTime(settime);
              }else {
                        player.setMediaTime(new Time(duration));
    public void skipBack() {
              double secs1=5;
              double secs2=0;
              double playersecs1 = player.getMediaTime().getSeconds();
              Time settime1;
              if((playersecs1 - secs1) > secs2){
                      settime1 = new javax.media.Time(playersecs1 - secs1);
                      player.setMediaTime(settime1);
              }else {
                        player.setMediaTime(new Time(0));
         public void st() {
         player.start();
         public void sp() {
         player.stop();
       public void itemStateChanged (ItemEvent e)
          loop = !loop;
    With Thanks
    manuEdited by: mm_mm on Nov 27, 2007 11:09 PM

  • Map Loader error while loading catalogue

    XM 5800, latest firmware, Maps 3 installed and working OK. I get "Error while loading catalogue for Nokia 5800 XpressMusic" whenever I start Map Loader 3.
    Uninstalled/reinstalled Map Loader 3 several times.
    Tried suggested fixes of deleting qf and cities folder then running Maps to recreate file structure.
    Tried it on a Windows 7 PC with PC Suite and also a Vista PC with Ovi Suite. Same error message.
    I am left without the ability to download any maps except over the air as I go incurring data charges.
    So I may as well just use Google maps!
    I see in the discussion groups this issue comes up for many different Nokia phones occasionally but I have never seen a solution.
    Anyone?
    Solved!
    Go to Solution.

    Just when I thought Nokia Care technical support knew what they were doing!!!!
    About 4pm NZ time yesterday, after the Map Loader server had been working for about 3 to 4 hours and everything was fine. I got a call from Nokia tech support. I was on the other line so they left a message.
    "Sorry, its not going to work because map loader is not completely compatible with Windows 7"
    and my email support thread finally pointed me to a "Solution" discussion board entry detailing a fix for Maps 2. You had to download the latest version of Map Loader 2.02!!!!! That was really helpful considering we are on 3.03 and 3.0.28 respectively
    So it all stating to work again may have just been coincidence and nothing to do with our support calls! :-<
    Oh well at least its working. Now all I have to fix is the MTP USB Device driver failing.
    Cheers
    Brian

  • I keep getting this error plz help

    Every time that i download the new iphone version 3.1 it gets towards the end and then i get an error. "could not finish transferring to iphone. Network connection failed". I dont know why it keeps giving me this problem when i have internet and i can connect to the itunes store perfectly and also download applications. Can somebody plz help me its driving me nuts. thanks for your time.
    *i have itunes 9(the new one) and my firewall is off

    bump. plz hlep

  • Reports Paramters Error, Plz Help me!

    Have anybody tried a reports in Web with parameters containing the ' '(space), '&'(and),'?' and other URL special character?
    When I passed a paramter with these character from my form, the reports server returned a REP-56033 error, and said that it cannot get job with ID -2.
    My reports are rdf/rep files.
    My system is 9ias R2. My reports service's version is 9.0.2.0.1
    Please help me. This question is urgent.

    When I use showjobs, I cannot get this job. But if I delete the special char, I can get the job and say it has error.
    I guess the report doesn't run with the special char!!!!
    I can run other report which without the special char parameter.
    For example
    add_parameter(pl_id,Text_Parameter,'where deptno=59 and staffno=34');
    If my parameter list contain this value, the report cannot run!!!
    If I change to
    add_parameter(pl_id,Text_Parameter,'wheredeptno=59andstaffno=34');
    The report can run, but return error.
    Plz help me!!

  • Ora - 00600 error plz help urgent

    hello all sir plz. help would should i do.
    by mistake i made changes in spfile file.... after that i got this error
    any solution ?
    plz. help sir
    SQL> create pfile from spfile;
    create pfile from spfile
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [733], [538970164], [pga heap], [],
    help sir
    waiting for reply

    first of all
    thanx for my reply
    sir i have bkp through rman but when i am connect to rman it give me error
    2. i have no pfile<sid>.ora file
    3. i try to start my database through pfile text file i got error..
    plz. reply sir what should i do.....
    how can i connect rman....
    C:\>set oracle_sid=db01
    C:\>rman target sys/oracle@db01
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00554: initialization of internal recovery manager package failed
    RMAN-04005: error from target database:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    C:\>
    again thanx.
    i have full database bkp through rman.

  • The dreaded map loader error

    Hi,
    I've just gotten a new N95 8GB and am trying to download some maps to my phone. I have run the maps application on the phone and successfully connected the phone via USB in data transfer mode. The problem is I am getting the following error:
    "An unexpected error occurred. Try again. Sorry for the inconvenience."
    I've searched everywhere for a solution but without any luck. Sompe people reported proxy/firewall issues but I am running from a home connection and even moved my PC coonected to my phone into the DMZ without luck.
    Has anyone been able to solve this problem or should I give up and keep what is left of my hair on my head?
    grantonstar

    I've been trying to get the maps via Nokia Map Loader 1.2.1. I just installed .net framework 3.0 and reinstalled with no luck either.
    I've been using it with my home wifi connection but I want to be able to download a whole country so the map data is there for when I go out. Unless there is a way to pre-get a region or country direct from the phone?

  • Brand new E90 map loader error

    When running the map loader first time it doesn't recognize neither the E90 in transfer mode or the memory directly connected to a usb port on my laptop. and map loader close up right away.
    PC suite works fine and allows me to install any program in the phone memory or memory card.
    Card is a 2GB which has more than 1.5 GB free.Message Edited by robmir on 28-Aug-200710:52 PM

    Hi robmir
    Have you run Maps application at least once with your memory card in E90 as this defines the folder structure that Maploader looks for to write data?
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • HT201210 my iphone wont restore coz of an unknown error plz help

    my iphone wont restore coz of an unknown error plz help

    iOS: Resolving update and restore alert messages
    BTW: This is the iPod Touch fourm.

  • Contract to invoice error plz help me out

    Hi SAP Gurus,
    Plz help me out to allow mixed billing on the same contract. We currently can’t invoice the customers who have chosen prepaid for their program line and after that when the prepaid finishes it automatically goes to post paid. And the invoice will be coming like a combination of both.
    Points will be rewarded
    Thanks
    Edward

    Hi Eddie,
    Could you pls. explain your business process? What exactly is this prepaid and post paid?
    Thanks & Regards,
    Pathanjali Bhat

  • InDesign crashing on save as file size passes 4GB; loading error 6, HELP!

    I am working with some large files in InDesign. Today, about 5 or 6 times, when my INDD file passed 4.25GB it would crash. It would say that it was a loading error 6 or something like that. Multiple reports have been sent. Once it crashes, it becomes unable to open again. I have been making lots of copies, but I am still crashing.. Is there a known file size capacity for INDD? Am I reaching it and passing it? Is that why it is crashing?

    Certainly, linking to placed images requires more work and certainly discipline, but it certainly seriously pays off in terms of potentially dramatically small .INDD files and flexibility in terms of editing the placed content.
    Tell your client that their approach is really unworkable for the magnitude of the project and that Adobe recommends linking instead of embedding of placed imagery.
              - Dov

Maybe you are looking for

  • Regarding pf-status in alv

    hi all,     could any one  answer what is fgroup 'salv' in the following piece of alv code and how can we see it. call function 'REUSE_ALV_GRID_DISPLAY'        exporting             i_callback_program      = gd_repid             i_callback_top_of_pag

  • HOW CAN I SPLIT STEREO AUDIO TRACKS

    I'm trying to modify one of the audio tracks but both of the tracks are locked. If I do something with one of the tracks it affects the other one so how can I split it? or separate it? is it stereo? is there any way I can do it? THANKS!!!!!!!

  • Maximum texture size/dimensions?

    Greetings - I've read in various places that the max texture size for Stage3D is 2048x2048. Perhaps this is an obvious question, but does this mean that each dimension must be 2048 or less, or that the total size in pixels be less than 2048x2048=4194

  • Clean HDD & load Mountain Lion when it was a Leopard install when bought

    Hi, I want to clear my hard drive and do a fresh install of the operating system.  My reason for this is my Pro is sluggish and I have a lot of unnecessary software and to be honest I want to give it a go. My questions is this - I bought it many year

  • Image capture won't connect to Brother  Twain scanning

    Hello Hope someone can help me. I have just connected a Brother MFC-7860DW all in one printer scanner to my Mac wirelessly. Everything works perfectly except the scanning. Image capture will show the Brother in the device browser window, I click on T