Missing Start Database file/folder

Hi,
I'm on a Windows 98 platform. When loading Oracle 8i Lite from cd secured on Trial License, 'Start Database' file/folder does not load. As a result, I can not open SQL Plus to access database (TNS destination error).
In as much as Win 98 does not have a 'Controls' folder in Control Panel, have not been able to workaround as might in NT.
Thanks in advance for your help
Charley
([email protected]

Hi,
I'm on a Windows 98 platform. When loading Oracle 8i Lite from cd secured on Trial License, 'Start Database' file/folder does not load. As a result, I can not open SQL Plus to access database (TNS destination error).
In as much as Win 98 does not have a 'Controls' folder in Control Panel, have not been able to workaround as might in NT.
Thanks in advance for your help
Charley
([email protected]

Similar Messages

  • File Transfer (Missing start of file)

    Hi there, I'm undertaking part of a software project at University and struggling to fix a piece of code myself and a friend have wrote after exhausing most of the good java programmers in our department.
    We're simply trying to send files over a network via TCP, the main problem we're encountering is that if we send say a text file, a varying number of characters will appear missing. Normally we'll recieve between 300-400 of the 500 bytes we send for example, and these characters are always missing from the start of the file. Obviously this is the bit we need to fix, at the end we're aiming to be able to send media files (jpg, gif, txt, wav, avi) and hopefully objects aswell.
    The way its intended to work at present is that the server sends file information to the client (filename and filesize), and then the client listens, and writes the same number of bytes as the filesize to the new file it creates (though I'm sure you'll work that out in seconds). The file has been read in, and wrote back on the server side just to ensure the reading/sending section was working which it was.
    Server Side:
    FileServer.java: import java.io.*;
    import java.net.*;
    public class FileServer
       private ServerSocket serverSocket = null;
       private Socket socket = null;     
       public String fileDir = "H:/JAVA/";
       public String fileName = "text.txt";
       public String filePath = fileDir + fileName;
       public PrintWriter log;
       public BufferedReader in;
       public PrintStream out;
       public FileServer() throws IOException
          try {
                  serverSocket = new ServerSocket(1138);
                  System.out.println("Server initialised and listening on port : 1138.");
          catch (IOException e){
             System.out.println("Could not listen on port : 1138");
          try {
             socket = serverSocket.accept();
             System.out.println("Client" + serverSocket.getInetAddress() + "connected.");
             in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
             out = new PrintStream(socket.getOutputStream(), true);
          catch (IOException e){
             System.out.println("Could not accept client.");
             System.exit(1);
         boolean done = false;
         while (!done)
            try{
               String line = in.readLine();               
               if (line == null)
                  done = true;
              else
                   if (!line.trim().equals("CLOSE"))               
                       if (line.trim().equals("SEND FILE"))
                           sendFile(filePath, socket);
                   else
                       done = true;                         
                catch (IOException e) {
                   System.out.println("Cannot read data from client");
                   System.exit(1);
          socket.close();
    public void sendFile( String filename, Socket socket )
       File file;     
       try{
             file= new File(filePath);
             int c =0;
             FileInputStream fis = new FileInputStream(file);
             out.println(fileName+":"+file.length());
             OutputStream os = socket.getOutputStream();
             int i = 0;
             while((c = fis.read()) != -1)
                 i++;
                System.out.println(i +"  "+ c);
                os.write(c);
             System.out.println("File "+filePath+" sent:"+file.length());
             fis.close();
       catch( Exception e ) {
            System.out.println("sending file error");
            e.printStackTrace();
            System.exit(1);
    public static void main (String [] args) throws IOException
       FileServer myFileServer = new FileServer();
    Client Side:
    Client.java: import java.net.*;
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class Client
      private Socket clientSocket = null;
      public String filePath = "H:/java/Temp";
      PrintWriter out = null;
      BufferedReader in = null;
      String host = "144.32.152.154";
      int port = 1138;
      Integer fileSize;
      String filename;
      public Client() throws IOException {
        InputStream inputStream;
        try {
          clientSocket = new Socket(host, port);
        catch (IOException e) {
          System.out.println("Could not create connection");
          System.exit(1);
        out = new PrintWriter(clientSocket.getOutputStream(), true);
        inputStream = clientSocket.getInputStream();
        in = new BufferedReader(new InputStreamReader(inputStream));
        out.println("SEND FILE");
       String details;
       while((details = in.readLine()) != null)     
          System.out.println(details);
          StringTokenizer sToken = new StringTokenizer(details, ":");
          filename = sToken.nextToken();
          fileSize = Integer.valueOf((sToken.nextToken()));
          System.out.println(filename);
          System.out.println(fileSize);
          FileOutputStream file = new FileOutputStream(new File(filePath,filename));
             for (long i=0; i<fileSize.longValue(); i++)
                int c = inputStream.read();
                file.write(c);
                System.out.println(i);
                System.out.println(fileSize);
            System.out.println("Exited Loop");
            file.flush();
            file.close();
            clientSocket.close();
            System.out.println("The End");
            System.exit(-1);
      public static void main(String[] args) throws IOException
        Client myClient = new Client();
    } I'd appreciate any help you can offer to fix the problem! Thanks
    Ian Wright

    OK. There were some mistakes in the code. Some made by me, some by you.
    First of all: The byte array which acts as a buffer for reading the file content from the socket cannot have the size of the whole file. Normally it is suggested to set to 8-32kB.
    Second thing: I was too fast in giving you the idea of reading the details only once to an array. Sometimes the Client program is faster than the FileServer and although the array has space for "nameLength" bytes it reads a lot less. That way the details aren't recieved properly. To solve this I've added a loop that waits for the inputStream to retrieve enought data.
    Last but not least: I've been told that it is not wise to close the socket at the server side. If you close the socket the OutputStream is cut off without a warning. Close the OutputStream instead.
    I remember that you asked me to reply via e-mail but I think that posting the solution here will be more usfull to others. Here's the code:
    Client3.java
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class Client3
      private Socket clientSocket = null;
      OutputStream out;
      public String filePath = "E:/";
      String host = "127.0.0.1";
      int port = 1138;
      Integer fileSize;
      String filename;
      static final byte SEND = 1;
      static final byte DONE = 2;
      static final byte ERROR = 0;
      public Client3()throws IOException{
        DataInputStream inputStream;
        System.out.println("Hello");
        try {
          clientSocket = new Socket(host, port);
        catch (IOException e) {
          System.out.println("Could not create connection");
          System.exit(1);
        out = clientSocket.getOutputStream();
        inputStream = new DataInputStream(clientSocket.getInputStream());
        out.write(SEND);
         byte nameLength = (byte)inputStream.read();
         byte[] nameArray = new byte[nameLength];
         while (inputStream.available()<nameLength) // we have to wait for the details to arrive :]
              try {
                   Thread.sleep(10);
              } catch (InterruptedException e) {
                   System.out.println("Client impatient ... couldn't wait");
              inputStream.read(nameArray);
         String details = new String(nameArray);
         StringTokenizer sToken = new StringTokenizer(details, ":");
        filename = sToken.nextToken();
        fileSize = Integer.valueOf((sToken.nextToken()));
         System.out.println(filename+":"+fileSize);
          FileOutputStream file = new FileOutputStream(new File(filePath,filename));
                   while (true) { // now read the file one piece after a nother :P
                        byte[] fileBuffer = new byte[8*1024];
                        int cnt = 0;
                        cnt = inputStream.read(fileBuffer);
                        if (cnt==-1) break;
                        file.write(fileBuffer,0,cnt);
          file.flush();
          file.close();
          out.close(); // T100 would say: Hasta la vista ... baby!
          System.out.println("The End");
          System.exit(-1);
      public static void main(String[] args) throws IOException{
           Client3 client = new Client3();
    FileServer3.java
    import java.io.*;
    import java.net.*;
    public class FileServer3 {
       private ServerSocket serverSocket = null;
       private Socket socket = null;     
       public String fileDir = "";
       public String fileName = "image.bmp";
       public String filePath = fileDir + fileName;
       public PrintWriter log;
       public InputStream in;
       public DataOutputStream out;
       static final byte SEND = 1;
       static final byte DONE = 2;
       static final byte ERROR = 0;
       public FileServer3() throws IOException
          try {
                  serverSocket = new ServerSocket(1138);
                  System.out.println("Server initialised and listening on port : 1138.");
          catch (IOException e){
             System.out.println("Could not listen on port : 1138");
        while(true){
          try {
             socket = serverSocket.accept();
             System.out.println("Client" + serverSocket.getInetAddress() + "connected.");
             in = socket.getInputStream();
             out = new DataOutputStream(socket.getOutputStream());
          catch (IOException e){
             System.out.println("Could not accept client.");
             System.exit(1);
          try{
               byte b =(byte)in.read();
              if (b == SEND)               
                           sendFile(filePath, out);
           catch (IOException e) {
                   System.out.println("Cannot read data from client");
                   System.exit(1);
    public void sendFile( String filePath, DataOutputStream out ) {
         File file;
       try{
         file = new File(filePath);
             FileInputStream fis = new FileInputStream(file);
         String details = fileName+":"+Long.toString(file.length());
         System.out.println((byte)details.length()+": "+details);
         out.write((byte)details.length());
         out.writeBytes(details);
         System.out.println("File details sent");
         while (true) { // Momma always said to bite before swallowing :D
              byte[] byteArray = new byte[8*1024];
              int cnt = fis.read(byteArray);
              if (cnt == -1) break;
              out.write(byteArray,0,cnt);
             System.out.println("File "+filePath+" sent:"+file.length());
             out.close(); // Say goodbye and the door will close by it self %)
       catch( Exception e ) {
            System.out.println("sending file error");
            e.printStackTrace();
            System.exit(1);
      public static void main (String [] args) throws IOException {
         FileServer3 myFileServer = new FileServer3();
    }I hope this will help you out. If there are any other errors that I've missed than point them out to me and I'll se what can be done later. I have a cake in the oven and don't have enough time right now :].
    ...:: byElwiZ ::...

  • Missing xlStartServer.bat file from Xellerate\bin folder in OIM 9.1.0.1

    I have installed OIM9.1.0.1 with JBoss 4.2.3 as application server and Oracle10g as database on Windows 2003 Server m/c.
    The installation process was successful and no error occurred in due course.
    And now to start OIM, I need to run the xlStartServer.bat from <OIM_HOME>/xellerate/bin.
    The problem is that this server start up file is missing in that folder.
    I tried installing with a differnt copy of installables as well, but the problem is still there.
    Could you please provide any pointers regarding this issue.

    I had tried starting the Jboss server and then starting the OIM.
    But although Jboss started successfully, for starting OIM server console, i had typed http:\\localhost:8080\xlWebpp ,
    but it could not find the application xlWebApp.

  • Release 4: File Folder icon missing in SQL Worksheet

    The file folder icon is now missing in the SQL Worksheet. Using File->Open just opens the file in the editor. There is no way to run the SQL file. Clicking on Run in menu across the top causes the "The target bogus.sql cannot be started because it is not a runnable target." error message.
    The help for "Using the SQL Worksheet" shows the file folder icon on the screen shot.
    How does one open a SQL file and run it in Release 4?
    Mike

    The File Open (or Open button on the main toolbar) works better in some respects - it opens in a SQL Worksheet (although not associated with a database connection), name s the tab with the filename, indicates a changed file by switching to italics in the tab name and requests confirmation on close if the file is modified.
    However, the default directory is the <SQL Developer directory>/jdev and the file type defaults to all.
    The Right-Click in SQL Worksheet opens the file from a default of C:\Documents and Settings\<username> (for me at least) with a file type of *.sql. The tab name is not renamed when opening the file (stays as the connection name) and there is no close confirmation if the file is modified.
    The File Open makes it harder to lose stuff, but is a bit more work to use. As redoing lost work is more effort than switching file types and potentially more directory navigation on opening, I think the File Open option is better than the Right-click, but I would prefer something with the File Open functionality from within an existing SQL Worksheet.

  • I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    Hello,
    That means it can find the Hard Drive, or can't find the things needed for booting.
    See if DU even sees it.
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)

  • When I went to turn the desktop on, the start up sound came on.  Then the screen was white with an icon flashing. The icon is a file folder with a question mark on it.  I cannot get it to fully turn on.  HELP

    When I went to turn the desktop on, the start up sound came on.  Then the screen was white with an icon flashing. The icon is a file folder with a question mark on it.  I cannot get it to fully turn on.  HELP

    Run a disk repair tool on the hard disk or install a new OS.
    (59898)

  • My G5 is starting up with an icon of a file folder with the smile face. Motor runs loudly and then nothing. What is going on?, my G5 is starting up with an icon of a file folder with the smile face. Motor runs loudly and then nothing. What is going on?

    My G5 is starting up with an icon of a file folder with a blue smile face. The motor will run loudly for a few minutes and then nothing. I can not get it to run at all.
    Any suggestions?

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    If that doesn't work, Does it boot to Single User Mode, CMD+s keys at bootup, if so try...
    /sbin/fsck -fy
    Repeat until it shows no errors fixed.
    (Space between fsck AND -fy important).
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck...
    http://docs.info.apple.com/article.html?artnum=106214

  • Foxfire downloaded an up-date last night (10 20/2010) at 5:30 PM EDST and it crashed the compter on re-start with an error message... Missing or Corrupt File ... WINNT\system32\config\SYSTEM

    Foxfire downloaded an up-date last night (10/20/2010) at 5:30 PM EDST when I started Firefox, and it crashed the compter on re-start with an error message... Missing or Corrupt File ... WINNT\system32\config\SYSTEM. This machine is Windows 2000 Professional on Dell computer and Foxfire 3.6 or 4 not sure computer is stuck at the error message.

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

  • I can not upgrade from 10.2 to 10.6 because of missing "itunes.msi" file.  How do I repair it? I can not remove itunes and start over.

    I can not upgrade from 10.2 to 10.6 because of missing "itunes.msi" file.  I can not delete ITunes and start over either.

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • What does it mean when I start my computer and there is a file folder with a question mark?

    What does it mean if I start my computer and there is a file folder with a question mark blinking?

    That Disk 1/ Mac OS is the install DVD not the hard drive. Your hard drive is not recognized which would mean it's probably dead.
    For a new hard drive try Newegg.com http://www.newegg.com/Store/SubCategory.aspx?SubCategory=380&name=Laptop-Hard-Dr ives&Order=PRICE
    Or OWC  http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/
    Here are instructions on replacing the hard drive in a MacBook with a removable battery. http://creativemac.digitalmedianet.com/articles/viewarticle.jsp?id=45088
    Here are video instructions on replacing the hard drive on the Aluminum Unibody http://eshop.macsales.com/installvideos/macbookpro_13_unibody_hd/
    Here are video instructions on replacing the hard drive on the White Unibody http://eshop.macsales.com/installvideos/macbook_13_09_unibody_hd/
    If you don’t have the tools to open up the MacBook OWC has a set for $5
    http://eshop.macsales.com/item/OWC/TOOLKITMHD/

  • I have a older intel MacBook pro, now when I try to start up instead of the apple logo I see a file folder with a question mark. Need some help please.

    I have a first gen MacBook pro with intel chip. All of a sudden when I try to start up instead of the apple logo I see a file folder with a question mark. Phone support wasn't much help since it is a older machine. It's either a software issue or the hard drive went. Any ideas on how to fix if it's a software issue would be appreciated. Thanks a lot.

    Thanks I tried that and when I click repair it tells me
    Invalid volume header
    Checking hfs plus volume.
    Invalid b-free node size
    Volume check failed
    Error: the underlying task reported faliure on exit.
    1 hfs volume checked
    1 volume could not be repaired because of an error.

  • What does a file folder with a question mark in it mean when the computer won't start?

    What does a file folder with a question mark in it mean when the computer won't start?

    There are four general causes of this issue:
    1. The computer's PRAM no longer contains a valid startup disk setting when there aren't any problems with the disk itself. This can be checked for by pressing the Option key and seeing if the drive appears.
    2. The internal drive's directory structure has become damaged. This requires usage of an alternate bootable system to perform the repair.
    3. Critical system files have been deleted. This requires usage of an alternate bootable system to reinstall them.
    4. The internal drive has died or become unplugged. This is the most likely case if the computer took a sharp impact or there are unusual sounds coming from the hard drive's location.
    (68976)

  • TS1717 Itunes want start because it is missing MSCVCR80.DLL file.

    Itunes want start because it is missing MSVCR80.dll file.

    Solving the iTunes Installation Problems in Windows
    1. Apple has posted their solution here: iTunes 11.1.4 for Windows- Unable to install or open - MSVCR80 issue.
    2. If the Apple article does not fully resolve the problem for you, then try Troubleshooting issues with iTunes for Windows updates - MSVCR80.
    iTunes 11.1.4 for Windows- Tips for Unable to install or open - MSVCR80

  • What does it mean when there is a flashing file folder with a question mark when trying to start computer?

    When I try to start my computer a flashing file folder with a question mark is on the screen. I can't open anything up. What does this mean?

    There are four general causes of this issue:
    1. The computer's PRAM no longer contains a valid startup disk setting when there aren't any problems with the disk itself. This can be checked for by pressing the Option key and seeing if the drive appears.
    2. The internal drive's directory structure has become damaged. This requires usage of an alternate bootable system to perform the repair.
    3. Critical system files have been deleted. This requires usage of an alternate bootable system to reinstall them.
    4. The internal drive has died or become unplugged. This is the most likely case if the computer took a sharp impact or there are unusual sounds coming from its location.
    (104258)

  • Today My c: drive crashed...i had all my oracle database files and others in other resp drives.How to start by DB again as my services are destroyed.?!

    Today My c: drive crashed...i had all my oracle database files and others in other resp drives.How to start by DB again as my services are destroyed.?!
    or how to create a service for the database i had previously ??
    any help
    Aravind.

    AravindanJ wrote:
    Today My c: drive crashed...i had all my oracle database files and others in other resp drives.How to start by DB again as my services are destroyed.?!
    or how to create a service for the database i had previously ??
    any help
    Aravind.
    Where did Oracle software reside before  the failure & now?
    How do I ask a question on the forums?
    https://forums.oracle.com/message/9362002#9362002

Maybe you are looking for