Increasing disk size in windows server 2003

Hello,
Am running a file server on windows server 2003. And i have 3 partitions as C, D and E. Where as D & E having 1 TB each. My company user documents are mapped to D as well as E. Now my D drive is running out of space and i have around 800 Gigs
free space in E drive. I would like to move some of the free space from E drive to D. Am bit afraid to use diskpart command to extend the volume also not sure whether diskpart will help me.
Can someone please guide me..
Thanks in Advance
NAZeeR

Hi,
"Extend Volume" only allows you to extend a drive into contiguous unallocated space (on the right). In this case you can only merge unallocated space to D drive. If you want to merge noncontiguous unallocated space to C drive, there are two solutions. Please
refer to the article below:
How to Merge Unallocated Space to C Drive without Losing Data?
http://www.partition-magic.org/res/merge-unallocated-space-to-c-drive.html
Regards,
Mandy
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Increase disk size for virtual server

    Hi,
    A virtual server system drive is currently at 90%full. How to safely allocate more disk space to the system drive of that virtual server without causing issues to the installed Operating systems on that drive.
    I read through the Virtual Iron documentation and nothing mention about increasing disk space for virtual server.
    Thanks in advance for response.

    Hi,
    I was hoping to increase the virtual storage of the drive attached to virtual servers and not the actually physical storage.
    I was looking around in it and found was able to increase the disk space by by editing the virtual storage disk.
    I tested creating a new disk (5GB), increase the disk space(10GB) and login to virtual server and extend the new disk with the unallocated disk space.
    It does seem to work and appear as 15GB.
    I just concern if windows operating is installed on that disk, will it cause any issue if I extend it with the unallocated disk space?
    Or it's safe to do so?
    Many thanks.

  • Increase SGA more than 3GB in Windows Server 2003 Ent. R2

    Dear Sir;
    I have 2 servers with Windows server 2003 Enterprise R2, both servers are 32 Bit, but windows can manage our 16GB installed on this server.
    Our database is 10.2.0.3 (32 Bit) With RAC.
    My issue is to increase Instances SGA to 7 or 8 GB. I failed to increase it more than 3GB in both nodes.
    Please help
    Thanks and best regards
    Ali Labadi

    Dear all;
    I have walkthrough on all the documents you have sent and make the following changes on DB pfile:
    1-     Remove the DB_CACHE_SIZE.
    2-     Add a new parameter DB_BLOCK_BUFFERS
    3-     Add a new parameter USE_INDIRECT_DATA_BUFFERS=TRUE.
    4-     Increase SGA to 7000M
    NOTE: Windows can manage my 16GB as 15.2GB of RAM
    In OS level, update the boot.ini file by adding the following line:
    multi(0)disk(0)rdisk(0)partition(2)\WINNT="Windows Server 2003, Enterprise Edition" /3GB /PAE
    in Oracle home registry I have added the below string:
    AWE_WINDOW_SIZE- value: 1073741824
    Startup database using new pfile, returns error cannot start database using the current system setting, shared_pool_size must be larger than xxxx.
    I have increased the shared_pool_size but no luck, even when I increase it to reach 1GB it also return the same error with same value which is less than 200MB
    Please advice.
    Regards
    ali

  • Tuxedo Memory Leak Issue (Tuxedo 8.1 - Windows Server 2003)

    Hi
    We are running tuxedo 8.1, 32 bit with patch level 258 in our windows server 2003 based production environment. We are currently facing an issue where the memory usage of machine slowly keeps on going higher and higher eventually resulting in “Memory Allocation Failure” to tuxedo servers. We then have to do a complete restart of tuxedo which stabilizes the system for other few days.
    We have been analyzing the our source code in development/test environment using different tools like a customized Alzheimer tool and IBM purify but both tools reported no memory leaks. We then developed a test tuxedo server exposing a tuxedo service which simply allocates a memory to a response buffer and then returns the response buffer. I then configured tuxedo queue with same name “MEMTEST3” and configured a TMQForward server to call this “MEMTEST3” service every time a message is en-queued to the MEMTEST3 queue.
    unsigned long _LIBENTRY ulTPAlloc(FBFR32 **ppc, long size)
    unsigned long ulRes = MSG_SUCCESS_c;
    ppc = (FBFR32 ) tpalloc("FML32", (char *) 0, size);
    if (*ppc == (FBFR32 *) 0) {
    vLogMessage(hGetLogHandle(), MSG_MEM_ALLOC_ERR_c, (char *) 0, (Event_t *) 0,
    BM_NOSUPPRESS_c, size);
    ulRes = MSG_MEM_ALLOC_ERR_c;
    return (ulRes);
    /*==============================================================================
    Service MEMTEST2
    ==============================================================================*/
    void MEMTEST3(TPSVCINFO *pRequest)
    FBFR32 *pFmlResponse = NULL;
    FBFR32 *pFml = NULL;
    unsigned long ulRes = MSG_SUCCESS_c;
    unsigned long ulActionCode = 0;
    int iExitValue = 0;
    long lTpurcode = 0;
    FBFR32 *pFmlNULL = NULL;
    userlog("Starting MEMTEST3 service.");
    if (pRequest == NULL || pRequest->data == NULL)
    vLogMessage(hGetLogHandle(), MSG_API_ARGS_ERR_c, NULL, NULL, BM_NOSUPPRESS_c);
    ulRes = MSG_API_ARGS_ERR_c;
    else
    pFml = (FBFR32 *) pRequest->data;
    userlog("MEMTEST3: GET THE MEM");
    ulRes = ulTPAlloc(&pFmlResponse, 1024);
    userlog("Ending MEMTEST3 service.");
    tpreturn( iExitValue, lTpurcode, ( char * ) pFmlResponse , 0L, 0L );
    While I was en-queuing the messages to the queue, I kept on monitoring the memory usage of the server hosting the service. What I observed was that I saw an initial hike in the usage of memory of the server followed by small jumps in memory increase. I kept on monitoring the server for a long time and the memory was never returned. What I suspect is that there is memory leak in tuxedo TMQforward process as it never released the memory allocated in the service.
    Can anyone help how this situation can be avoided ?
    Kind Regards,
    Asim

    Hi Todd,
    Also as well as my previous question, I also found your reply to another user posting something similar at Re: Memory leaks in Tuxedo libraries
    You mention that:
    In general Tuxedo will free anything it allocates, although there are cases where memory is allocated and not freed because:
    +1) it is one time or a fixed number of times allocations that will not continue to grow, and freeing up the memory just before exiting isn't of any benefit.+
    +2) the memory is under Tuxedo's memory management functions where we manage our own look aside lists to provide better buffer allocation performance and again freeing these before process termination is of little benefit.+
    Our code does only issue TPALLOC once and then a TPRETURN - could point (1) of your comment above also be something of concern to us, where we would observe a continuous growth of memory usage?
    I know it may sound like a stupid question but do we need to run our code 20,000 times before memory gets freed?
    Kind Regards,
    Asim

  • 10g application server install on windows server 2003

    already installed on my pc oralce 9i database and oralce 6i
    now I m installing 10g application server on windows server 2003 but geeting error, when I click on setup button
    Error:
    checking swap space : 1488mb Available, 1535 mb required . Failed
    please guide me

    got it ... increased virtual memroy size 1550...

  • Performance Counters on Windows Server 2003

    This is a new install of ColdFusion MX7 on Windows Server
    2003. When I open up Performance Monitor in the Operating System I
    don't have any counters for ColdFusion.
    + The "Enable Performance Monitoring" option is checked "On"
    in the CF Administrator.
    + This is a single server installation
    I've never had this problem before after many CF installs. Is
    there some way to add them manually?
    Thanks

    HI
    whats your client system configuration like RAM size(Greater than 1 gb is effective) and also check the virtual memory.
    sometime,Bandwidth allocation may cause the connectivity slow between client and server.
    If so,try to increase the bandwidth.

  • Windows 7 x64 can't read/install any printer drivers from Windows Server 2003 x64 (AMD64 folder and HP Deskjet 855c)

    I read the thread Widows 7 printer
    HP deskjet 855c driver about possible installation of HP855c drivers onto Windows 7 x64 from "Windows Server 2003 x64" CD but I didn't have enough luck to succeed with doing it on my laptop. That thread appears to be dead now
    as it is marked "Answered", so I'm asking for help here. I have Toshiba Satellite P500 with Windows 7 Home Premium 64-bit (http://i55.tinypic.com/2zgth6v.jpg). 
    Let me tell you first that I don't have access to Windows Server 2003 x64 or XP Pro 64 CD's. However I did some research online, which eventually forced me to learn about the "file sharing". After extensive search I was able to get the copies
    of AMD64 folders from Windows Server 2003 R2 Standard x64 with SP2 and
    XP Pro 64. The reason that I went also after XP Pro was because I thought that the extra wording "R2 Standard x64 with SP2" in description of "Windows Server 2003" did not reflect the exact name provided by poster
    Alan. I couldn't find just "Windows Server 2003 x64" (does it matter?).
    Anyway, I followed first the drill with running "printui /s /t2" and disabling UAC, and then in both cases I was able to locate the
    NTPRINT.INF file (http://oi51.tinypic.com/9qwvt2.jpg - this image is from XP Pro AMD64 folder) but each time when I
    attempted to install the driver, I got the same message stating:
    "The folder you specified doesn't contain a compatible software drive for your device. If the folder contains the driver, make sure it's designed to work with Windows for x64-based systems." (http://oi53.tinypic.com/27yveiw.jpg)
    Why aren't there x64 drivers?
    During several installation attempts I had the printer connected to or disconnected from my laptop. It didn't make any difference. I must add that for this purpose I had to use different cable than the original one designated only for the
    Parallel port in my old desktop with Windows XP. My new laptop with Windows 7 x64 came only with 3 USB ports (plus 1 HDMI and 1 Serial). Because of that situation I bought in advance a new printer cable called “USB to 36-pin Parallel Port Adapter
    Cable” (http://www.amazon.com/gp/product/B003A8I75E). I'm not sure, if it will work until I can install the printer.
    Besides, nobody talked about this issue yet. I was also playing with the port choices in "Add printer" step; changing from default LPT1 to USB001 with the same negative results.
    I don't know what I'm doing wrong. I was very hopeful after reading positive "case closed" notes there.
    Can anyone help me here, maybe by making the necessary files available for download? I'm willing to pay for such assistance or make a donation, if necessary. Seriously. Judging by the large number of views of the original
    thread, one could assume that there is a potential demand for such service. It would be more human to pay few bucks for a few driver files than $900 for the whole Windows Server 2003 x64 CD, no? Can Microsoft accomodate me/us, please? :)
    Andrew*
    P.S. I was advised to come for help here from
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/windows-7-x64-cant-readinstall-any-printer-drivers/4e7d06e1-33a5-4597-be70-4fdc087a63a7?msgId=9a045994-0d31-4d40-b17d-dba372393ee4

    I have my HP 855c/driver working on Win 7 Ultimate x64. I used the 'printui /s' procedure and 4 files described above with some minor changes.
    I pulled WindowsServer2003.WindowsXP-KB914961-SP2-x64-ENU.exe down from the Microsoft website. Running the file causes the exe to unpack into a temp folder at the root drive. A 'Setup Error' message box is displayed once the file is run. I left this
    message box up until I copied ntprint.inf, ntprint.cat, and sp2.cab from the temp folder.
    I copied driver.cab from a Windows XP Pro disc. I also needed amd64\stdnames.gpd which was already in my Windows 7 c:\windows\system32\spool\drivers\x64\3 folder.  
    I created a folder with the 5 files (ntprint.inf, ntprint.cat, sp2.cab, driver.cab, and amd64\stdnames.gpd). This is my 'Have Disc' folder. 
    I followed the 'printui /s' instructions, first changing the permissions mentioned above and then installing the driver. Next I followed the instructions to add a printer from Control Panel 'Devices and Printers' - 'Add Printer', choosing to 'use an existing
    driver' when installing the HP 855c.
    I used a slightly different ntprint.inf, size 1570418. The readable contents of ntprint.inf is as follows. Notice the line 'CatalogFile=ntprint.cat' is not included. I tried using the 1570468 version of ntprint.inf; when I did I received an incompatibility
    message (probably the same one mentioned above).
    ; NTPRINT.INF (for Windows Server 2003 family)
    ; List of supported printers, manufacturers
    [Version]
    Signature="$Windows NT$"
    Provider=%MS%
    ; LayoutFile=layout.inf
    ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
    Class=Printer
    DriverVer=10/01/2002,5.2.3790.4533
    [ClassInstall32.NT]
    AddReg=printer_class_addreg
    [printer_class_addreg]
    HKR,,,,%PrinterClassName%
    HKR,,Icon,,"-4"
    HKR,,Installer32,,"ntprint.dll,ClassInstall32"
    HKR,,NoDisplayClass,,1
    HKR,,EnumPropPages32,,"printui.dll,PrinterPropPageProvider"
     Good luck

  • Installation problem with windows server 2003 64 bit

    I downloaded all hyperion components from e-deleivery for windows server 2003 64 bit when i tried to install it a message said that some component are not compatible when i removed stratigic finance and FDM components the installation started and completed .in the configuration phase many components failed to configured and here's a copy of the log file:
    (Nov 21, 2010, 02:25:51 PM), com.hyperion.cis.config.wizard.adapter.WizardFormAdapterPanel, ERROR, The specified database is already configured.
    (Nov 21, 2010, 02:30:34 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    java.lang.NumberFormatException: null
         at java.lang.Integer.parseInt(Unknown Source)
         at java.lang.Integer.valueOf(Unknown Source)
         at com.hyperion.hit.registry.ServiceComponentImpl.getPort(ServiceComponentImpl.java:45)
         at com.hyperion.hub.HubAppServerDeployer.checkOpenLDAPFromRegistry(HubAppServerDeployer.java:282)
         at com.hyperion.hub.HubAppServerDeployer.updateOpenLDAPPort(HubAppServerDeployer.java:175)
         at com.hyperion.hub.HubAppServerDeployer.preDeploy(HubAppServerDeployer.java:113)
         at com.hyperion.cis.config.AppServerDeployer.preDeploy(AppServerDeployer.java:205)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeAppDeploymentTask(RunAllTasksWizardAction.java:604)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:215)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Nov 21, 2010, 02:41:18 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:43:35 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:45:21 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:45:21 PM), com.hyperion.awb.config.AWBDBConfigurator, ERROR, Error:
    java.lang.NullPointerException
         at com.sun.org.apache.xerces.internal.dom.ElementImpl.normalize(Unknown Source)
         at com.sun.org.apache.xerces.internal.dom.ElementImpl.normalize(Unknown Source)
         at com.sun.org.apache.xerces.internal.dom.ElementImpl.normalize(Unknown Source)
         at com.sun.org.apache.xerces.internal.dom.ElementImpl.normalize(Unknown Source)
         at com.hyperion.awb.config.PIRegistartionXMLWriter.updateHubDetails(PIRegistartionXMLWriter.java:265)
         at com.hyperion.awb.config.AWBDBConfigurator.configure(AWBDBConfigurator.java:249)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDbConfigTask(RunAllTasksWizardAction.java:658)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:202)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Nov 21, 2010, 02:45:21 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
         at com.hyperion.awb.config.AWBDBConfigurator.configure(AWBDBConfigurator.java:275)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDbConfigTask(RunAllTasksWizardAction.java:658)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:202)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Nov 21, 2010, 02:47:29 PM), com.hyperion.cis.config.CmsRegistrationUtil, ERROR, There is no logical instance of Shared Services web application in Registry
    (Nov 21, 2010, 02:47:29 PM), com.hyperion.awb.config.AWBAppServerDeployer, ERROR, Error occured in deRegisterOldProductInstance(): null
    (Nov 21, 2010, 02:47:29 PM), com.hyperion.cis.config.CmsRegistrationUtil, ERROR, There is no logical instance of Shared Services web application in Registry
    (Nov 21, 2010, 02:47:29 PM), com.hyperion.awb.config.AWBAppServerDeployer, ERROR, ERROR:
    com.hyperion.cis.config.AppDeployException: CMS Client cannot be created
         at com.hyperion.awb.config.AWBAppServerDeployer.publishBPMAInstanceDocument(AWBAppServerDeployer.java:704)
         at com.hyperion.awb.config.AWBAppServerDeployer.registerProductInstance(AWBAppServerDeployer.java:796)
         at com.hyperion.awb.config.AWBAppServerDeployer.postDeploy(AWBAppServerDeployer.java:350)
         at com.hyperion.cis.config.AppServerDeployer.postDeploy(AppServerDeployer.java:336)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeAppDeploymentTask(RunAllTasksWizardAction.java:610)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:215)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Nov 21, 2010, 02:50:11 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:51:11 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:54:20 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:58:04 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:58:16 PM), com.hyperion.essbase.config.EssbaseAgentTaskProcessor, ERROR, Error in executing the script to register Essbase as a service: exitCode = 1
    (Nov 21, 2010, 02:58:54 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:59:15 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 02:59:16 PM), com.hyperion.planning.HspDBConfigurator, ERROR, Error happened: Index: 0, Size: 0
    (Nov 21, 2010, 02:59:16 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
         at com.hyperion.planning.HspDBConfigurator.configure(HspDBConfigurator.java:209)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDbConfigTask(RunAllTasksWizardAction.java:658)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:202)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Nov 21, 2010, 03:03:06 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 03:05:34 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 03:19:29 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Shared Services Registration task can not be executed because Shared Services instance is not available in Registry
    (Nov 21, 2010, 03:19:30 PM), com.hyperion.hfm.config.HfmDbConfigurator, ERROR, Error while configuring HFM DatabaseEntry does not exist for these parameters in tnsnames.ora file.
    (Nov 21, 2010, 03:19:30 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
         at com.hyperion.hfm.config.HfmDbConfigurator.configure(HfmDbConfigurator.java:151)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDbConfigTask(RunAllTasksWizardAction.java:658)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:202)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Nov 21, 2010, 03:19:39 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    java.lang.NullPointerException
         at com.hyperion.hfm.config.HfmAppServerTaskProcessor.execute(HfmAppServerTaskProcessor.java:105)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeCustomTask(RunAllTasksWizardAction.java:741)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:188)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    if any one installed hyperion EPMS on windows server 2003 64 bit please i need your help
    thanks in advanced
    Edited by: eng3m on Nov 21, 2010 3:32 PM

    Hi,
    EDGE/Crystal Reports Server and Enterprise are no native 64bit applications. That does mean that they only run in 32bit mode. But you can install it on a 64bit hardware with a 64bit OS.
    Regards
    -Seb.

  • Java2SDk 1.4.2.06 installation problem on Windows Server 2003

    I tried the installation of Java2SDk 1.4.2.06. ,I tried this, but it fails to complete and NO directory folder is created so I cannot continue with the proccess. The OS is Windows Server 2003.
    I have done the following procedures:
    Enabled/Disabled the IIS configuration
    Enabled/Disabled the Windows Firewall
    Enabled/Disabled Antivirus software
    The error in the event log is:
    Event Type: Error
    Event Source: Application Error
    Event Category: (100)
    Event ID: 1000
    Date: 3/6/2007
    Time: 2:23:49 PM
    User: N/A
    Computer: GERSSERVER
    Description:
    Faulting application msiexec.exe, version 3.1.4000.1433, faulting module unknown, version 0.0.0.0, fault address 0x0013b43e.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74 Applicat
    0008: 69 6f 6e 20 46 61 69 6c ion Fail
    0010: 75 72 65 20 20 6d 73 69 ure msi
    0018: 65 78 65 63 2e 65 78 65 exec.exe
    0020: 20 33 2e 31 2e 34 30 30 3.1.400
    0028: 30 2e 31 34 33 33 20 69 0.1433 i
    0030: 6e 20 75 6e 6b 6e 6f 77 n unknow
    0038: 6e 20 30 2e 30 2e 30 2e n 0.0.0.
    0040: 30 20 61 74 20 6f 66 66 0 at off
    0048: 73 65 74 20 30 30 31 33 set 0013
    0050: 62 34 33 65 b43e
    Please advice on this problem. Other tech support recommendations were to reinstall the OS.
    I have also tried installing the latest version of Java 2 SDK without success.
    Thanks for your support
    William Hernandez
    UPR-Mayaguez Campus

    Thank you so much for your help!
    I have just tried as you said. Now I see that actually at the beginning of the intallation, there is a NullPointerException. Here is the error information:
    ===============================
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Launching Java(TM) 2 Runtime Environment...
    java.lang.NullPointerException
    at sun.java2d.SunGraphics2D.revalidateAll(SunGraphics2D.java:2086)
    at sun.java2d.SunGraphics2D.drawString(SunGraphics2D.java:2536)
    at com.sun.wizards.awt.Header.paint(Header.java:112)
    at sun.awt.RepaintArea.paint(RepaintArea.java:177)
    at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:260)
    at java.awt.Component.dispatchEventImpl(Component.java:3678)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    ===============================
    Please help me out of this. Thank you.

  • New Windows server 2003 Hyper-V guest fails to boot

    Hello,
    I'm currently doing some virtualization experiments on my new server hardware. The host hardware is:
    IBM x3650 M4
    x2 Xeon E5-2609
    32GB RAM
    x2 480 GB SSDs
    Server OS: Windows server 2012
    I'd like to test some legacy app virtualization. I've configured a VM and have installed Windows server 2003. The install is done via DVD. The issue at hand is that after the initial installation, the server fails to boot. The VM goes into a reboot loop
    and so far the only error logging I'm able to find is in the hosts event log. 
    Log Name: Microsoft-Windows-Hyper-V-Worker-Admin
    Source: Microsoft-Windows-Hyper-V-Worker
    Date: 7/8/2014 2:14:48 PM
    Event ID: 18560
    Task Category: None
    Level: Critical
    Keywords:
    User: NT VIRTUAL MACHINE\A0D20FA4-B27B-4B58-85C1-87D74B0ADD2D
    Computer: CCSTS1.cnet2k.cornerstonecredit.net
    Description:
    'LegacyTS' was reset because an unrecoverable error occurred on a virtual processor that caused a triple fault. If the problem persists, contact Product Support. (Virtual machine ID A0D20FA4-B27B-4B58-85C1-87D74B0ADD2D)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Microsoft-Windows-Hyper-V-Worker" Guid="{51DDFA29-D5C8-4803-BE4B-2ECB715570FE}" />
    <EventID>18560</EventID>
    <Version>0</Version>
    <Level>1</Level>
    <Task>0</Task>
    <Opcode>0</Opcode>
    <Keywords>0x8000000000000000</Keywords>
    <TimeCreated SystemTime="2014-07-08T21:14:48.544007000Z" />
    <EventRecordID>159</EventRecordID>
    <Correlation />
    <Execution ProcessID="1512" ThreadID="3536" />
    <Channel>Microsoft-Windows-Hyper-V-Worker-Admin</Channel>
    <Computer>CCSTS1.cnet2k.cornerstonecredit.net</Computer>
    <Security UserID="S-1-5-83-1-2698121124-1264104059-3615998341-769460811" />
    </System>
    <UserData>
    <VmlEventLog xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
    <VmName>LegacyTS</VmName>
    <VmId>A0D20FA4-B27B-4B58-85C1-87D74B0ADD2D</VmId>
    <Rax>0x0</Rax>
    <Rbx>0x0</Rbx>
    <Rcx>0x0</Rcx>
    <Rdx>0x0</Rdx>
    <Rsp>0x804de00c</Rsp>
    <Rbp>0x0</Rbp>
    <Rsi>0x0</Rsi>
    <Rdi>0x0</Rdi>
    <R8>0x0</R8>
    <R9>0x0</R9>
    <R10>0x0</R10>
    <R11>0x0</R11>
    <R12>0x0</R12>
    <R13>0x0</R13>
    <R14>0x0</R14>
    <R15>0x0</R15>
    <Rip>0x80547c7c</Rip>
    <Rflags>0x10046</Rflags>
    <FpControlStatus>7F030000000000000000000000000000</FpControlStatus>
    <XmmControlStatus>0000000000000000801F0000FFFF0000</XmmControlStatus>
    <Cr0>0x8001003d</Cr0>
    <Cr2>0x804ddffc</Cr2>
    <Cr3>0xa02000</Cr3>
    <Cr4>0x20</Cr4>
    <Cr8>0xf</Cr8>
    <Xfem>0x1</Xfem>
    <Dr0>0x0</Dr0>
    <Dr1>0x0</Dr1>
    <Dr2>0x0</Dr2>
    <Dr3>0x0</Dr3>
    <Dr6>0xffff0ff0</Dr6>
    <Dr7>0x400</Dr7>
    <Es>0000000000000000FFFFFFFF2300F3C0</Es>
    <Cs>0000000000000000FFFFFFFF08009BC0</Cs>
    <Ss>0000000000000000FFFFFFFF100093C0</Ss>
    <Ds>0000000000000000FFFFFFFF2300F3C0</Ds>
    <Fs>00F0DFFF00000000FF1F0000300093C0</Fs>
    <Gs>0000000000000000FFFFFFFF00000000</Gs>
    <Ldtr>00000000000000000000000000000000</Ldtr>
    <Tr>90685580000000006800000050008B00</Tr>
    <Idtr>000000000000FF0700F4038000000000</Idtr>
    <Gdtr>000000000000FF0300F0038000000000</Gdtr>
    <Tsc>0x148e4294</Tsc>
    <ApicBase>0xfee00900</ApicBase>
    <SysenterCs>0x0</SysenterCs>
    <SysenterEip>0x0</SysenterEip>
    <SysenterEsp>0x0</SysenterEsp>
    </VmlEventLog>
    </UserData>
    </Event>
    My VM config
    <?xml version="1.0" encoding="UTF-16" standalone="yes"?>
    <configuration>
    <_24984ed0-bdad-4b90-82b2-5d59f874e91e_>
    <ChannelInstanceGuid type="string">{E4E9CD0E-4BBF-4C1B-B655-715781690655}</ChannelInstanceGuid>
    </_24984ed0-bdad-4b90-82b2-5d59f874e91e_>
    <_7d80d3db-61ee-4879-8879-5609f1100ad0_>
    <address type="string">5353,00000000,00</address>
    <version type="integer">1</version>
    </_7d80d3db-61ee-4879-8879-5609f1100ad0_>
    <_83f8638b-8dca-4152-9eda-2ca8b33039b4_>
    <controller0>
    <drive0>
    <pathname type="string">E:\Hyper-V\VHD\LegacyTS.vhdx</pathname>
    <pool_id type="string"></pool_id>
    <type type="string">VHD</type>
    </drive0>
    <drive1>
    <pathname type="string"></pathname>
    <type type="string">NONE</type>
    </drive1>
    </controller0>
    <controller1>
    <drive0>
    <pathname type="string">SCSI\CDROM&amp;VEN_IBM_SATA&amp;PROD_DEVICE_81Y3681\4&amp;1864BF9E&amp;0&amp;010000</pathname>
    <pool_id type="string"></pool_id>
    <type type="string">ISO</type>
    </drive0>
    <drive1>
    <pathname type="string"></pathname>
    <type type="string">NONE</type>
    </drive1>
    </controller1>
    <version type="integer">5</version>
    </_83f8638b-8dca-4152-9eda-2ca8b33039b4_>
    <_8e3a359f-559a-4b6a-98a9-1690a6100ed7_>
    <port0>
    <connection type="string"></connection>
    </port0>
    <port1>
    <connection type="string"></connection>
    </port1>
    <version type="integer">2</version>
    </_8e3a359f-559a-4b6a-98a9-1690a6100ed7_>
    <_8f0d2762-0b00-4e04-af4f-19010527cb93_>
    <controller0>
    <drive0>
    <pathname type="string"></pathname>
    <type type="string">VFD</type>
    </drive0>
    </controller0>
    <version type="integer">1</version>
    </_8f0d2762-0b00-4e04-af4f-19010527cb93_>
    <_a80e9c62-750a-4a6b-9548-d46677e806be_>
    <ChannelInstanceGuid type="string">{23c9c636-93de-4aec-9bef-220766177a24}</ChannelInstanceGuid>
    <Connection>
    <AltPortName type="string">Dynamic Ethernet Switch Port</AltPortName>
    <AltSwitchName type="string">Intel(R) I350 Gigabit Network Connection - Virtual Switch</AltSwitchName>
    <AuthorizationScope type="string"></AuthorizationScope>
    <ChimneyOffloadWeight type="integer">0</ChimneyOffloadWeight>
    <Feature_C885BFD1-ABB7-418F-8163-9F379C9F7166>
    <DisplayName type="string"></DisplayName>
    <Flags type="integer">0</Flags>
    <Setting_97274751-A1EC-4DC2-941D-B7F9A1AED814>
    <Data type="bytes">AAIAAGQAAAAAAAAAAQAAAAAAAAA=
    </Data>
    <Version type="integer">256</Version>
    </Setting_97274751-A1EC-4DC2-941D-B7F9A1AED814>
    <Settings>
    <Id type="string">97274751-A1EC-4DC2-941D-B7F9A1AED814</Id>
    </Settings>
    </Feature_C885BFD1-ABB7-418F-8163-9F379C9F7166>
    <Features>
    <Id type="string">C885BFD1-ABB7-418F-8163-9F379C9F7166</Id>
    </Features>
    <HostResources>
    <HostResource type="string">8758EB1A-9687-41FC-9319-AE867D46BA5C</HostResource>
    </HostResources>
    <PoolId type="string"></PoolId>
    <PreventIPSpoofing type="bool">False</PreventIPSpoofing>
    <TestReplicaPoolId type="string"></TestReplicaPoolId>
    <TestReplicaSwitchName type="string"></TestReplicaSwitchName>
    </Connection>
    <FriendlyName type="string">Network Adapter</FriendlyName>
    <IsConnected type="bool">True</IsConnected>
    <MacAddress type="string">00-15-5D-01-18-02</MacAddress>
    <MacAddressIsStatic type="bool">False</MacAddressIsStatic>
    <PortName type="string">E7F02418-A1EB-4FF9-84F8-BF461B2D00C6</PortName>
    <SwitchName type="string">8758EB1A-9687-41FC-9319-AE867D46BA5C</SwitchName>
    <VpciInstanceGuid type="string">{E9444985-111B-404A-82FE-48608A397676}</VpciInstanceGuid>
    </_a80e9c62-750a-4a6b-9548-d46677e806be_>
    <_ac6b8dc1-3257-4a70-b1b2-a9c9215659ad_>
    <base_board>
    <serial_number type="string">9595-3600-2199-6834-7686-3927-30</serial_number>
    </base_board>
    <bios_guid type="string">{B54BE7B5-05A4-4C4A-A2BD-D63272C7CCCD}</bios_guid>
    <bios_serial_number type="string">9595-3600-2199-6834-7686-3927-30</bios_serial_number>
    <boot>
    <device0 type="string">Optical</device0>
    <device1 type="string">HardDrive</device1>
    <device2 type="string">Network</device2>
    <device3 type="string">Floppy</device3>
    </boot>
    <chassis>
    <asset_tag type="string">8437-8592-0329-9603-9215-1886-12</asset_tag>
    <serial_number type="string">9595-3600-2199-6834-7686-3927-30</serial_number>
    </chassis>
    <num_lock type="bool">False</num_lock>
    <version type="integer">2</version>
    </_ac6b8dc1-3257-4a70-b1b2-a9c9215659ad_>
    <_db8b9818-b4bb-4725-b99d-b4612716b6b4_>
    <version type="integer">0</version>
    </_db8b9818-b4bb-4725-b99d-b4612716b6b4_>
    <global_settings>
    <devices>
    <allow_reduced_fc_redundancy type="bool">False</allow_reduced_fc_redundancy>
    <generation_id type="string">883d11122d9b7b2c521be0c045ef3760</generation_id>
    <storage_allow_full_scsi_command_set type="bool">False</storage_allow_full_scsi_command_set>
    </devices>
    <disk_merge_pending type="bool">False</disk_merge_pending>
    <metrics>
    <devicetype>
    <deviceinstance>
    <guid type="string">B637F346-6A0E-4DEC-AF52-BD70CB80A21D</guid>
    <metric>
    <enabled type="bool">False</enabled>
    <lastcomputedtime type="integer">0</lastcomputedtime>
    <peaktime type="integer">0</peaktime>
    <poolid type="string"></poolid>
    <resourcetypeid type="string">B637F347-6A0E-4DEC-AF52-BD70CB80A21D</resourcetypeid>
    <starttime type="integer">0</starttime>
    <typecode type="string">3F6F1051-C8FC-47EF-9821-C07240848748;0</typecode>
    <value type="integer">0</value>
    </metric>
    </deviceinstance>
    <guid type="string">B637F346-6A0E-4DEC-AF52-BD70CB80A21D</guid>
    </devicetype>
    <devicetype>
    <deviceinstance>
    <guid type="string">4764334D-E001-4176-82EE-5594EC9B530E</guid>
    <metric>
    <enabled type="bool">False</enabled>
    <lastcomputedtime type="integer">0</lastcomputedtime>
    <peaktime type="integer">0</peaktime>
    <poolid type="string"></poolid>
    <resourcetypeid type="string">4764334E-E001-4176-82EE-5594EC9B530E</resourcetypeid>
    <starttime type="integer">0</starttime>
    <typecode type="string">394DCE66-458F-4895-AE56-41D7C9602A49</typecode>
    <value type="integer">0</value>
    </metric>
    <metric>
    <enabled type="bool">False</enabled>
    <lastcomputedtime type="integer">0</lastcomputedtime>
    <peaktime type="integer">0</peaktime>
    <poolid type="string"></poolid>
    <resourcetypeid type="string">4764334E-E001-4176-82EE-5594EC9B530E</resourcetypeid>
    <starttime type="integer">0</starttime>
    <typecode type="string">FF85EA46-9933-4436-BE5D-C96827399966</typecode>
    <value type="integer">0</value>
    </metric>
    <metric>
    <enabled type="bool">False</enabled>
    <lastcomputedtime type="integer">0</lastcomputedtime>
    <peaktime type="integer">0</peaktime>
    <poolid type="string"></poolid>
    <resourcetypeid type="string">4764334E-E001-4176-82EE-5594EC9B530E</resourcetypeid>
    <starttime type="integer">0</starttime>
    <typecode type="string">04BDF59E-580D-4441-8828-FFFE44472D2D</typecode>
    <value type="integer">0</value>
    </metric>
    </deviceinstance>
    <guid type="string">4764334D-E001-4176-82EE-5594EC9B530E</guid>
    </devicetype>
    <devicetype>
    <deviceinstance>
    <guid type="string">83F8638B-8DCA-4152-9EDA-2CA8B33039B4</guid>
    <metric>
    <enabled type="bool">False</enabled>
    <lastcomputedtime type="integer">0</lastcomputedtime>
    <peaktime type="integer">0</peaktime>
    <poolid type="string"></poolid>
    <resourcetypeid type="string">70BB60D2-A9D3-46AA-B654-3DE53004B4F8</resourcetypeid>
    <starttime type="integer">0</starttime>
    <typecode type="string">AD29978B-AAB6-44AE-81CD-0609BF929F18;0\0\L</typecode>
    <value type="integer">0</value>
    </metric>
    </deviceinstance>
    <guid type="string">83F8638B-8DCA-4152-9EDA-2CA8B33039B4</guid>
    </devicetype>
    </metrics>
    <owner>
    <sid type="string">S-1-5-21-1940488291-1951097212-1584025624-1392</sid>
    </owner>
    <power>
    <host_shutdown>
    <action type="integer">1</action>
    </host_shutdown>
    <host_startup>
    <action type="integer">1</action>
    </host_startup>
    </power>
    <snapshots>
    <list>
    <size type="integer">0</size>
    </list>
    </snapshots>
    <unexpected_termination>
    <action type="integer">1</action>
    </unexpected_termination>
    <vhd_path_acled type="bool">True</vhd_path_acled>
    </global_settings>
    <manifest>
    <size type="integer">11</size>
    <vdev001>
    <device type="string">58f75a6d-d949-4320-99e1-a2a2576d581c</device>
    <flags type="integer">1</flags>
    <instance type="string">58F75A6D-D949-4320-99E1-A2A2576D581C</instance>
    <name type="string">Microsoft Synthetic Mouse</name>
    </vdev001>
    <vdev002>
    <device type="string">197f74e3-b84b-46de-8ae6-82f1cd181cdc</device>
    <flags type="integer">1</flags>
    <instance type="string">197F74E3-B84B-46DE-8AE6-82F1CD181CDC</instance>
    <name type="string">Microsoft Synthetic Keyboard</name>
    </vdev002>
    <vdev003>
    <device type="string">f3cf6965-e8d3-44a9-9b7d-a04245ea7525</device>
    <flags type="integer">1</flags>
    <instance type="string">F3CF6965-E8D3-44A9-9B7D-A04245EA7525</instance>
    <name type="string">Microsoft Synthetic Video</name>
    </vdev003>
    <vdev004>
    <device type="string">84eaae65-2f2e-45f5-9bb5-0e857dc8eb47</device>
    <flags type="integer">1</flags>
    <instance type="string">84EAAE65-2F2E-45F5-9BB5-0E857DC8EB47</instance>
    <name type="string">Microsoft Heartbeat Component</name>
    </vdev004>
    <vdev005>
    <device type="string">2a34b1c2-fd73-4043-8a5b-dd2159bc743f</device>
    <flags type="integer">1</flags>
    <instance type="string">2A34B1C2-FD73-4043-8A5B-DD2159BC743F</instance>
    <name type="string">Microsoft Key-Value Pair Exchange Component</name>
    </vdev005>
    <vdev006>
    <device type="string">9f8233ac-be49-4c79-8ee3-e7e1985b2077</device>
    <flags type="integer">1</flags>
    <instance type="string">9F8233AC-BE49-4C79-8EE3-E7E1985B2077</instance>
    <name type="string">Microsoft Shutdown Component</name>
    </vdev006>
    <vdev007>
    <device type="string">2497f4de-e9fa-4204-80e4-4b75c46419c0</device>
    <flags type="integer">1</flags>
    <instance type="string">2497F4DE-E9FA-4204-80E4-4B75C46419C0</instance>
    <name type="string">Microsoft Time Synchronization Component</name>
    </vdev007>
    <vdev008>
    <device type="string">5ced1297-4598-4915-a5fc-ad21bb4d02a4</device>
    <flags type="integer">1</flags>
    <instance type="string">5CED1297-4598-4915-A5FC-AD21BB4D02A4</instance>
    <name type="string">Microsoft VSS Component</name>
    </vdev008>
    <vdev009>
    <device type="string">6c5addb9-a11a-4e8e-84cb-e6208201db63</device>
    <flags type="integer">1</flags>
    <instance type="string">6C5ADDB9-A11A-4E8E-84CB-E6208201DB63</instance>
    <name type="string">Microsoft RDV Component</name>
    </vdev009>
    <vdev010>
    <device type="string">2fc216b0-d2e2-4967-9b6d-b8a5c9ca2778</device>
    <flags type="integer">1</flags>
    <instance type="string">A80E9C62-750A-4A6B-9548-D46677E806BE</instance>
    <name type="string">Synthetic Ethernet Port</name>
    </vdev010>
    <vdev011>
    <device type="string">d422512d-2bf2-4752-809d-7b82b5fcb1b4</device>
    <flags type="integer">1</flags>
    <instance type="string">24984ED0-BDAD-4B90-82B2-5D59F874E91E</instance>
    <name type="string">Synthetic SCSI Controller</name>
    </vdev011>
    <version type="integer">260</version>
    </manifest>
    <properties>
    <global_id type="string">B37E54CD-FFBB-44DA-8B7C-322B922EAD72</global_id>
    <highly_available type="bool">False</highly_available>
    <last_powered_off_time type="integer">130493284127496105</last_powered_off_time>
    <last_powered_on_time type="integer">130493284065876653</last_powered_on_time>
    <last_state_change_time type="integer">130493284127496105</last_state_change_time>
    <name type="string">LegacyTS</name>
    <notes type="string"></notes>
    <type_id type="string">Virtual Machines</type_id>
    <version type="integer">1024</version>
    </properties>
    <settings>
    <global>
    <logical_id type="string">B37E54CD-FFBB-44DA-8B7C-322B922EAD72</logical_id>
    </global>
    <memory>
    <bank>
    <dynamic_memory_enabled type="bool">True</dynamic_memory_enabled>
    <limit type="integer">1048576</limit>
    <priority type="integer">5000</priority>
    <reservation type="integer">512</reservation>
    <size type="integer">4096</size>
    <target_memory_buffer type="integer">20</target_memory_buffer>
    </bank>
    <vnuma>
    <max_size_per_node type="integer">14770</max_size_per_node>
    </vnuma>
    </memory>
    <processors>
    <count type="integer">1</count>
    <features>
    <limit type="bool">False</limit>
    </features>
    <limit type="integer">100000</limit>
    <limit_cpuid type="bool">False</limit_cpuid>
    <reservation type="integer">0</reservation>
    <vnuma>
    <count_per_node>
    <max type="integer">4</max>
    </count_per_node>
    <node_per_socket>
    <max type="integer">1</max>
    </node_per_socket>
    </vnuma>
    <weight type="integer">100</weight>
    </processors>
    <stopped_at_host_shutdown type="bool">False</stopped_at_host_shutdown>
    <vnuma>
    <enabled type="bool">False</enabled>
    </vnuma>
    </settings>
    </configuration>
    If its relevant, the host is not yet activated license wise. I downloaded the demo version so I could test my idea before making a purchase to go ahead with full implementation. 
    As it stands right now I'm not sure how to troubleshoot this. Many searches on google have not turned up any helpful info. Does anyone have any ideas?
    Thanks,
    D

    Hi ,
    First , please refer to the supported guest OS of windows 2012 hyper-v :
    http://technet.microsoft.com/library/hh831531.aspx
    2003/R2 should be with sp2 and max 2 virtual processors .
    "'LegacyTS' was reset because an unrecoverable error occurred on a virtual processor that caused a triple fault."
    If the issue is not due to the above items , you can try to check the "CPU compatibility " in that VM settings for troubleshooting:
     Hope it helps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error while installing Oracle Apps R12 , on windows server 2003 R2

    Hi Experts
    While installing Oracle Apps R12 , on windows server 2003 R2, I am getting the following error.
    System Utilities
    command: cmd.exe /c E:\oracle 12i dump\startCD\Disk1\rapidwiz\bin\adchkutl.cmd F:\cygwin\bin F:\VC\bin
    'E:\oracle' is not recognized as an internal or external command,
    operable program or batch file.
    RW-50011: Error: - System Utilities Availability test has returned an error: 1
    ======================================================================================================================================================================================================================================================================
    File Space Check :
    -- database node space checks --
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database ORACLE_HOME = F:\oracle\VIS\db\tech_st\11.1.0
    required = 5600.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database System File Directory = F:\oracle\VIS\db\apps_st\data
    required = 20200.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database Log File Directory = F:\oracle\VIS\db\apps_st\data
    required = 950.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database Transaction File Directory = F:\oracle\VIS\db\apps_st\data
    required = 103350.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database Archive File Directory = F:\oracle\VIS\db\apps_st\data
    required = 64500.0
    actual = 0.0
    -- apps node space checks --
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP = E:\apps\VIS\apps\apps_st\appl
    required = 5800.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 2 = E:\apps\VIS\apps\apps_st\appl
    required = 2800.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 3 = E:\apps\VIS\apps\apps_st\appl
    required = 8400.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 4 = E:\apps\VIS\apps\apps_st\appl
    required = 3100.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    COMMON_TOP = E:\apps\VIS\apps\apps_st\comn
    required = 3200.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Apps ORACLE_HOME = E:\apps\VIS\apps\tech_st\10.1.3
    required = 1400.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Tools ORACLE_HOME = E:\apps\VIS\apps\tech_st\10.1.2
    required = 1400.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Temp Directory = E:\apps\VIS\inst\apps\VIS_stccspr01\temp
    required = 1024.0
    actual = 0.0
    waiting for expert suggestion.
    Thanks
    Rahul Srivastava

    Hi Hussein
    after changing the directory name as Stage12, I am getting error
    File Space Check :
    -- database node space checks --
    Disk space on system acceptable:
    Database ORACLE_HOME = F:\oracle\VIS\db\tech_st\11.1.0
    required = 5600.0
    actual = 200473.43359375
    Disk space on system acceptable:
    Database System File Directory = F:\oracle\VIS\db\apps_st\data
    required = 20200.0
    actual = 194873.43359375
    Disk space on system acceptable:
    Database Log File Directory = F:\oracle\VIS\db\apps_st\data
    required = 950.0
    actual = 174673.43359375
    Disk space on system acceptable:
    Database Transaction File Directory = F:\oracle\VIS\db\apps_st\data
    required = 103350.0
    actual = 173723.43359375
    Disk space on system acceptable:
    Database Archive File Directory = F:\oracle\VIS\db\apps_st\data
    required = 64500.0
    actual = 70373.43359375
    -- apps node space checks --
    Disk space on system acceptable:
    APPL_TOP = F:\oracle\VIS\apps\apps_st\appl
    required = 5800.0
    actual = 5873.43359375
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 2 = F:\oracle\VIS\apps\apps_st\appl
    required = 2800.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 3 = F:\oracle\VIS\apps\apps_st\appl
    required = 8400.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 4 = F:\oracle\VIS\apps\apps_st\appl
    required = 3100.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    COMMON_TOP = F:\oracle\VIS\apps\apps_st\comn
    required = 3200.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    Apps ORACLE_HOME = F:\oracle\VIS\apps\tech_st\10.1.3
    required = 1400.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    Tools ORACLE_HOME = F:\oracle\VIS\apps\tech_st\10.1.2
    required = 1400.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    Temp Directory = F:\oracle\VIS\inst\apps\VIS_stccspr01\temp
    required = 1024.0
    actual = 73.43359375
    also for
    System Utilities
    command: cmd.exe /c E:\Stage12\startCD\Disk1\rapidwiz\bin\adchkutl.cmd F:\cygwin\bin F:\VC\bin
    E:\Stage12\startCD\Disk1\rapidwiz>echo off
    /cygdrive/c/WINDOWS/system32/cmd
    'which' command is available.
    /usr/bin/gnumake
    'gnumake' is available.
    'cl' is not available.
    ERRORCODE = 1 ERRORCODE_ENDThe system cannot find the path specified.
    which: no cl in (/usr/bin:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/system32)
    RW-50011: Error: - System Utilities Availability test has returned an error: 1
    Yes I do have sufficient space i.e . for E: 106 GB and F: 195 GB free space .
    Thanks
    Rahul Srivastava

  • Error in Installation of EPM 11.1.1.3 in windows server 2003-32 bit, AMD 64

    Hi All,,
    We are trying to install EPM 11.1.1.3 ( We are trying to install only Client Components ) in server machine( Processor AMD64, OS: Windows Server 2003 32Bit) we are installing the JAVA 1.6 Also.But we double Click the InstallerTool.cmd it will open the command prompt and throws an error below and disappearing.
    "R:\essbase\\jre\win32\1.6.0\"\..\..\..\installTOOL.jar
    >
    R:essbase>endlocal
    R:essbase>pause
    Press any key to continue...
    This is an error while double click the Installertool.cmd
    If it is Java Compatibility, how can we resolve it.
    We are trying to another XP machine with the same dump it is working
    But in Windows Server machine it is not working.
    For installation of client components only, is Java 1.6 installation is required??
    Could you pls help me What is the Problem
    It will graetful appreciate to resolve it
    Thanks in Advance.........

    Hi
    1. Did you delete tmp and cache after patching
    2. Did you clear the cached files in your browser post patching
    3. Generally the first time you access the system it takes time but the consquent attempts should not take much time.
    4. Did you increase the Java heap
         ex: HFMWeb
    HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions\HFMWeb0\HyS9FinancialManagementWeb_epmsystem1
                    JVMOption21 | - Xms2048m
                    JVMOption38 | - Xmx2048m
    Next,
    When you are accessing the HFM Application please monitor the task manager and let us know the CPU and Physical Memory utilisation.Monitor the HSVDatasource.exe process .
    How much RAM do you have on your server and how many applications/components are hosted on that server?
    Thanks
    Anjum

  • Out of memory using Windows Server 2003 and Oracle 9.2.0.3

    Hi,
    I just installed both Windows Server 2003 and Oracle 9.2.0.3. The server I am using has 4 gigabytes of memory installed, and windows shows that to be the actual physical memory on the server. The paging file is 8 gigabytes for a total of 12 gigabytes of virtual memory.
    Using the Oracle Database Configuration Assistant, I create a new database using default values. After verifying the installation worked OK (database started, queries ran), I attempted to change some of the memory parameters and was able to start the database using about 1.4 gigabytes of total SGA, with the O/S using about .3 gigabytes for a total of 1.7 gigabytes. I then attempted to change the buffer cache + 1 gigabyte for a total of 2 gigabytes. Now the database will not start and I get an out of memory error ora-27102 with an additional O/S memory error of "O/S Error: (OS 8) Not enough storage is available to process this command".
    So, I have two problems:
    1) With 4 gigabytes installed, and the O/S using only about 300 megabytes, why isn't Oracle able to take advantage of the memory on this machine past the 1.7 gigabytes (as reported by Windows task manager).
    2) How do I change the spfile memory parameters so the database will start using spfile? I can start the database pointing to a pfile with lesser memory parameters, but I don't know how to effect change on the spfile, since I cannot start with the spfile.
    Both these technologies (9.2.0.3 and Server 2003) are new to me, so any insight would be appreciated!
    HERE ARE THE SPFILE PARAMETERS THAT WORKED:
    SGA (M)
    Shared Pool=104
    Buffer Cache=960 ***
    Large Pool=0
    Java Pool=64
    Total SGA=1128
    SGA Max Size=1321
    Aggregate PGA Target=1500
    Current PGA Allocated=22868KB
    WINDOWS MEMORY INFO FROM TASK MANAGER SHOW:
    PF Usage=1.66GB
    Physical Memory (K)
    Total=4062704
    Available=3203460
    System Cache=2499096
    Commit Charge (K)
    Total=1748184
    Limit=12288628
    Peak=1925276
    *** When I change this to 2048 the database did not start.
    Thank you.

    CREATE SPFILE
    Purpose
    Use the CREATE SPFILE statement to create a server parameter file from a client-side initialization parameter file. Server parameter files are binary files that exist only on the server and are called from client locations to start up the database.
    Server parameter files let you make persistent changes to individual parameters. When you use a server parameter file, you can specify in an ALTER SYSTEM SET parameter statement that the new parameter value should be persistent. This means that the new value applies not only in the current instance, but also to any instances that are started up subsequently. Traditional client-side parameter files do not let you make persistent changes to parameter values. Because they are located on the server, these files allow for automatic database tuning by Oracle and for backup by Recovery Manager (RMAN).
    To use a server parameter file when starting up the database, you must create it from a traditional text initialization parameter file using the CREATE SPFILE statement.
    All instances in an Real Application Clusters environment must use the same server parameter file. However, when otherwise permitted, individual instances can have different settings of the same parameter within this one file. Instance-specific parameter definitions are specified as SID.parameter = value, where SID is the instance identifier.
    The method of starting up the database with a server parameter file depends on whether you create a default or nondefault server parameter file. Please refer to "Creating a Server Parameter File: Examples" for examples of how to use server parameter files.
    See Also:
    CREATE PFILE for information on creating a regular text parameter file from a binary server parameter file
    Oracle9i Database Administrator's Guide for information on pre-Oracle9i initialization parameter files and Oracle9i server parameter files
    Oracle9i Real Application Clusters Administration for information on using server parameter files in a Real Application Clusters environment
    Prerequisites
    You must have the SYSDBA or the SYSOPER system privilege to execute this statement. You can execute this statement before or after instance startup. However, if you have already started an instance using spfile_name, you cannot specify the same spfile_name in this statement.
    Syntax
    create_spfile::=
    Text description of create_spfile
    Semantics
    spfile_name
    This clause lets you specify a name for the server parameter file you are creating.
    If you do not specify spfile_name, Oracle uses the platform-specific default server parameter filename. If spfile_name already exists on the server, this statement will overwrite it. When using a default server parameter file, you start up the database without referring to the file by name.
    If you do specify spfile_name, you are creating a nondefault server parameter file. In this case, to start up the database, you must first create a single-line traditional parameter file that points to the server parameter file, and then name the single-line file in your STARTUP command.
    See Also:
    "Creating a Server Parameter File: Examples" for information on starting up the database with default and nondefault server parameter files
    Oracle9i Database Administrator's Guide for Windows (or other appropriate operating system specific documentation) for default parameter file names
    pfile_name
    Specify the traditional initialization parameter file from which you want to create a server parameter file.
    If you specify pfile_name, the parameter file must reside on the server. If it does not reside in the default directory for parameter files on your operating system, you must specify the full path.
    If you do not specify pfile_name, Oracle looks in the default directory for parameter files on your operating system for the default parameter filename, and uses that file. If that file does not exist in the expected directory, Oracle returns an error.
    Note:
    In a Real Application Clusters environment, you must first combine all instance parameter files into one file before specifying it in this statement to create a server parameter file. For information on accomplishing this step, see Oracle9i Real Application Clusters Setup and Configuration.
    Examples
    Creating a Server Parameter File: Examples
    The following example creates a default server parameter file from a client initialization parameter file named t_init1.ora:
    CREATE SPFILE
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    Note:
    Typically you will need to specify the full path and filename for parameter files on your operating system. Please refer to your Oracle operating system documentation for path information.
    When you create a default server parameter file, you subsequently start up the database using that server parameter file by using the SQL*Plus command STARTUP without the PFILE parameter, as follows:
    STARTUP
    The following example creates a nondefault server parameter file s_params.ora from a client initialization file named t_init1.ora:
    CREATE SPFILE = 's_params.ora'
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    When you create a nondefault server parameter file, you subsequently start up the database by first creating a traditional parameter file containing the following single line:
    spfile = 's_params.ora'
    The name of this parameter file must comply with the naming conventions of your operating system. You then use the single-line parameter file in the STARTUP command. The following example shows how to start up the database, assuming that the single-line parameter file is named new_param.ora:
    STARTUP PFILE=new_param.ora
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_616a.htm#SQLRF01315
    Joel P�rez

  • /3 Gb switch, Windows Server 2003 and no imagecfg.exe!

    The Imagecfg tool is not provided in the support toolkit for Windows Server 2003. How do I then implement the /3 Gb switch for oracle.exe and tnslsnr.exe as has been recommended in Metalink notes 116076.1 and 46001.1?
    Also does this not appear a bit confusing:
    Note 1036312.6 states:
    On Windows NT Server, Enterprise Edition 4.0, Microsoft provides the 4GT (4GB
    RAM Tuning) support so an application can utilize up to 3GB virtual memory
    instead of the 2GB limit as it used to be.
    The Windows NT service pack 3 provides the same feature but is not officially
    claimed in the SP3 readme.txt.
    The Oracle 8.0.3 release and higher have already been enabled to take
    advantage of the new feature.
    However a more recently updated note (46001.1) states:
    d) Configuring the Oracle process to make allocations greater than 2GB
    The Oracle database supports the 4GT tuning feature of Windows NT Server,
    Enterprise Edition from release 7.3 onwards, allowing it to access up to 3GB
    of virtual address space per instance. It may be the case that certain
    releases / patch sets do not have the 4GT flag set even though the release
    does support the feature. To check the executable has been correctly enabled
    run :
    imagecfg oracle.exe
    oracle.exe contains the following configuration information:
    Subsystem Version of 4.0
    Image can handle large (>2GB) addresses
    Stack Reserve Size: 0x100000
    Stack Commit Size: 0x1000
    For executables that do not have the flag set, run :
    imagecfg -l oracle.exe
    The above settings will only take affect if the boot.ini has been set up as
    described in Note 46053.1.
    So, do we really require to run the imagecfg utility (which is no longer provided in 2003 server support tool package) for versions higher than 8.1.7? Which tool should I then use instead of imagecfg for Windows Server 2003?

    I think one of the reasons behind those Notes is that in older releases support for the feature existed and despite 7.3.4 or 8.0.3 and onwards had the capabilities, some patch sets or patches "forgot" this. The first Note you references says
    "There may be a case where you are running 8.0.4.3.7 on NT and the 3gig address issue required the use of imagecfg to access the larger address space. One major reason might be the fact that patch sets may have brought in an executeable without the flag being set."
    Sometimes it can be really hard to get notes on metalink to add upp, maybe mostly because there is so much info to maintain and cope with...
    I dont think you should worry much about it. In any case, the developer/vendor who controls the code need to make sure the program is in reality large address aware and set flags accordingly.
    If you want to check, to report something back to Oracle Support, there is dumpbin.exe to verify image header available in Visual Studio. Dont know of a public alternative.
    http://msdn2.microsoft.com/en-us/library/c1h23y6c.aspx

  • How to install windows server 2003 on Sunfire x4150?

    hi, i'm very new to Sun server.Sorry if i dont know anything about it. But now i have to install Windows Server 2003 on this Sunfire x4150 server. How can i do that? I've try to install but it give me error about the driver.
    Some question:
    1. Can i install both Sun Os (Solaris?) and Windows Server together? If cant, can i format the Solaris OS and install a fresh Windows?
    2. OR actually i should install inside a Virtual Machine?
    Here are some links that i found. Am i following the right direction? The article suggest me to download FloppyPack from Sun's website. So, should i just downlaod the FloppyPack (360+KB) ? I dont need to download other driver package?
    http://www.seedsofgenius.com/pdf/wp1.pdf
    http://dlc.sun.com/pdf/820-5837-10/820-5837-10.pdf
    Sorry, i have totally no idea at all.
    Thank you very much if you can help me . OTL

    Might be a bit late for you, but if this helps anyone else, good.
    I had the same issue with an X4600 lately. You need to download the Sun Installation Assistant cd and boot from it to install anything other than Solaris. This cd is similar to the ones that Compaq andDell sendout with their servers. It will do a semi automatic install after you give it the information about the os, set up disks, etc.
    Easy to do, search the sun support site for the SIA image particular to your hardware.

Maybe you are looking for

  • Using Multiple MIDI controllers at the same time

    It seems that there is no way to record from 2 different midi controllers at the same time without the data getting summed together. I'm trying to record a midi keyboard playing a piano sound and my roland v-drums at the same time. The result i get w

  • How to move your library files from one internal hard drive to another

    I have two internal hard drives on my computer, one 500GB SSD for games and other programs that require fast access, and one 2TB for more bulky items, like videos, music and back ups. The problem is that my SSD is pretty much full because my iTunes l

  • How to enable vat register tab in define reporting entities.

    Hello All, How to enable vat register tab in define reporting entities. Navigation --> Italian AP Localizations --> EMEA vAT SETUP--> Define Reporting Entities . Under EMEA VAT Reporting entities setup screen there are 3 tabs (configuration, Allocati

  • SUS domain in catalogs is wrong

    We have recently purchased a Mac server for using the SUS to update our Macs, but we have run into a problem. Originally the problem was that when any computer tried to update with the server, it would quickly run through the catalog and say no updat

  • I have some Basis questions

    Where should I ask them ? Thank you.