Display list of files on windows 2000 server

Im wondering if there is an API for this or something to browse the windows 2000 file system via web page. I do not have to browse all directories. The directory will be fixed. I just need to get the file names within a directory and display them on my web page. Once I have the name I can simply host out and delete or move or etc.
maybe someone can guide me as to the name of the API, if it exists Or if one such api doesnt exist.

You can use the standard Java API for this:
@see http://java.sun.com/j2se/1.4.1/docs/api/java/io/File.html
You'd typically do something like:
File myDir = new File("c:/some/directory");
File[] folderContents = myDir.listFile();Then, you can loop through this array to determine if each content of the directory is a file or another folder, and print out each name:
out.println("Contents of " + myDir.getPath() + ":<br>");
//sort the array
java.util.Arrays.sort(folderContents);
//loop through and print each.
for (int i=0; i<folderContents.length; i++){
    if (folderContents.isDirectory()){
out.print("Directory: ");
} else {
out.print("File: ");
//print the filename
out.println(folderContents[i].getName());
out.println("<br>");
Alternatively, for simply the names you could use
String[] folderContents = myDir.list();but you'd only have the names of the directory contents, and no access to whether each item was a sub-directory or a file.
Hope this helped,
-Scott

Similar Messages

  • Installation problem JDK 1.5 on Windows 2000 server

    I am trying to install the new J2SE Development Kit 5.0 for Windows 32 bit on a windows server 2000 computer with sp4. When I attempt to execute the file
    I get the following result
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x036eb514, pid=1872, tid=1592
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_10-b03 mixed mode)
    # Problematic frame:
    # C [awt.dll+0xb514]
    I see that the log file refers to Hot spot client 1.4.2 - I'll post the rest of log if necessary but thought I would try asking in case the solution is clear without the full log.
    I understand JDK 5.0 can be installed on windows 2000 server with service pack 3 or 4. Any help would be appreciated.
    Thank you.

    I've checked all these possibilities:
    (1) DLL's associated with JAVA - none other than 1.5
    (2) Path makes no reference to 1.4 anywhere
    (3) No othe java programs are listed in add/remove programs
    (4) no oracle product is installed
    (5) windows 2000 registry does not contain anything obviously associated with 1.4.2
    IS any Java product included automatically with Windows 2000 Service pack 4?
    Here is the full log file text:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x036eb514, pid=928, tid=1916
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_10-b03 mixed mode)
    # Problematic frame:
    # C [awt.dll+0xb514]
    --------------- T H R E A D ---------------
    Current thread (0x02c0a160): JavaThread "AWT-EventQueue-0" [_thread_in_native, id=1916]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00006ffd
    Registers:
    EAX=0x00001bf8, EBX=0x037bf638, ECX=0x0000001d, EDX=0x0000001d
    ESP=0x03a5f460, EBP=0x081471cd, ESI=0x000000f8, EDI=0x00000004
    EIP=0x036eb514, EFLAGS=0x00010202
    Top of Stack: (sp=0x03a5f460)
    0x03a5f460: fffffffc 02c0a1fc 037ae360 00000004
    0x03a5f470: 086c0e44 ffccffff 037bf5f8 037bf5b8
    0x03a5f480: 00000000 00000000 00000000 036e1a43
    0x03a5f490: 03a60000 00000038 00000278 00000189
    0x03a5f4a0: 00000278 03a5f514 037ae360 03a5f508
    0x03a5f4b0: 02c0a160 0c14c8f8 03a5f654 0c14c8b0
    0x03a5f4c0: 02b30a48 00000004 037ae360 00000000
    0x03a5f4d0: 02bdaf98 00000004 00000017 0000027c
    Instructions: (pc=0x036eb514)
    0x036eb504: 00 00 83 e6 f8 c1 e0 05 c1 e9 03 03 c6 03 d1 45
    0x036eb514: 8a 0c 82 8b 44 24 30 88 08 40 89 44 24 30 8b 44
    Stack: [0x03a20000,0x03a60000), sp=0x03a5f460, free space=253k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [awt.dll+0xb514]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.java2d.loops.Blit.Blit(Lsun/java2d/SurfaceData;Lsun/java2d/SurfaceData;Ljava/awt/Composite;Lsun/java2d/pipe/Region;IIIIII)V+0
    j sun.java2d.pipe.DrawImage.blitSurfaceData(Lsun/java2d/SunGraphics2D;Lsun/java2d/SurfaceData;Lsun/java2d/SurfaceData;Lsun/java2d/loops/SurfaceType;Lsun/java2d/loops/SurfaceType;IIIIIILjava/awt/Color;)V+89
    j sun.java2d.pipe.DrawImage.renderSurfaceData(Lsun/java2d/SunGraphics2D;Lsun/java2d/SurfaceData;Ljava/awt/Color;IIIIII)V+40
    j sun.java2d.pipe.DrawImage.copyImage(Lsun/java2d/SunGraphics2D;Ljava/awt/Image;IIIIIILjava/awt/Color;)Z+58
    j sun.java2d.pipe.DrawImage.copyImage(Lsun/java2d/SunGraphics2D;Ljava/awt/Image;IILjava/awt/Color;)Z+30
    j sun.java2d.pipe.DrawImage.copyImage(Lsun/java2d/SunGraphics2D;Ljava/awt/Image;IILjava/awt/Color;Ljava/awt/image/ImageObserver;)Z+15
    j sun.java2d.SunGraphics2D.drawImage(Ljava/awt/Image;IILjava/awt/Color;Ljava/awt/image/ImageObserver;)Z+12
    j sun.java2d.SunGraphics2D.drawImage(Ljava/awt/Image;IILjava/awt/image/ImageObserver;)Z+7
    j javax.swing.JComponent.paintWithOffscreenBuffer(Ljavax/swing/JComponent;Ljava/awt/Graphics;IIIILjava/awt/Image;)V+223
    j javax.swing.JComponent.paintDoubleBuffered(Ljavax/swing/JComponent;Ljava/awt/Component;Ljava/awt/Graphics;IIII)Z+131
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+208
    j java.awt.GraphicsCallback$PaintCallback.run(Ljava/awt/Component;Ljava/awt/Graphics;)V+2
    j sun.awt.SunGraphicsCallback.runOneComponent(Ljava/awt/Component;Ljava/awt/Rectangle;Ljava/awt/Graphics;Ljava/awt/Shape;I)V+155
    j sun.awt.SunGraphicsCallback.runComponents([Ljava/awt/Component;Ljava/awt/Graphics;I)V+101
    j java.awt.Container.paint(Ljava/awt/Graphics;)V+62
    j sun.awt.RepaintArea.paint(Ljava/lang/Object;Z)V+324
    j sun.awt.windows.WComponentPeer.handleEvent(Ljava/awt/AWTEvent;)V+63
    j java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+552
    j java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+19
    j java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+41
    j java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z+169
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x02c0a160 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=1916]
    0x02ca9fc0 JavaThread "AWT-Shutdown" [_thread_blocked, id=1924]
    0x02b2e4a8 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1944]
    0x02b153e0 JavaThread "Image Fetcher 2" daemon [_thread_blocked, id=1984]
    0x02a94bd8 JavaThread "Image Fetcher 1" daemon [_thread_blocked, id=1776]
    0x02aa9da8 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=568]
    0x02a8d0d0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=1276]
    0x009b9240 JavaThread "Thread-0" [_thread_in_native, id=1812]
    0x02b83db8 JavaThread "wizard.main" [_thread_blocked, id=1708]
    0x0023e378 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2056]
    0x0091e130 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2052]
    0x0091bb58 JavaThread "Finalizer" daemon [_thread_blocked, id=936]
    0x0091a780 JavaThread "Reference Handler" daemon [_thread_blocked, id=932]
    0x00236898 JavaThread "main" [_thread_blocked, id=1816]
    Other Threads:
    0x00959358 VMThread [id=1460]
    0x0095a008 WatcherThread [id=2044]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1408K, used 474K [0x08140000, 0x082c0000, 0x085d0000)
    eden space 1280K, 29% used [0x08140000, 0x0819f868, 0x08280000)
    from space 128K, 71% used [0x082a0000, 0x082b6fb0, 0x082c0000)
    to space 128K, 0% used [0x08280000, 0x08280000, 0x082a0000)
    tenured generation total 18944K, used 3398K [0x085d0000, 0x09850000, 0x0bd40000)
    the space 18944K, 17% used [0x085d0000, 0x08921ab8, 0x08921c00, 0x09850000)
    compacting perm gen total 6144K, used 6083K [0x0bd40000, 0x0c340000, 0x0fd40000)
    the space 6144K, 99% used [0x0bd40000, 0x0c330c48, 0x0c330e00, 0x0c340000)
    Dynamic libraries:
    0x00400000 - 0x0040b000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp\bin\java.exe
    0x77f80000 - 0x77ffc000      C:\WINNT\system32\ntdll.dll
    0x7c2d0000 - 0x7c335000      C:\WINNT\system32\ADVAPI32.dll
    0x7c570000 - 0x7c623000      C:\WINNT\system32\KERNEL32.dll
    0x77d30000 - 0x77da8000      C:\WINNT\system32\RPCRT4.dll
    0x78000000 - 0x78045000      C:\WINNT\system32\MSVCRT.dll
    0x08000000 - 0x0813e000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp\bin\client\jvm.dll
    0x77e10000 - 0x77e79000      C:\WINNT\system32\USER32.dll
    0x77f40000 - 0x77f7c000      C:\WINNT\system32\GDI32.dll
    0x77570000 - 0x775a0000      C:\WINNT\system32\WINMM.dll
    0x10000000 - 0x10007000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp\bin\hpi.dll
    0x690a0000 - 0x690ab000      C:\WINNT\system32\PSAPI.DLL
    0x007c0000 - 0x007ce000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp\bin\verify.dll
    0x007d0000 - 0x007e9000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp\bin\java.dll
    0x007f0000 - 0x007fe000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp\bin\zip.dll
    0x03050000 - 0x0305f000      C:\Documents and Settings\Administrator\Local Settings\Temp\LRE4.tmp\bin\net.dll
    0x75030000 - 0x75044000      C:\WINNT\system32\WS2_32.dll
    0x75020000 - 0x75028000      C:\WINNT\system32\WS2HELP.DLL
    0x782c0000 - 0x782cc000      C:\WINNT\System32\rnr20.dll
    0x77980000 - 0x779a4000      C:\WINNT\system32\DNSAPI.DLL
    0x75050000 - 0x75058000      C:\WINNT\system32\WSOCK32.dll
    0x77340000 - 0x77353000      C:\WINNT\system32\iphlpapi.dll
    0x77520000 - 0x77525000      C:\WINNT\system32\ICMP.DLL
    0x77320000 - 0x77337000      C:\WINNT\system32\MPRAPI.DLL
    0x75150000 - 0x75160000      C:\WINNT\system32\SAMLIB.DLL
    0x7cdc0000 - 0x7ce13000      C:\WINNT\system32\NETAPI32.DLL
    0x751c0000 - 0x751c6000      C:\WINNT\system32\NETRAP.dll
    0x77bf0000 - 0x77c01000      C:\WINNT\system32\NTDSAPI.dll
    0x77950000 - 0x7797b000      C:\WINNT\system32\WLDAP32.DLL
    0x7c340000 - 0x7c34f000      C:\WINNT\system32\SECUR32.DLL
    0x7ce20000 - 0x7cf0f000      C:\WINNT\system32\OLE32.DLL
    0x779b0000 - 0x77a4b000      C:\WINNT\system32\OLEAUT32.DLL
    0x773b0000 - 0x773df000      C:\WINNT\system32\ACTIVEDS.DLL
    0x77380000 - 0x773a3000      C:\WINNT\system32\ADSLDPC.DLL
    0x77830000 - 0x7783e000      C:\WINNT\system32\RTUTILS.DLL
    0x77880000 - 0x7790e000      C:\WINNT\system32\SETUPAPI.DLL
    0x7c0f0000 - 0x7c154000      C:\WINNT\system32\USERENV.DLL
    0x774e0000 - 0x77514000      C:\WINNT\system32\RASAPI32.DLL
    0x774c0000 - 0x774d1000      C:\WINNT\system32\rasman.dll
    0x77530000 - 0x77552000      C:\WINNT\system32\TAPI32.dll
    0x71710000 - 0x71794000      C:\WINNT\system32\COMCTL32.DLL
    0x70a70000 - 0x70ad6000      C:\WINNT\system32\SHLWAPI.DLL
    0x77360000 - 0x77379000      C:\WINNT\system32\DHCPCSVC.DLL
    0x777e0000 - 0x777e8000      C:\WINNT\System32\winrnr.dll
    0x777f0000 - 0x777f5000      C:\WINNT\system32\rasadhlp.dll
    0x03560000 - 0x0358d000      C:\Documents and Settings\Administrator\Local Settings\Temp\ismp001\win32ppk.dll
    0x7cf30000 - 0x7d175000      C:\WINNT\system32\SHELL32.dll
    0x75e60000 - 0x75e7a000      C:\WINNT\system32\IMM32.dll
    0x77820000 - 0x77827000      C:\WINNT\system32\VERSION.dll
    0x759b0000 - 0x759b6000      C:\WINNT\system32\LZ32.DLL
    0x036e0000 - 0x037f3000      C:\Documents and Settings\Administrator\Local Settings\Temp\LRE4.tmp\bin\awt.dll
    0x77800000 - 0x7781e000      C:\WINNT\system32\WINSPOOL.DRV
    0x76620000 - 0x76631000      C:\WINNT\system32\MPR.DLL
    0x03800000 - 0x03851000      C:\Documents and Settings\Administrator\Local Settings\Temp\LRE4.tmp\bin\fontmanager.dll
    VM Arguments:
    jvm_args: -Dsun.java2d.noddraw=true -Dtemp.dir=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp -Dis.jvm.home=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp -Dis.jvm.temp=1 -Dis.media.home=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE5.tmp\setup.jar -Dis.launcher.file=C:\Downloads\JDK 1.5 Update 6\jdk-1_5_0_06-nb-4_1-win-ml.exe -Dis.jvm.file=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp\jvm -Dis.external.home=C:\Downloads\JDK 1.5 Update 6 -Xms20m -Xmx60m
    java_command: run
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\LRE4.tmp
    PATH=C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 7 Stepping 3, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows 2000 Build 2195 Service Pack 4
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse
    Memory: 4k page, physical 261668k(84712k free), swap 436140k(257692k free)
    vm_info: Java HotSpot(TM) Client VM (1.4.2_10-b03) for windows-x86, built on Oct 10 2005 14:53:46 by "java_re" with MS VC++ 6.0

  • Error while installing CRM 4.0 SR1 with Oracle 10.2 on Windows 2000 Server

    Hi.. I'm getting error messages in the Database Instance phase, while installing <b>CRM 4.0 SR1 with Oracle 10.2</b> on Windows 2000 Server. Following are message snippets with last few lines showing error message:
    <b>SAPSSEXC.log</b>
    [code](DB) INFO: REPOSRC~0 created
    (DB) INFO: REPOTEXT created
    DbSl Trace: ORA-4031 occured when executing SQL statement (parse error offset = 0)
    (IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "REPOTEXT"
      (SQL error 4031)
      error message returned by DbSl:
    ORA-04031: unable to allocate 84 bytes of shared memory ("shared pool","select name,intcol#,segcol#,...","Typecheck","opndef:qkexrAddMatching1")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144208
    [/code]
    <b>SAPAPPL2.log</b>
    [code](DB) INFO: SMOT413~0 created
    (DB) INFO: SMOT413~R04 created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 31)
    (DB) ERROR: DDL statement failed
    (CREATE  INDEX "SMOT413~R05" ON "SMOT413" ( "MANDT" , "ERSKZ"  ) TABLESPACE PSAPCRM STORAGE (INITIAL 16384 NEXT 0000000040K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","select owner#,name,namespace...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144207
    [/code]
    <b>SAPSLEXC.log</b>
    [code]DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (DB) INFO: CO2MAP created
    (IMP) INFO: import of CO2MAP completed (0 rows)
    (DB) INFO: CO2MAP~0 created
    (DB) INFO: CO2MAP~IDX created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 0)
    (DB) ERROR: DDL statement failed
    (CREATE TABLE "CO2MAPINF" ( "SRCID" VARCHAR2(30) DEFAULT ' ' NOT NULL , "METHID" VARCHAR2(1) DEFAULT ' ' NOT NULL , "APPLNAME" VARCHAR2(30) DEFAULT ' ' NOT NULL , "PAGEKEY" VARCHAR2(70) DEFAULT ' ' NOT NULL , "ID" NUMBER(10) DEFAULT 0 NOT NULL , "LANGUAGE" VARCHAR2(1) DEFAULT ' ' NOT NULL , "NAMESPACE" VARCHAR2(30) DEFAULT ' ' NOT NULL  ) TABLESPACE PSAPCRM620 STORAGE (INITIAL 16384 NEXT 0000000640K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 2
    ORA-04031: unable to allocate 84 bytes of shared memory ("shared pool","select ts#,file#,block#,nvl(...","Typecheck","opndef:qkexrAddMatching1")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144742
    [/code]
    <b>SAPSDIC.log</b>
    [code](DB) INFO: TNMAP~0 created
    (DB) INFO: TODIR created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 0)
    (IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "TODIR"
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","update seg$ set type#=:4,blo...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144811
    [/code]
    <b>SAPSDOCU.log</b>
    [code](DB) INFO: TLSY3~0 created
    (DB) INFO: TLSY5 created
    (IMP) INFO: import of TLSY5 completed (3 rows)
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 33)
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE INDEX "TLSY5~0" ON "TLSY5" ( "LANGU", "REL", "OLD_REL", "IMP_DATE" ) TABLESPACE PSAPCRM STORAGE (INITIAL 16384 NEXT 0000000080K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","update seg$ set type#=:4,blo...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144811
    [/code]
    I am not sure but I think the problem is with the allocated shared memory size, which right now is:
    <b>init.ora</b>
    [code]shared_pool_size = 67108864[/code]
    <b>init<SID>.ora</b>
    [code]shared_pool_size = 90112000
    shared_pool_reserved_size = 9011200
    [/code]
    If this is the cause of the problem then how much should i increase it to? and do i need to modify the size in both files or only init<SID>.ora? Is there any SAP Note related to this problem? Thanks.
    Regards,

    Hi Vasu,
    ORA-4031... for 99%  of cases this means one thing:
    the database instance is not configured correctly.
    To proceed, do the following:
    1. get rid of init.ora (it's not used at all)
    2. make sure that the init<sid>.ora file is really used.
       If there is a spfile in the %ORACLE_HOME&/database folder
       then this will be used.
    3. With your  configured shared pool of 85MB your memory should really not be filled up - anyhow it's really too small for a SAP system!
    Thus I'd check how much memory the other sga-area members (buffer cache, large pool, streams pool, java pool...) take up.
        Remember on Windows 32 Bit, everything runs in one single process that can only allocate 2GB (or 3GB if you've set this option).
    See note:
    <a href="https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=869006&_NLANG=E">#869006 - Composite SAP note: ORA-04031</a>
    for more on this.
    And when you're setting up parameters anyway, check note
    <a href="https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=830576&_NLANG=E">#830576 - Parameter recommendations for Oracle 10g</a>
    KR Lars

  • 9.2.0.1.0 install hang at loading product on windows 2000 server SP4

    When I am trying to install Oracle Enterprise server 9.2.0.1.0 on a Windows 2000 server SP4 freshly installed
    The OUI hang when loading product @ 91% on the "File Location" screen !
    This is not the symcjit.dll prob with P4 computer because I have upgrade the P4 motherboard drivers and I have tried the solution which is to rename this file and it is not working
    Any URGENT idea ?
    Thx

    I have installed 9i successfully on machines with AMD64 cpus and 64bit Xeons without any problems.
    Cheers,
    R

  • Oracle 8 installation in Windows 2000 Server

    I can't install oracle Enterprise Manager (Oracle 8 product) in a Windows 2000 Server system. The installation program show me this error message:
    "Unable to delete the NT Service for the
    SQL * NT V2 listener"
    Can any body have the solution?

    Supposedly you need to find these 3 files.
    SQLNET,TNSNAMES, LISTENER using your windows find from start. change the names of the dev ones to .bak or something else.
    copy the files from your 8i/network/admin into those 2 other places (forget the/samples directories). restart the database and it should connect (Developer stuff to database) A friend of mine did this on W2K and it wokred fine. I have tried it on win98 with 8i personal edition for win 98 and DEV 6 and it failed. So if anyone knows anything I am missing let me know. SQL+ works fine so I knw the DB is fine.
    Thanks,
    Michael

  • ICal 2.0.2 wont publish to Windows 2000 Server

    After upgrading to Tiger, I am no longer able to publish an iCal Calendar to a private server which works perfectly on 10.3.X / ical 1.5.5.
    I'm running OS X 10.4.2 and iCal 2.0.2. I am trying to publish to a Windows 2000 server running IIS. When I attempt to publish, I see the dialog box which says, "Publishing <Calendar Name>"... The progress bar gets about 75% across and holds for a while. Finally, I get an error dialog which says, "Publish failed for calendar <calendar name>. -- Request to <hostname> failed after trying for 30 seconds."
    Now, I KNOW the permissions are set correctly on the server for two reasons. 1.) I can get it to work from 10.3.9 with no problem at all. And 2.) Under Tiger, if I try to publish this calendar, and there's already a .ics file on the server with the same name, iCal deletes it! It certainly wouldn't be able to delete the file if there were a permissions issue.
    So, iCal 2.0.2 does a GREAT job of deleting a calendar on the server, it just won't write a new one. I have even checked the Event viewer on the Windows 2000 server. I'm auditing successes and failures of all events and I see nothing to indicate that it's having a problem.
    Thanks in advance for any help/suggestions.
    -Chris

    I'll reply to myself here...
    WebDAV between ical 2.0.2 and Win2000 Server just does not work. This used to be a problem in earlier versions of iCal. That's where "FTP iCal" really came to the rescue.
    They finally fixed it, but now it seems to be broken once again.
    "FTP iCal" lives once again as "FTP iCal calendars." I guess I'll be using this little gem until Apple fixes iCal AGAIN. Here's the developer's site in case anyone else is interested.
    http://www.ese.u-psud.fr/epc/conservation/FTP_iCal/index.html
    -Chris

  • Install Oracle 10g on Windows 2000 server

    hello
    I have installed Oracle 10.1.0.2 on my server ( Windows 2000 server). The procedure of installation goes suitably but during the creation of the base it posts me:
    instance Created
    Dim-00019: Error of creation of service
    O/S-error OS1387) Impossible to add or remove a member of the local group because this member does not exist
    then, I look that the service OracleDBConsole of Enterprise Manager is not created
    knowing only SqlPlus goes well.
    after the installation, I want to add the console Enterprise Manager while using EMCA then it display this error:
    Failure of the configuration Enterprise Manager because: Job_queue_processes must be equal to or higher than 1
    help Me PLEASE

    First problem: Check the user , which does the installation,
    it must be a Local Administrator in order to install Oracle products on a
    Windows NT/2000 Server (machine not part of a domain) or it must be a Domain Administrator to install Oracle products on a Domain Controller (PDC or BDC) (machine part of a domain).
    Another known issue for this problem is a non-english Windows version,in this case the software should reloaded from OTN, which has a fix.
    Second problem: You cannot run emca, BEFORE you have a running database, DBConsole depends on it.
    Werner

  • Error -36 connecting to Windows 2000 Server

    I'm trying to connect to a windows 2000 server that appears in my Network browser but I can't authenticate using the Network browser or via smb://.
    I have been able to connect in the past no problem and I can login to the server on another machine using my user and password.
    I get two errors:
    If I go via Network browser I can click and get a username and password dialog box. When I enter my details and hit return I get - 'The alias (servername) could not be opened because the original could not be found'
    If I go via Connect to Server i get a "can't connect to server blah blah (-36 error)" and I can cancel or try again.
    I've searched high and low for a solution but can't find anything like this.
    I suspect I need to trash some preference or other, like you could do in OS9, but I have no idea where to start with OS X.
    Can anyone help?
    Al
    G5   Mac OS X (10.3.9)  

    See the following article
    http://docs.info.apple.com/article.html?artnum=301580
    Basically the steps are as follows:
    Follow the steps below to configure your computer to use plain text passwords to make SMB/CIFS connections when the specified Samba or Windows (SMB/CIFS) server does not support encrypted passwords. (You must be an administrator to do these steps.)
    Make sure that you are not currently connected to any Samba or Windows (SMB/CIFS) servers and that you do not have any Samba or Windows-related error messages open.
    Open the Terminal (/Applications/Utilities/).
    At the prompt, type: sudo pico /etc/nsmb.conf
    Press Return.
    Enter your password when prompted, then press Return again.
    You should see an empty file and a "New File" notice at the bottom of the pico window. If you do not see the "New File" notice, this file already exists.
    Enter the following into the file so that it appears as follows:
    [default]
    minauth=none
    Save the file (press Control-O), press Return, then exit pico (Control-X).
    Type: sudo chmod a+r /etc/nsmb.conf
    Press Return.
    Restart your computer.

  • Rwserver -install server_name - failing in windows 2000 server

    Hi,
    I have installed Oracle Application Server 10g R-2 on windows 2000 server.I have deployed all the application of my concern but while configuring report server through command prompt via following command:-
    rwserver -install <server_name> autostart=yes
    giving error message that plse go to installation guide for operation of this program.
    Can any one plse help me out..........
    Thanks & Regards
    Rishikesh Singh

    Hi
    I have the same question namely how does one create a new (in my case an "own process") Report Server. I have copied below a snippet from the Oracle Application Server Reports Services Publishing Reports to the Web 10g Release 2 (10.1.2) documentation (it ommits to tell how a new service is created!)
    "If you add any Reports Servers after installing Oracle Application Server, you should register the new server(s) in two places:
    The Oracle Process Manager and Notification Server's opmn.xml file.
    The Oracle Enterprise Manager 10g's targets.xml file.
    To register a new Reports Server in both opmn.xml and targets.xml, run the
    following command line:
    On UNIX:
    ORACLE_HOME/bin/addNewServerTarget.sh reports_server_name
    On Windows:
    ORACLE_HOME\bin\addNewServerTarget.bat reports_server_name"
    So does running the script also create as well as configure the new service?
    Thanks
    Sebastien

  • Cannot smb to Windows 2000 Server share (works in 10.4)

    After installing a fresh copy of Leopard on my macbook pro I cannot connect to a previously working share on a Windows 2000 Server using smb. I am using Go > Connect to Server to connect.
    I am prompted for a username and password but the connection fails with Error code -43.
    Here is my Console info.
    11/26/07 12:13:08 PM /System/Library/CoreServices/NetAuthAgent.app/Contents/MacOS/NetAuthAgent[459] Enumerate shares failed!: syserr = No such file or directory
    Any help is appreciated!

    I found a work around for this in another thread. Thank you gnaegi.
    Below is what was posted...
    Open Terminal.app from /Applications/Utilities and then enther the following:
    mkdir myshare #(do this only the first time)
    mount -t smbfs //[email protected]/sharename myshare
    When you work this way you should unmount the share before you log out, shutdown or put the computer to sleep. To do this, open the Termina.app and enter:
    umount myshare
    The mounted share is now in your home.

  • Netbeans and Windows 2000 Server Problems

    I've tried to run netbeans on my windows 2000 server OS a few times. It usually doesn't work out and I have to go back to pcGrasp.
    Does anyone out there know of any issues between netbeans and this OS. Is it worth it. I'd like to move away from the .net world and learn j2EE but I'd like to move up my IDE. Netbeans seems like the best choice. Does any experienced individuals out there know of a better one?
    This was my latest error with netbeans. From just opening a folder??? I also tried to report it - I still have to wait another hour after I registered before I could HOPEFULLY find where exactly I can report it. Maybe thats why there are so many bugs. They make it impossible to report something they tell you to report to help out.
    A java.lang.reflect.InvocationTargetException exception has occurred.
    Please report this at http://www.netbeans.org/issues.html,
    including a copy of your ide.log file as an attachment.
    The ide.log file is located in your C:\Documents and Settings\Administrator\.netbeans\3.6\system folder.
    Thanks for anything
    -Wiley

    I use Windows 2000 Professional and have not problems.
    I would suggest,
    - ensure you have all windows updates.
    - ensure you have JDK 1.4.2_04
    - try eclipse which is also free (From IBM) http://www.eclipse.org/

  • Migrating Users and Groups from Windows 2000 server to Windows 2013 Standard.

    OK...let me see if I can get this question out the way I need to....
    I inherited a Windows 2000 Server that's on it's last legs.  We have a new server, a Windows 2013 Standard machine that we just recently purchased.  I need to migrate the users and groups over to the new server, but there are two things that are
    making it difficult:
     The 2000 machine is NOT a Domain Controller
    The 2000 machine is NOT running Active Directory
    This is a file server that hangs onto another network of which I have no control of.  It has its' own IP address and there is NO WAY we can run Active Directory or make it a domain controller.
    I have close to 300 users, groups, and printers to bring over to the new server.  Rather than kill myself doing manual input, is there any other way to do this? 

    Hi,
    When you import the CSV file to new server, you need to create a new user account then import the CSV.
    http://blogs.technet.com/b/heyscriptingguy/archive/2014/10/01/use-powershell-to-create-local-users.aspx
    If you have any issue, i suggest you could ask in PowerShell forums:
    https://social.technet.microsoft.com/Forums/en-US/home?forum=winserverpowershell
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Oracle8i on Windows 2000 Server - Oracle Instance don't auto start

    I've installed the Oracle 8.1.7 on a Dell Pentium III server running Windows 2000 Server operational system. During the installation the Oracle Instance was started up, but after I reboot the computer, the Oracle Listener service and the Oracle service was started in automatic mode but the Oracle Instance do not started though.
    My Oracle DBA teacher ask me to run Oradim and edit the Oracle configuration startup parameters. I did, but it didn't solve the problem. The values on Windows registry of the ORA_<SID>_AUTOSTART key is "true". The Dba Studio also gets information form the Oracle server and all the fields seems to be correct with auto-start option, but it didn't work out.
    Can someone point me to any text I can read about installation troubles on Windows 2000 Server ?
    Thanks in advance.
    Jayme.

    Hi
    I don't have an 8i db to test on but I think it works the same as on 9i.
    Check the following parameters in your registry in the key HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0:
    ORA_<YOUR_SID>_AUTOSTART=TRUE
    ORA_<YOUR_SID>_PFILE=<full path and file name of your init file>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I can not run "hello1.jsp" on windows 2000 server

    I have just installed WebLogic 6.1 on windows 2000 server
              I put this file(hello1.jsp) on
              "c:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp" .When I
              tried to
              load this jsp file on explorer ,i input "http://localhost:7001/hello1.jsp"
              ,the following error happened
              Compilation of
              'C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_
              war_myserver_myserver_DefaultWebApp\jsp_servlet\_hello1.java' failed:
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_w
              ar_myserver_myserver_DefaultWebApp\jsp_servlet\_hello1.java error=2
              Full compiler error(s):
              java.io.IOException: CreateProcess: javac -classpath
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp;C:\bea\wlserve
              r6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_war_myserver_my
              server_DefaultWebApp;C:\bea\jdk131\jre\lib\rt.jar;C:\bea\jdk131\jre\lib\i18n
              .jar;C:\bea\jdk131\jre\lib\sunrsasign.jar;C:\bea\jdk131\jre\classes;.;C:\bea
              \wlserver6.0\lib\weblogic_sp.jar;C:\bea\wlserver6.0\lib\weblogic.jar -d
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_w
              ar_myserver_myserver_DefaultWebApp
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_w
              ar_myserver_myserver_DefaultWebApp\jsp_servlet\_hello1.java error=2
              at java.lang.Win32Process.create(Native Method)
              at java.lang.Win32Process.<init>(Win32Process.java:66)
              at java.lang.Runtime.execInternal(Native Method)
              at java.lang.Runtime.exec(Runtime.java:551)
              at java.lang.Runtime.exec(Runtime.java:477)
              at java.lang.Runtime.exec(Runtime.java:443)
              at weblogic.utils.Executable.exec(Executable.java:147)
              at weblogic.utils.Executable.exec(Executable.java:111)
              at
              weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.jav
              a:550)
              at
              weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:359)
              at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:381)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:189)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:154)
              at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:36
              6)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :240)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :200)
              at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:2390)
              at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :1959)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              

    Looks like that weblogic server is unable to create Java process for
              compilation of JSP into (JAVA) class file .......
              It may be due to:
              a. You do not have JDK installed/configured on the machine. [JDK is required
              for JSP pages to be compiled at runtime]
              b. WebLogic server is unable to invoke correct javac.exe [Check JAVA_HOME
              and PATH variable to ensure that they are correct and it is correctly
              specified in the startWebLogic.cmd, startWLS.cmd files]
              Thanks,
              Selva-
              "weblogic.developer.interest.jsp" <[email protected]> wrote in message
              news:[email protected]...
              > I have just installed WebLogic 6.1 on windows 2000 server
              >
              > I put this file(hello1.jsp) on
              > "c:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp" .When I
              > tried to
              > load this jsp file on explorer ,i input "http://localhost:7001/hello1.jsp"
              > ,the following error happened
              >
              >
              >
              > Compilation of
              >
              'C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_
              > war_myserver_myserver_DefaultWebApp\jsp_servlet\_hello1.java' failed:
              > --------------------------------------------------------------------------
              > ----
              >
              >
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_w
              > ar_myserver_myserver_DefaultWebApp\jsp_servlet\_hello1.java error=2
              >
              > --------------------------------------------------------------------------
              > ----
              > Full compiler error(s):
              > java.io.IOException: CreateProcess: javac -classpath
              >
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp;C:\bea\wlserve
              >
              r6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_war_myserver_my
              >
              server_DefaultWebApp;C:\bea\jdk131\jre\lib\rt.jar;C:\bea\jdk131\jre\lib\i18n
              >
              .jar;C:\bea\jdk131\jre\lib\sunrsasign.jar;C:\bea\jdk131\jre\classes;.;C:\bea
              > \wlserver6.0\lib\weblogic_sp.jar;C:\bea\wlserver6.0\lib\weblogic.jar -d
              >
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_w
              > ar_myserver_myserver_DefaultWebApp
              >
              C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp\WEB-INF\_tmp_w
              > ar_myserver_myserver_DefaultWebApp\jsp_servlet\_hello1.java error=2
              > at java.lang.Win32Process.create(Native Method)
              > at java.lang.Win32Process.<init>(Win32Process.java:66)
              > at java.lang.Runtime.execInternal(Native Method)
              > at java.lang.Runtime.exec(Runtime.java:551)
              > at java.lang.Runtime.exec(Runtime.java:477)
              > at java.lang.Runtime.exec(Runtime.java:443)
              > at weblogic.utils.Executable.exec(Executable.java:147)
              > at weblogic.utils.Executable.exec(Executable.java:111)
              > at
              >
              weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.jav
              > a:550)
              > at
              > weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:359)
              > at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:381)
              > at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:189)
              > at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:154)
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:36
              > 6)
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > :240)
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > :200)
              > at
              >
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              > ntext.java:2390)
              > at
              >
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              > :1959)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              >
              >
              >
              >
              

  • Can i change my Exchange 2003 organization to NATIVE MODE if my Front-End Exchange server is Windows 2000 Server

    I am planing to upgrade from exchange server 2003 to exchange server 2010. I understand 2010 can co-exisist with 2003, but my 2003 organization must be in NATIVE MODE, not a problem because i don't have anymore MS Server 2000 domain controllers, they
    were decommisioned a few moths after we moved to AD. However my Front-End exchange server that sits on my DMZ is running Exchange server 2003 on Windows 2000 Server.
    Can i change my Exchange 2003 organization to NATIVE MODE if my Front-End Exchange server is on the Windows 2000 Server OS? If not, will i have to setup a new Front-End Exchange server on at least Windows Server 2003 to replace the 2000 server setup?
    It's been a very long time since these servers were configured so i may need help setting up a new Front-End server if it will be required.
    thanks
    B
    Bobby

    My apologies for the very, very late reply, is have made the change to native mode for my
    Exchange environment, email is working fine, no problems. Thanks Cheng.<o:p></o:p>
    I ran the Exchange 2010 Pre-Deployment Analyzer tool yesterday, and it showed that the
    Active Directoy Forest is not Windows Server 2003 native. The domain forest
    functional level showed the level to be "Windows Server 2003", is
    just wanted to verify this.<o:p></o:p>
    Our corporate AD has one Root domain, (I’ll call it, Corp.com) and one child
    domain, (I’ll call it, na.corp.com). na.corp.com is functioning at Server 2003,
    the Forest of Corp.com, as the analyzer found, shows a functional level of
    Windows 2000. All Windows 2000 PDC have been off the network for almost 9
    years, and were properly demoted and removed. I guess the one place is didn't
    look was at the Forest level.<o:p></o:p>
    I opened the AD Sites and Service mmc plugin on the corp.com server and did find the old
    Windows 2000 PDC listed with the Servers. I drilled down into the containers
    for the old server, deleted everything, and was able to delete the W2K PDC. I
    still cannot raise the Forest level however.<o:p></o:p>
    I also noticed that domain replication has errors, (8614, 1908, 1256, and 8606), so i
    have a bit of a mess, and i am not sure how to fix it. I will post this on the
    Exchange 2010 upgrade, and AD forums for assistance, but i wonder if i need
    paid assistance.<o:p></o:p>
    Thanks again Cheng
    B<o:p></o:p>
    Bobby

Maybe you are looking for