Right-To-Left on Windows 2000

Hellow
I have a problem cnverting my report direction from LTR to RTL Direction.
What do u suggest??
I changed NLS_LANG to many settings. But Won't Work !!
If u have a suggestion .. please help.
Regards

make sure that on your machine the regional setting is not english but arabic.

Similar Messages

  • Windows 2000 users can't get newer albums only available in v7.4.1?

    OK, so I just downloaded iTunes, for the sole reason to purchase the "iTunes Exclusive" _Walk Hard: The Dewey Cox Story (Original Motion Picture Soundtrack) [DELUXE EDITION]_ album. Right?
    I have Windows 2000, so I went through the steps to get the old(er) version. I finally get it downloaded and installed... open up the store, find the album... and it tells me:
    "*This item requires a later version of iTunes to purchase.* To purchase this item, please upgrade to iTunes 7.4.1 or later. iTunes is a free download."
    OK. I go to d/l the update, and it tells me that XP or Vista is a system requirement for download.
    So... you're telling me that if I want to legally purchase this album, I need a new [expletive] PC? +(or Mac, iPhone, iPod Touch, blah blah blah...)+
    *WHAT THE [EXPLETIVE]?* I've had iTunes under 10 min. and I hate it already.
    Please tell me I'm very very wrong & am missing something incredibly stupid, and I'm able to upgrade to v7.4.1 with Windows 2000 & purchase this album.

    If you want to purchase this album from iTunes then you need the newer version, not necessarily better just newer. To run the newer version of iTUnes then you have to have newer, and better, operating system (not counting Vista here).
    No getting around this requirement is you want it from iTunes. New computer not absolutely required. Yours might be able to handle Windows XP depending on what you have.

  • Install Media for Windows 2000 using MSI

    Does Oracle have install media for client installs which uses MSI (Windows 2000 Installation Technology)?
    I want to be able to push out installs/upgrades of Oracle client software to Windows 2000 desktops (where some people may or may not have administrative rights on their desktops).

    Windows 2000 is not supported, officially reaching the end of it's life in June 2010.
    We would recommend that you upgrade to an actively supported version of the Windows operating system.
    The minimum system requirements for Flash Player can be found here: http://www.adobe.com/in/products/flashplayer/tech-specs.html
    As a short-term fix, you may be able to run a version of Flash Player 10.3 from the Archives page, which is currently supported with security updates; however, your operating system remains vulnerable as it is no longer maintained from a security perspective.
    http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html

  • On OSX Lion i used to drag the window to the top of the screen and get maximise, and drag the window right or left to show the both beside each other just like windows 7, How to do it on Mountain lion ?

    On OSX Lion i used to drag the window to the top of the screen and get it maximise, and drag the window right or left to show the both beside each other just like windows 7, How to do it on Mountain lion ?

    That has never been a feature of Mac OS X, but I believe there was some kind of third-party software that could add that capability.  i don't recall what its name is, but you must have had that installed, and it either isn't installed anymore (perhaps removed as incompatible?) or is not working properly in Mountain Lion.

  • How to remove black "blocked plug-in" window that opens with iPhoto. It covers iPhoto and everything under it. I've right and left clicked the black window, restarting the computer, shutting down the computer, but the window always appears when I ope

    How to remove black "blocked plug-in" window that opens with iPhoto. It covers iPhoto and everything under it. I've right and left clicked the black window, restarting the computer, shutting down the computer, but the window always appears when I open iPhoto and it will not move or go away. It stays on my screen (covering my desktop icons) even after I quit iPhoto. How can I get it off my screen?

    Which version if iPhoto and MacOS X do you have?
    Do you have any iPhoto plug-ins  installed?
    Open the folder /Library/Application Support/iPhoto/Plugins/
    To navigate to that folder, open the folder "Library" directly on your Macintosh HD, then inside the Library folder go to Application Support, then iPhoto.  Is there anything installed?

  • CreateChildSymbol on the top left bottom right edges of the window/stage?

    I am creating a particle system and I am trying to generate the particles / CreateChildSymbol on the top left bottom right edges of the window/stage?
    Currently I am generating random X & Y points but thats not really doing what I need.
    // find the stage width & height
    sym.maxWidth = $('#Stage').width();
    sym.maxHeight = $('#Stage').height();
    // randomize the numbers 1-12
    var randomSymbol = Math.floor((Math.random()*12)+1);
    // Pull symbol from lib and add to stage
    sym.mainParticle = sym.createChildSymbol("symbol_ani_" + randomSymbol, "Stage");
    // create jQuery object / Edge Ani element var
    sym.mainParticleElement = sym.mainParticle.getSymbolElement();
    // randomize the stage X & Y coords
    var randomX = Math.floor(Math.random() * sym.maxWidth);
    var randomY = Math.floor(Math.random() * sym.maxHeight);
    // position  based on random stage X + Y position
    sym.mainParticleElement.css({'position':'absolute','top':randomY+'px','left':randomX+'px'} );
    But I am at a loss of how to randomize the top / right / bottom / left X & Y edges of the stage

    Got it working!
    Well to be honest another friend helped me work out the logic for randomizing the sides (top, left, bottom, right) to get it working.
    But I wanted to share since I had a hard time finding anything releated to this topic. Big Ups to Resdesign + Tim Jaramillo for helping me with some logic along the way as well!
    // these variables are global within compReady would need to change to sym. instead of var if needed outside of this
    var moveToX = $(window).width()/2,
         moveToY = $(window).height()/2;
    function spawnParticle() {
         // these variables are only availabe inside this function
         var side = Math.floor(Math.random() * 4),
             offScreen = 100,    // how many pixels off the side of the screen to start
             yRand = Math.floor(Math.random() * $(window).height()),
             xRand = Math.floor(Math.random() * $(window).width()),
             xPos = 0,
             yPos = 0;
         switch (side) {
             case 0:
                 xPos = xRand;
                 yPos = -offScreen;
                 console.log('spawn from top');
             break;
             case 1:
                 console.log('spawn from right');
                 xPos = $(window).width() + offScreen;
                 yPos = yRand;
             break;
             case 2:
                 console.log('spawn from bottom');
                 xPos = xRand;
                 yPos = $(window).height() + offScreen;
             break;
             case 3:
                 xPos = -offScreen;
                 yPos = yRand;
                 console.log('spawn from left');
             break;
         // add to the stage
         sym.mainParticle = sym.createChildSymbol("star", "Stage");
         sym.mainParticleElement = sym.mainParticle.getSymbolElement();
         sym.mainParticleElement.css({'position':'absolute','top':yPos+'px','left':xPos+'px'});
         // simple animation to reveal the particle
         sym.mainParticleElement.animate({ left: moveToX, top: moveToY }, 1000, function() {
             // for this test, I'm removing the particle after it has finished animating
             $(this).fadeOut(function() {
                 $(this).remove();
    // keep spanwing new particles
    setInterval(spawnParticle, 500);

  • Re: IMPORTANT - How to install Windows 2000 on a Satellite L300-16M (PSLB0E) ?

    Hello,
    I'm an independent developper and absolutely need to install several operating systems on my *Satellite L300-16M (PSLB0E)* : it's very important for me because I've to check working of piece of software under every environment for real (not using solutions like VMware, for example).
    Well, so, at this time, I've done an Acronis TrueImage backup of original full HDD, then deleted original WinRE and Data partitions, reduced and moved at beginning of disk the Vista partition... and installed System Commander 8 to prepare my future multi-boot. At this time, all sounds right : Vista works perfectly !
    Also, note I've configured SATA in Setup BIOS to be in "Compatibility" mode ; just because I don't need AHCI in my type of use !
    Second stage : now, *I have to install Windows 2000 Pro (SP4) FR*. Of course, I'm aware that the blocking point is the SATA/AHCI driver, wich is absent in the Win 2K CD... So, I've just made a new CD integrating these drivers using nLite ; at this time, I've tried using driver from Toshiba's XP Drivers page and Intel site about Intel 82801 HEM/HBM SATA AHCI Controlleur (ICH8M).
    But it doesn't work completely : the Win 2K install starts... All drivers are well loaded (including the AHCI ones) and just after this loading step, I get a black screen with just a blink cursor at top left of screen... indefinitively :-(
    I've also tried to switch SATA to "AHCI" mode in BIOS and it's the same.
    So, what to do next ?
    Do I've used the wrong AHCI drivers ? Do I need to incorporate the maximum of Toshiba Drivers (about chipset, display, sound) in the Windows 2000 install CD using nLite ? I mean until the CD capacity is not reached.
    Is there a way or tutorial to install Windows 2000 somewhere ? For XP, I think it will more easy because SP3 seems to support AHCI, but, just now, my problem is to install Windows 2000 : even if Microsoft wants to leave-it, there are a lot of professionals who still use-it... And my job, as developer, is to do my software works on this OS too ! *I really need to find a way to install it on this computer !!!*
    Awaiting your lighted replies and all tips or idea which could help me to achieve the task.
    In one word : HELP ! oops !
    Message was edited by: eanon

    Thanks xaver, but I've already tried stormng-20070827133046.zip and it remains the same :(
    About all driver ? Oh, in fact, I'll try to see if the XP ones work and if not I'll have a not-fully working Win 2K, but it will be enough for me to test my programs... I hope, at least, I'll be able to do display driver work !
    Well, seeing I don't succeed using Intel/Toshiba drivers and nLite, I'm trying at this time to go through another way, installing Win2K in a VMware, then forcing install of the Toshiba AHCI driver, then doing a TrueImage of this and restauring in the Toshiba ! I'll see...
    However, if someone has an idea, don't hesitate.
    EDIT : I'm now at the step to try to force the Store Manager driver from Toshiba (the one given for this model under XP), launching iata_cd.exe and after some second I see a message saying that this OS (Windows 2000) is not supported by this driver... So, from now, I clearly know why this driver failed when I gone through the nLite-customized Win2K CD install directly on the Satellite :-(
    So, this change the game : does it exist a Windows 2000 compatible driver for the Satellite L300-16M's AHCI Controller ??? This is the question !
    If you have the answer, very thanks to tell me, of course...
    Message was edited by: eanon

  • Error in Oracle 10g Installation windows 2000 advance server

    Hi,
    I am facing error message below when try 2 install oracle 10 in my work station . Already 8i and 9i with forms and reports was there in my machine. The follwing error display in log file.
    Actual Result: 4
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking physical memory requirements ...
    Expected result: 256MB
    Actual Result: 503MB
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses; However, before you can do this, you must configure the Microsoft LoopBack Adapter to be the primary network adapter on the system. See the Installation Guide for more details on installing the software on systems configured with DHCP.
    After given an ip address and proceeded. This error message is displayed in trace file:
    Shutting down instance: further logons disabled
    Mon May 07 11:32:09 2007
    Stopping background process CJQ0
    Mon May 07 11:32:09 2007
    Stopping background process MMNL
    Mon May 07 11:32:10 2007
    Stopping background process MMON
    Mon May 07 11:32:11 2007
    Shutting down instance (immediate)
    License high water mark = 1
    Mon May 07 11:32:11 2007
    Stopping Job queue slave processes
    Mon May 07 11:32:11 2007
    Job queue slave processes stopped
    Waiting for dispatcher 'D000' to shutdown
    All dispatchers and shared servers shutdown
    Mon May 07 11:32:16 2007
    alter database close normal
    ORA-1507 signalled during: alter database close normal...
    The error message in udump trace file is as follows:
    Dump file e:\or10g\product\10.2.0\admin\or10g\udump\or10g_ora_2340.trc
    Mon May 07 11:26:03 2007
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Windows 2000 Version V5.0 Service Pack 4
    CPU : 2 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:4M/503M, Ph+PgF:9M/1327M, VA:1740M/2047M
    Instance name: or10g
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 0
    Windows thread id: 2340, image: ORACLE.EXE (SHAD)
    opiino: Attach failed! error=-1 ifvp=00000000
    There is no pfile or anything in admin directory. Kindly help me in installing 10G for testing please
    efshafi

    Solution : Install and Configure Microsoft LoopBack Adapter:
    Installation of Microsoft LoopBack Adapter:
    1. Click Start, and then click Control Panel.
    2. Click on Add Hardware and then Click Next.
    3. Click Install the hardware that I manually select from a list, and then click Next.
    4. Click Network adapters, and then click Next.
    5. In the Manufacturer box, click Microsoft.
    6. In the Network Adapter box, click Microsoft Loopback Adapter, and then click Next.
    7. Click Finish.
    Configuration of Microsoft LoopBack Adapter:
    1. Click Start, and then click Control Panel.
    2. Click on Network and Sharing Center.
    3. On the left side of the Window, Cick Manage Network Connections.
    4. You will find a name like "Local Area Connection 4 Unidentified Network Microsoft Loopback Adapter".
    5. Right Click on it and select Properties.
    6. Then Click on Internet Protocol Version 4 (TCP/IPv4) and then again click Properties.
    7. Click on Use the following IP address and enter 192.168.1.10 for the IP Address and 255.255.255.0 for the subnet mask.
    8. Click OK.
    After this you can continue with the installation of the Oracle 10g again.

  • Steps for installing oracle 9i AS in windows 2000

    Hi,
    I have windows 2000 server and i have already installed oracle 9i database in c:\oracle9ids folder.
    Now i want to install oracel 9i Application server and oracle 9i Infrastructure.
    I am bit confused with the procedure of installation.
    Can anyone help me with the steps and sequence whether i have to install the oracle 9i application server first and if so,what should be the oracle home for this.For this should i select c:\oracle9ids (where i have installed oracle 9i database) as the oracle home or should i install this in a separate oracle home.
    Similarly when i should install oracle 9i infrasturcture(is it before the oracle 9i application server installation or after this) and also what should be the oracle home for that(is it the oracle home c:\oracle9ids,where the oracle database is installed or in a separate oracle home).
    Also,can anyone send me the links for these 2 manuals.
    Oracle9i Application Server Concepts Guide
    Oracle9i Application Server Administrator's Guide
    Any help is appreciated.
    Thanks

    Sri --
    All of the doc is available from OTN - follow the links on the left nav bar -&gt; Documentation -&gt; Oracle9iAS and then choose the Doc library for the specific release you are interested in. The site seems to be down right now but if you follow the links above you will find both of these on the 'Getting Started' tab.
    Oracle9i Application Server Concepts Guide
    Oracle9i Application Server Administrator's Guide
    The installation manual and release notes are in the platform specific doc libraries - also available from the Documentation link on the left nav. These should provide the information you need to understand the steps to follow to install - if you find these steps confusing please let me know your specific comments so we can look to make improvements in the next release of the product.
    I am assuming you are installing Oracle9iAS 9.0.2.x.
    Let me clarify how the Oracle9iAS 902 install works.
    1. Firstly, if you want to use the Oracle9iAS infrastructure - ie for management purposes/single signon/portal or other components that require metadata then you need to install the Infrastructure first.
    This must be installed into it's own brand new oracle_home. This will, by default, install an Oracle9i database tha[i]Long postings are being truncated to ~1 kB at this time.

  • 11.5.7 on windows 2000 - unzip issue

    Oracle EBS R11.5.7/8.1.7.4.1 running on windows 2000
    executed the envshell.cmd and while extracting the patch form the new windows encountering the below issue.
    D:\Patch>unzip p4445697_11i_WINNT.zip
    'unzip' is not recognized as an internal or external command,operable program or batch file.
    We can extract using the GUI, select the patch and right click Winzip and extract
    Why we are not able to extract from command prompt?
    Any help would be greately appreciated.

    Hello,
    Make sure to add the directory that has the unzip.exe to the system path:
    From Desktop right-click on My Computer and on Properties
    Select Advanced System Settings on the left
    Click on the Environment Variables button
    Regards, Carlo den Otter.

  • Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems n

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

  • ORA-12560 on Windows 2000 sp4, Pentium 4 CPU running vmware and Pent

    Hello all,
    I am getting ORA-12560 error running svrmgrl,sqlplus or dbca after installing 8.1.7 release 3 and patched to 8.1.7.4. My oracle_sid is set, oracle_home is pointing to the right file system. listener and database services are up and running and tnsping comes back ok. I have exhausted all metalink doc referring to ora-12560 and windows 2000. Has anyone experienced this problem before? Any help is appreciated.

    C:\Documents and Settings\oracle>set ORACLE_SID=test
    C:\Documents and Settings\oracle>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 8.1.7.4.0 - Production on 29-AUG-2006 13:17:
    13
    (c) Copyright 1998 Oracle Corporation. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ATLBCO3DV)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 8.1.7.4.0 - Produc
    tion
    Start Date 29-AUG-2006 11:03:28
    Uptime 0 days 2 hr. 13 min. 45 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File E:\oracle\apps\oracle\product\817\network\admin\listen
    er.ora
    Listener Log File E:\oracle\apps\oracle\product\817\network\log\listener
    .log
    Services Summary...
    PLSExtProc has 1 service handler(s)
    orcl has 1 service handler(s)
    test has 1 service handler(s)
    The command completed successfully
    TNSNAMES entry:
    TEST.CORP.CEFS.INT =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = XXX.XXX.XX.XX)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = test)
    (SRVR = DEDICATED)
    )

  • Setting the DNS Suffix in Windows-2000:

    This is a solution for the frequent problem that arises during installation of iPlanet Application Server on Windows-2000 platform.
    <b>Problem:</b> After installation completes, the installation directory remains empty, there is no entry of iAS in "Windows start menu". It doesn't install anything.
    <b>Remedy:</b> Set the DNS Suffix.
    <b>Procedure:</b>
    Right click on <b>My computer</b> (icon on desktop or in windows-explorer), then click on properties, go to <b>Network identification</b> Tab, Click on properties, then click the more button, set the <b>Primary DNS suffix</b> (like india.sun.com), and also check the <b>Change Primary DNS suffix when domain membership change</b> check box, click all Ok buttons.
    <b>Note:</b>
    1. Make sure that it is added to the windows registry:
    Just run regedit and click on the <b>My Computer\HKEY_LOCAL_MACHINE\SYSTEM \ControlSet001\Services \Tcpip\Parameters</b> key, you will see the <b>Domain</b> key value set to your domainname, otherwise enter the domain name into this key value, and than <b>reboot the m/c</b>, and than reinstall the iAS. It should work.
    2. Make sure you are using static IP address.

    Thanks Sanjeev Agarwal

  • Oracle 8i Installation problem on Windows 2000

    I had purchased a Oracle8i (MS/Windows NT CD (E-Commerce), part Number A94674-01 in the month of Jun 2000.
    When I tried to install Oracle 8i personal edition of Windows 2000 ver.
    The installation got completed smoothly. But after that I was not able to start my database and even Windows 2000 crashed after that. After every crash I reinstalled windows 2000 and oracle 8i but the result was same. My whole purpose of purchasing Oracle 8i on windows 2000 is getting defeated.
    I would request you send me solution what to do ? Or replace my Oracle S/W. Its useless for me right now.
    My M/C configuration is
    Dell P-III (256 MB, 300 Mhz) with sound card.
    20 GB Hard Disk of 7200 rpm.
    The primary O/S is Windows 98.
    The Hard disk is partitioned into no. Of logical drives.
    They are like 2GB of each (C, D, E, F) and G 10 GB
    C part ion has got Windows. And G has got windows 2000. There is enough space in all part ions.
    I would appreciate if you can solve my problem as soon as possible.
    Sincerely,
    Shekhar
    null

    IF its a new installation remove the ORACLE key from the REGISTRY.

  • How do I get firefox to display images clearly? I've got Windows 2000 Pro and Firefox 3.6.6. Internet Explorer shows images clearly, so I'm sure I have the correct graphics driver. Do I need a plugin or add-on of some sort? When I go to "updates", it

    When I use Firefox the images and logos don't show up clearly/correctly. I'm using Windows 2000 Pro. and just installed Firefox 3.6.6. I'm sure I have the right graphics driver as I'm able to see the images and logos clearly in Internet Explorer. I only have the "default plugin 1.0.0.15" installed. I'm thinking that I'm missing a plugin or add-on of some sort, but I'm not sure which one(s). When I go to "updates" it says there were no updates available. When I go to "Add-ons" it gives a list of Add-ons but I'm not sure which would help my issue. Any help would be appreciated.:)
    == This happened ==
    Every time Firefox opened
    == I decided to Download and Use Firefox on this computer. I was using IE before, and it works fine. ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

    Firefox works fine on Windows 2000 SP4 for me.
    Any chance you have a dial-up connection that uses a web accelerator to speed the loading of content?

Maybe you are looking for

  • Adapter Module Receiver File Adapter

    Hi All, I am getting file name in the Mapping in my target structure in a field FILENAME and i want to use this field to create a file at the target with the name as the value in FILENAME. I have to develop this by using Adapter Module. Note : This c

  • Massupload of Employee image

    Hi Guys,              I am able to upload employee images for single employee using 'OOAH'  and  'OOAD'  . My requirement is mass upload of images. I am unable to record shdb as these transaction contain browse option , i tried using "ARCHIV_CREATE_D

  • MuVo2 FM Freezes, hangs, completely stops work

    I have had the MuVo2 FM 5GB?for about 5 months and I am sorry I bought it. This unit is so temperamental I have to constantly work with it to even get it to function!? I have updated with the latest firmware but constantly the battery drains, the men

  • Storage bin 441 does not exist

    hi, while transfering blocked stock from one sloc to another sloc in a warehouse, i m getting the error message as storage bin 441 does not exist. my warehouse no is 441 what could be the reason for this . i have created bins also.

  • Final Cut project freezes when opening

    I'm trying to open a Final Cut project (project file size is 22mb) on my MacPro, and when the status bar reaches 40% the program freezes. I can successfully open the same project on my MacBook Pro. The project lives on an external hard drive (2 TB).