How to make link in windows?

Hi all,
I have an ORACLE_HOME backup c:\oracle\ora11g with complete database setup. I want move it to a bigger disk in D:
How can I relink D:\oracle\orac11g to point to c:\oracle\ora11g?
In linux or unix, I can do it as #> ln -s d:\oracle\ora11g c:\oracle\ora11g
Thanks
Edited by: KinsaKaUy? on Jul 4, 2011 5:58 AM

No guarantee it will work with Oracle, but check out:
c:\>mklink
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
        /D      Creates a directory symbolic link.  Default is a file
                symbolic link.
        /H      Creates a hard link instead of a symbolic link.
        /J      Creates a Directory Junction.
        Link    specifies the new symbolic link name.
        Target  specifies the path (relative or absolute) that the new link
                refers to.

Similar Messages

  • How to make IIS on Windows 7 visible from outside my home LAN

    Guidance Needed: How to make IIS on Windows 7 visible from outside my home LAN.
    I am building a learning/demo ASP.NET website on this Win7 PC, using VS2008. 
    I would like to share the website with a client/friend, so I need my local IIS to be visible from outside the home LAN.
    This PC is behind a Netgear WGR614 router, which has a static IP address assigned by my ISP. 
    I have set up port forwarding on the router; port 80 is HTTP.
    I can see the website as http://localhost/ and also as http://192.168.0.2 from other PCs inside the LAN.
    Ping works from outside, but not http.   What am I missing?

    Hi,
    Since this question is related to IIS and we have specific support for IIS related issues or questions, it is also recommended that you go to IIS Forum for help.
    Hope this helps. Thanks.
    Nicholas Li - MSFT

  • How to make links in dynamic text?

    Hi All,
    I need to know how to make links in dynamic text. I have
    created a
    table to hold the dynamic copy, and the copy is added through
    a CMS page
    that I created. This Admin page is accessed through a
    browser, and I
    don't know how to attach a link to selected text within a
    browser. Can
    anyone point the way? It's probably so easy I'll feel dumb.
    Thanks,
    Brett

    "Brett" <[email protected]> wrote in message
    news:fpf7j6$23m$[email protected]..
    > Thanks Hunter,
    >
    > Yes, I suppose a legend on the admin page would provide
    a solution. And
    > ultimately, if the client doesn't feel confident doing
    writing the HTML
    > they would have to pay me to do it for them. OK, that
    works for me.
    The only other thing might be to use something like FCK (or
    one of the many
    others... ContentSeed, I think is one Murray mentions often)
    for the CMS,
    that would give an easier option for the end user. WebAssist
    has an
    FCK-based plug-in called iRite that can give a more
    wordprocessing-like feel
    to the field (i.e., they could just highlight the text and
    then click a
    button to add the link).

  • How to make links open in new window

    Is it Javascript? How do you make links open in a new
    window.. what's the code and where do you put it, how do you end
    it?

    Target box (below link box0) to "_blank"
    "BenMan 88" <[email protected]> wrote in
    message
    news:e7v4it$jfj$[email protected]..
    > Sorry, this is totally unnecessary and I hope it doesn't
    irritate anyone
    > but thank-you this posting helped me very much.
    >
    >

  • How to make use of Windows authentication from my Java application

    I have a Java application, Instead I design one more login page for my application, I want to make use of Windows Authentication.
    How should I use that windows authentication in my java application
    can any help me in suggesting a solution

    How will they be able to access your application if they aren't users of the system?

  • How do make link between query and UDF

    How do you link a query to your UDF after you created the query and the UDF?
    Also do you have to set the UDF as type "general", and "link"?
    Please take me thru step?

    oh good - a discussion about whether to use "link" or "image" when having an image connected to a product!!!
    Billy and Suda - We had fun with this one some time ago in a project collecting additional data and images for the customer's products on the market.  As we were ramping up the project, we tried both ways of connecting an image to a product and there was a few drawbacks we found with using the UDF type of "General" and "Image":
    1.  The image was placed directly on the UDF portion on the Item Master - they were working in large TIFF (?) formats and the picture just looked horrible.  The approving manager could not tell if the image should be approved for press or not.  When he double-clicked on the image in the UDF portion it brought up another SAP window that wasn't quite crystal clear.
    2.  The image took up so much room on the UDF portion of the Item Master that the data entry personnel had to constantly scroll down to enter the other data points (color, size, branded promo, mixture, etc - there were about 12 fields).  Talk about being ticked!
    3.  While using the "General" and "Link" it addressed those concerns BUT there was one extra enormous advantage with this General/Link method.  When the image was brought up, it opened up the image automatically in a standard picture editor/manager program.  If they liked what they saw, they continued foward with the approval of the image for press runs.  If they did not like the image, they were able to manipulate the image at the moment and then follow through with approval (time saver for sure!).
    I am sure it all boils down to what the customer requirements are, but some other clients I demoed this to wanted to switch immediately after seeing that!  But definitely something to think about if you are planning on connecting an image to a product...
    Oh and she really is correct, Billy - I have never heard of anyone linking a query to a "link" or "image" type...I don' t know how you would even do that as the "link" or "image" selection leads you directly into the attachment and/or storage path and location...
    take care - Zal

  • How to make links different colors

    I can't figure out how to make one link a different. 

    You need to define a set of link states (link, visted, hover, active) for each ID or class name required.
    Let's say you want to have red links in your #header and white links in your #footer.
    CSS:
    #header a {text-decoration:none}
    #header a:link {color:red}     /**unvisited**/
    #header a:visited {color:gray} /**visited**/
    #header a:hover,               /**on mouse over**/
    #header a:active,              /**on click**/
    #header a:focus                /**on tab key**/
        {text-decoration:underline}
    #footer a {text-decoration:none}
    #footer a:link {color:white}
    #footer a:visited {color:yellow}
    #footer a:hover,
    #footer a:active,
    #footer a:focus 
        {text-decoration:underline}
    HTML:
    <div id="header">
    <a href="some-link.html">Link in the header</a> |
    <a href="some-link.html">Link in the header</a> |
    <a href="some-link.html">Link in the header</a> |
    </div>
    <div  id="footer">
    <a href="some-link.html">Footer link</a> |
    <a href="some-link.html">Footer link</a> |
    <a href="some-link.html">Footer link</a> |
    </div>
    For more on CSS pseudo classes:
    http://www.w3schools.com/css/css_pseudo_classes.asp
    Nancy O.

  • How To Make Links In A .PDF Open In A New Window

    Hello,
    I am using Acrobat Pro 10 to create a fillable employment application. At the top of the main application, I want people to be able to click and be redirected to another .PDF file I have hosted on my site that they will need to fill out in addition. So, I have used the link tool, but this closes the main pdf application and opens up the new pdf in its place. This is very problematic, because it clears out all of their data in the previous main application. So, I need the link to open in a new window and not in the same one as the original form. Is this possible?
    I have tried using the Java work around explained in this article: http://mythinkpond.wordpress.com/2009/11/04/opening-a-link-in-a-pdf-document-in-a-new-wind ow/
    However, when I do this, and upload it to my site the link doesn't do anything. When you click above the word where the link should be, it doesn't show the finger pointer and doesn't do anything when clicked.
    Any ideas? I greatly appreciate any help...

    That makes sense. So I guess it looks like I have 2 options.
    1. Put the JS short code in and have it open the link in a new window if the user opens it in adobe. If a google chrome user opens it in the default viewer, they wont be able to use the link at all.
    2. Leave the link how it is, and it will be usable in both viewers, but will not open it in a new window.
    I am sureprised that opening the link in a new window isn't just an option in Acrobat Pro. I wouldn't think you'd have to make a workaround like this.
    Is there an alternative way to have a page link on the form so that people can go to another .pdf whil keeping the main one open?

  • How to make link open in new TAB and not new window

    Mac users can do the following...
    http://www.switchingtomac.com/tutorials/how-to-force-safari-4-to-open-links-in-a -new-tab-instead-of-a-new-window/
    how can this be done for WIndows users?
    Using Safari 4.0

    I'm not totally sure what you mean, because unless you are talking about not having to right-click a link first, that is prasisly what I do. the link you provided I just right clicked it & clicked on "open in new tab" ,& that's what it did.
    - But now because that was so easy to answer, I can only assume you mean not actually having-to right-click a link to open it up in a new tab. ,hope this helped.

  • How to make links in the OA Worklist portlet open in a new separate window?

    We are in the process of certifying Portal 10.1.4 with Oracle Apps. I've been able to create an Oracle Applications Framework Provider and successfully add the Worklist portlet to a portal template. The idea is to have a user see their Worklist notifications on their homepage and do some sort of action on them. Then return back into the Portal homepage where the notification portlet is.
    I'm not sure what opinions I have: We can maybe have all the links in the Worklist portlet open in a window, but I don't know how this can be done.
    Any ideas?
    Thank you,
    Adrian

    Not quite sure of your requirements, but since OA framework provider and portlets are out of box there is only limited customization available e..g fields, no of items in worklist portlet, ordering etc.
    But normally when you click on a worklist link in the portlet it will lead to a worklist details page (allowing actions like approve, forward, reject etc.) and also has a home link which leads back to portal home page. [Depends on profile options setup in apps]
    Also since oracle apps is single sign on enabled users can receive notification via email and will be directed directly to notification details page after single sign on.

  • How to make link to another wiki page open in same WebCenter window

    I have a WebCenter wiki page that contains a Flash object. Within the Flash object, there's a link to another wiki page that is in the same group space. When I click on the link, however, it opens another Webcenter window within (inside) the original one instead of opening the destination wiki page in place of the current one. In effect, I end up seeing two navbars at the top and left.
    How do I fix this problem?

    Brilliant, Jon. Thank you so much. For those of you who stumble on this, I did have a tiny bit of trouble when I edited the actionscript; the video didn't play as expected. After trial and error, this is the code that worked both in playing the video and opening up in the same browser window:
    navigateToURL(new URLRequest("http://www.paris-pet.com/home.html"),"_self");
    The difference seems to be this:  ")     before the comma prior to "_self");
    Again, Jon -- thanks!
    Jack

  • How to make a new window open smaller?

    I think I have done this before and thought it was an action, but now can't figure it out.  I want to click a link and have it open up a smaller, overlapping pop-up window.  How do I do that?
    Thanks,

    Hmmm sound like somthing has gon wrong
    if it dont even work local you may have don somthing wrong when instaling the action ??
    is the action corectly placed in (GoLive Application Folder) / Modules / JScripts / Actions / ???
    What version of GL are you using ??
    Nate's FAQ on golive action:
    http://www.mindpalette.com/actions/faq.php#Anchor-47857
    "3. Why don't my third-party actions work in GoLive CS2?
    Because of a bug in GoLive CS2, the JavaScript code from some third-party actions is not automatically added to GoLive's external script library when first used (usually GeneratedItems/CSScriptLib.js at the top level of your GoLive site). To fix, open your GoLive site window and right click on the GeneratedItems/CSScriptLib.js file and choose Update > Flatten Script Library from the contextual menu.
    This will force GoLive to update the script library to include all used action code. Re-upload the file to your server and the action should be working again. You may need to clear your browser cache to force the new file to load if you've recently visited the page"
    Mayby others have had problem with his action to Try see his forum:
    http://www.mindpalette.com/forum/index.php
    you may also try this:
    1 Open the action as if its a normal document
    2 make a small change
    3 save
    4 change back /remove the change
    5 save
    6 restart golive

  • How to Make Link Open an Attached PDF?

    I see in "Link Properties" and "Actions" that there is an option to "Open a file"; but when I select this, and click "Add"--I am not given the opportunity to link to the other PDF file that is already attached to the PDF file that I'm working on.
    I know this can be done, just don't see how right now.
    Thanks.

    Have the Attachments pane open so that you can see the attached PDF(s).
    Using Acrobat's Link tool lay down the link annotation (the 'box' you create) over the text string of interest.
    In the Create Link dialog use "Go to a page view".
    Click "Next".
    The "Create Go to View" dialog presents itself.
    Leave it for the time being.
    Go to the open Attachments pane. Select the desired PDF. Right click and select "Open Attachment".
    Back to the "Create Go to View". Now, click "Set Link". 
    The "Create Go to View" dialog removes itself.
    You're now observing the PDF that has the attached PDF(s).
    Note that the PDF to which you linked is also still open.
    This will be the case for each attached PDF you link to.
    So, as part of the clean up ---
    Do a Save As to the PDF having the attached PDFs.
    Close the other PDFs.
    Good to know.
    The default for the link(s) will open the target, attached PDF while closing the "source" PDF that contains the attached PDF(s).
    You can edit each link in the "source" PDF to configure "Open in" --
    --| Window set by user preference
    --| New window
    --| Existing window
    Open a link's properties. Select the Actions tab. Click the Edit button that is under the Actions 'window'.
    Be well...

  • How to make the finder window expand to full height AND width of my screen, but not "full screen mode".

    The new green button on the finder window makes the screen go into full screen takeover mode - alt clicking this makes it 100% height of the screen.
    How can I make this 100% width and height (just like it used to be in Mavericks)?
    I have 2 x 27" monitors, so the "full screen takeover" mode is not right as I only want the finder window to be on one monitor whilst I work on another.
    Any ideas?! Thank you!

    Was about to post the same question.
    Ever since I upgraded to Yosemite (about a month ago), this odd behavior has irked me.
    Could it be that it only plagues those of us running dual displays? And therefore nobody else cares?

  • How to make link that browses your detailed navigation

    Hello Sapies,
    I'm currently working with EP7 and I'm showing a html page in a iview that contains links. I want that these links automatically browse my menu-structure. So to other roles and/or to other iviews in my detailed navigation. How do I build these hyperlinks.
    In EP6 it worked like this
    See my thread - URL iView
    What has changed? Can you also do this within the same browser screen?
    Thanks,
    Frederik

    Hi,
    As far as I know there is nothing changed in EP7 to trigger Navigation.
    You can navigate two ways:
    1. Use EPCF to navigate:
    A HREF="myLink"
      onclick="return EPCM.doNavigate
            ('ROLES://portal_content/myRole/myIView')">
    This is an HTML Link
    /A
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/0029d0e7371aa2e10000000a422035/frameset.htm
    2. Navigating using <b>NavigationTarget</b>, as you already know from your thread:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2d/91e33edd37de63e10000000a11405a/frameset.htm
    Also check these:
    Logical Name for the EP 6.0 Server for window.navigate URL.
    Portal 6.0 Top-Level navigation problem?
    Greetings,
    Praveen Gudapati
    [Points are welcome for helpful answers]

Maybe you are looking for