Why name of database link come like this ?

hi all
i have created database link as follow
create database link BRANCH01
connect to hr identified by hr using 'hr' ;
every thing is ok with me but the problem oracle give suffix name like this
select db_link
from all_dba_links ;
Db_link
BRANCH01.US.ORACLE.COM
how can i remove this suffix , i want rename the dblink to appear as I create it
any idea , how to rename it or how to remove this suffix
thanks for every body viewing and helping

Check out [Chapter 30|http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/ds_admin.htm#i1007567] of the Database Administrator's Guide. It should answer most if not all of your questions.
HTH!

Similar Messages

  • Why does my terminal prompt look like this?

    Today I noticed that my Terminal prompt now looks like this:
    *pranaymishra:~ tbarth$*
    Any idea how that happened? There's nothing in the .profile that does this.
    -Travis

    The computer name is 'Travis', and always has been.
    Hmmm...
    Further investigating shows a computer by that name on the network with a different IP address. The DHCP server shows my IP address as associated with my computer name, 'Travis'.
    So could this be an OS X network error where it's picking up the computer name from something like WINS or DNS and not updating it if the IP lease changes? And if so, why does it not simply use the given name specified by the user instead?
    As far as the network is concerned, my computer name is 'Travis', as it should be.
    -Travis
    EDIT: BTW, 'Use dynamic global host name' is not enabled.
    Message was edited by: Travis B

  • MASK PRO - Why can't Adobe add masking like this ! - wow !

    This week, I saw a guy working on a project using a product by OnOneSoftware.com called "Mask Pro"
    He was extracting a woman from a very busy background. He effortlessly removed the woman, including strands of her hair in under a minute.
    I wonder why Adobe cannot implement something so powerful in Photoshop ?
    I am actually amazed at how well this program worked, I'm not sure if it is a plugin or stand-alone program, but it worked side-by-side with Photoshop.
    This Mask Pro works by quickly picking colors that you want eliminate and ones you wish to keep. Each time you click on a color you wish to keep, it loads them onto a little column and you see the colors appear. Then you choose ones you wish to eliminate. These appear on another column. Amazing how this works !
    You then take the special paintbrush tool, and just run over any area, such as the hair, and magically, it removed ALL background but leaves even the smallest strands of hair intact ! - It is truly wonderful to see.
    I'm sure Adobe knows about this product, so I wonder why they cannot make something similar, or just buy the company out and implement their product in Photoshop. You have to see this tool in use to actually believe it.
    Thanks,
    Dave.

    FWIW I don't even own any plug-ins and have used many selection tools and
    know how to make a decent selection
    I use color range, magic wand, magnetic lasso, refine edges and combos of
    those
    Also tried Russell Browns channel technique for flying hair etc (his example
    is on a plain gray cyc) and that hideous pen tool
    a complicated mask make might take me a couple hours and I feel my time is
    worth more
    the service bureau does it for $2.50 overnight
    the one I sent was FREE as a trial of their service
    and I was quite pleased with it
    for me the choice to farm out that un-creative task depends on the job,
    things like number of images to complete in the time frame given
    I prefer to use my time with an image for more the subjective changes, like
    color balance, light, filters, adding creative techniques, fixing what I
    want to
    it is like the choice to use a lab to print or do it all yourself
    benefits to both and choice dictated by the assignment
    after all once we didn't have to sit and process all our own images they
    went to an E6 lab
    and we paid them to do it
    so many things we did manually can now be done by a computer program such as
    replacing part of the background with parts from another frame
    adding softer depth of field by a plug in
    skin smoothing etc
    even windows live has stitching (even a little kid can do it as the
    commercial shows)
    resisitance is futile

  • Winacd, why doesn't apple use something like this, or advertise it?

    I mean it completely fixes the power on issue and adds extra features fur tuning the montitor itself. I dont quite understand since the ACD needs this in order to function correctly on a windows PC.
    Here is the link if anyone is interested.
    http://sourceforge.net/projects/winacd/
    On a second note. I received my display with a scratch on the front bezel. Do you think it is possible to allow me to send mine back and get it fixed? I want it fixed and not replaced since the one I received has a perfect screen on it. i don't want to deal with switching it out again and possibly getting a bad one.

    WinACD is a windoze driver created by Laurent Morichetti and generously offered free of charge. LM has also provided an extremely generous level of personal support to users of this driver. Why does Apple not provide a similar driver? Who knows? Why is there not even a link to this free driver on Apple's web site? Who knows? But look at Apple's Mighty Mouse driver. As weak a piece of software as has ever been offered. Vastly less versatile than either Steer Mouse or USB Overdrive. But at least there is a link for Steer Mouse on Apple's download page.

  • How to map the node id to the node name in database view just like "V$GES_RESOURCE"

    i have a rac with 3 nodes,and the node id is from 1 to 3,i can check it with command olsnodes.
    $ olsnodes -p -n -i
    tdsdb1  1       tdsdb1-priv     tdsdb1-vip
    tdsdb2  2       tdsdb2-priv     tdsdb2-vip
    tdsdb3  3       tdsdb3-priv     tdsdb3-vip
    and i also can check it in gv$instance
    SQL> select inst_id,instance_number,instance_name from gv$instance;
       INST_ID INSTANCE_NUMBER INSTANCE_NAME
             1               1 jftds1
             3               3 jftds3
             2               2 jftds2
    but when i select the master node of some resource ,it shows some value of node id =0
    SQL> select resource_name,master_node from v$ges_resource;
    RESOURCE_NAME                  MASTER_NODE
    [0xdcc9fa12][0x246658a5],[QQ]            2
    [0x932][0x70c230e],[IV]                  0
    [0xd9fb][0x13181703],[IV]               0
    [0xddae][0x0],[TM]                       0
    [0xb970fb05][0x729b596a],[LB]            2
    [0xb580][0x70c2e1c],[IV]                 0
    [0x31ad56fb][0x7e4c3daa],[QQ]            2
    [0x3][0x797609],[HW]                     0
    [0x2bf04627][0xf28b1575],[QI]            0
    [0x19c89f33][0xd06ef447],[QQ]            0
    [0x529ae82][0x86e25d46],[QQ]             0
    it seems that the master node id is from 0 to 2
    i want to get the node name from the node id from   v$ges_resource,so i check the table cluster_nodes ,cluster_instances,but there are nothing.
    SQL> select * from CLUSTER_NODES;
    no rows selected
    SQL> select * from CLUSTER_INSTANCES ;
    no rows selected
    how can i get the node name from the node id in the tables just like " v$ges_resource"? thank you .

    my cluster ware version is 10.2.0.5
    database version is 10.2.0.5
    and the source of rac is all online
    $ crsctl query crs activeversion
    CRS active version on the cluster is [10.2.0.5.0]
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for IBM/AIX RISC System/6000: Version 10.2.0.5.0 - Productio
    NLSRTL Version 10.2.0.5.0 - Production
    $ crs_stat -t
    Name           Type           Target    State     Host       
    ora.jftds.db   application    ONLINE    ONLINE    tdsdb2     
    ora....tds1.cs application    ONLINE    ONLINE    tdsdb1     
    ora....s1.inst application    ONLINE    ONLINE    tdsdb1     
    ora....ds1.srv application    ONLINE    ONLINE    tdsdb1     
    ora....tds2.cs application    ONLINE    ONLINE    tdsdb2     
    ora....s2.inst application    ONLINE    ONLINE    tdsdb2     
    ora....ds2.srv application    ONLINE    ONLINE    tdsdb1     
    ora....tds3.cs application    ONLINE    ONLINE    tdsdb3     
    ora....s3.inst application    ONLINE    ONLINE    tdsdb3     
    ora....ds3.srv application    ONLINE    ONLINE    tdsdb3     
    ora....SM1.asm application    ONLINE    ONLINE    tdsdb1     
    ora....B1.lsnr application    ONLINE    ONLINE    tdsdb1     
    ora.tdsdb1.gsd application    ONLINE    ONLINE    tdsdb1     
    ora.tdsdb1.ons application    ONLINE    ONLINE    tdsdb1     
    ora.tdsdb1.vip application    ONLINE    ONLINE    tdsdb1     
    ora....SM2.asm application    ONLINE    ONLINE    tdsdb2     
    ora....B2.lsnr application    ONLINE    ONLINE    tdsdb2     
    ora.tdsdb2.gsd application    ONLINE    ONLINE    tdsdb2     
    ora.tdsdb2.ons application    ONLINE    ONLINE    tdsdb2     
    ora.tdsdb2.vip application    ONLINE    ONLINE    tdsdb2     
    ora....SM3.asm application    ONLINE    ONLINE    tdsdb3     
    ora....B3.lsnr application    ONLINE    ONLINE    tdsdb3     
    ora.tdsdb3.gsd application    ONLINE    ONLINE    tdsdb3     
    ora.tdsdb3.ons application    ONLINE    ONLINE    tdsdb3     
    ora.tdsdb3.vip application    ONLINE    ONLINE    tdsdb3    

  • Why I can't start firefox like this?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/960958]]
    </blockquote>
    I put “ "C:\firefox\firefox.exe" -osint --no-remote -profile "C:\firefox\profile" -url "www.google.com" “ in cmd.exe ,why my firefox can't start?

    This function may not be available for mobile yet. You can put your suggestions to the [[Suggestion Box]]. Thanks!

  • Why do my breadcrumb links come out wrong?

    I'm using the snipet function under the window tab in CS6 for breadcrumb links.  I'm following directions, and including the correct link and text in the correct order.  For some reason, the order comes out wrong.  The two >> first, then the text for the current page (which is not a link), then the second link, followed by the first link.  I tried to see if the formatting of the hyperlinks was affecting this, but it does not appear so.
    I tried writing the code without using the snipet function, and this exact same result still happens.
    Please advise with any help if you can.
    Thanks!

    Hello John,
    because of your "I tried writing the code ..." I recommend that you have a look at http://kaosweaver.com/extensions/details/Breadcrumbs.
    Good luck!
    Hans-Günter

  • HT1386 Why doesn't my screen look like this  ? There is no place to choose anything to sync on my screen

    Why can't I choose what I want to sync ? There is no screen like is shown in support. The last update of iTunes doesn't give me chooses

    Connect your phone to iTunes, then click on the name of your phone on the left side of iTunes under Devices.  To the right you will see tabs representing your sync settings (Summary, Info, Apps, etc.).  One of the tabs is Music and one is Podcasts.  On each, you can check Sync Music and Sync Podcasts and set the specific music an podcasts you want on your phone.  When you're ready, click Apply at the bottom to sync your phone and transfer the media you selected on each of these tabs to your phone.

  • Why are my menu dropdowns appearing like this?

    I have Windows 7 and recently unistalled PSE 10 and it did not have this issue; Now Photoshop CS6 is displaying the menu dropdowns as shown in Image 1. Bridge CS6 does not have the issue;it is showing the menu bars correctly (see Image 2). I downloaded and installed all updates. Any guidance is much appreciated.
    -Mike
    Image 1: PS CS6 dropdowns
    Image 2: Bridge CS6 dropdowns

    That is weird! For starters, can you try clearing your prefs? http://forums.adobe.com/thread/375776
    Or, I'd suspect a faulty video driver.

  • Why can't I do something like this?

    import java.io.*;
    import java.util.*;
    class a extends Thread {
        public void run() {
            String s = currentThread().getName();
            System.out.println(s);
    public class TestThreadName {
        public static void main (String args[]){
                    Thread[] p = new Thread[4];    // declare an array for threads
                   for (int i=0; i<4; i++){     
                    String pid = Integer.toString(i);   
                    a p[i] = new a();
                    p.setName(pid);
    p[i].start();

    I don't know why you invent a class 'a' and when
    creating a thread don't use it, since 'a' extends
    Thread. I don't know what you wanted to achieve with
    your example.
    But anyway, Thread cannot be extended. You normally
    use the interface runnable and write code into run()
    or you create a Thread as an inner class.This is incorrect. There is nothing wrong with extending Thread.

  • Why does my Finder screen look like this?

    When I open Finder by double-clicking on the "Macintosh HD" icon or by clicking the Finder icon on the Dock, it comes up with the left pane being much larger than it needs to be. I don't recall it doing this when I first got the computer, so I'm thinking that I've done something to mess it up. Here's a screenshot so you know what I'm talking about:
    http://www.frenzied.us/~mattg/finder.jpg
    So every time I use Finder, I have to drag that middle bar over to the left some so that I can actually see more files & folders on the right side. Help!
    Mac mini 1.25GHz   Mac OS X (10.4.7)  

    I also used this method. Sometimes though I add one step - I open a new finder window, click one of the icons in the window (once) and then close the window with an apple-w or the red button. Usually does the trick.

  • Help!! why do my pages suddenly look like this??

    After spending days preparing this document, all of a suddent tonight something crazy happened. Im not sure how it occured. I made a duplicate of the document and when i did i noticed this odd formating The table of contents is suddenly all screwed up and the test now is truncated with ... at the end of each line and i can;t read the rest of the paragraph. I'm hoping i just clicked something that changed the view but i can;t seem to figure it out. Any ideas?

    Menu > View > Hide Document Outline
    Peter

  • Why does Bridge Metadata Panel look like this...?

    I just updated to Photoshop CS6 from CS5.1 and trying to iron out a few issues. One is this...
    In Bridge CS 6 my Metadata Panel items are truncated for some reason. There is plenty of room in the panel width, so...? I have even pulled the width out further than shown below. There are no problems with the other panels.
    Below are pics of the same panel in my install of CS 6 and then the same panel in my installation of CS 5.1.  Thanks.
         CS 6                                                                                                CS 5.1

    You've made the headings column too narrow.
    Hover your cursor over the space between the 'e' in Fil...e and _IGP1220.DNG.  It will change to a resizing indicator, indicating there's a hidden division there.  Drag it to the right to make enough room for the headings.
    Here's what I see, by the way, when I reduce the UI color to the blackest I can get it in Bridge CS6...
    -Noel

  • Why does my Applications folder look like this?

    http://img838.imageshack.us/img838/6410/screenshot20100727at091.png
    Recently upgraded from 10.4 to 10.6 on my MacBook (2 GHz Intel core duo) using the box set and the applications folder in the dock isn't showing properly.
    Tried various restarts and repairing permissions. Any ideas?

    have you tried removing the current folder (just an alias) from the dock, then re-adding it by dragging the applications folder back into the dock ?
    JGG

  • Problem with using database link from oracle 7 to oracle 9i

    Hi To Every One
    I have two oracle database oracle 7.3.4.0.1 and oracle 9i 9.2.0.1.0.
    and the tns alias to connect to oracle 9i database is oracle9i and tns
    alias to oracle 7 database is oracle7.I have no problem in connect to
    these database using these tns aliases from either database.The tns
    alias for oracle 7 is available in tnsnames.ora file of oracle9i and
    tns alias for oracle 9i is available in tnsnames.ora file of oracle 7.
    So there is no connection problem from each other.Connection is
    working fine for each other but the problem with database links is
    like this
    Problem:
    when i create database link from oracle9i user or public database link
    from oracle9i for oracle7 user like this
    SQL ORACLE9I >CREATE DATABASE LINK ORACLE7 CONNECT TO <ORACLE7USER>
    IDENTIFIED BY <PASSWORD> USING 'ORACLE7';
    OR
    SQL ORACLE9I >CREATE PUBLIC DATABASE LINK ORACLE7 CONNECT TO <ORACLE7USER>
    IDENTIFIED BY <PASSWORD> USING 'ORACLE7';
    The links get created sucessfully but when i write command like
    SQL ORACLE9I> DESC <ORACLE7USER_NAME>.<ORACLE7USER_TABLENAME>@ORACLE7
    I RECEIVE A ORACLE ERROR LIKE
    ORA-12663 SERVICE REQUIRED BY CLIENT IS NOT AVAILABLE ON THE SERVER.
    OR IF MY COMMAND IS LIKE
    SQL ORACLE9I> SELECT <FEILD_NAME> FROM
    <ORACLE7USER_NAME>.<ORACLE7USER_TABLENAME>@ORACLE7;
    I RECEIVE AN ORACLE ERROR LIKE
    ORA-01002 FETCH OUT OF SEQUENCE.
    ORA-02063: preceding line from ORACLE7
    BUT IF I CREATE A LINK FROM ORACLE7 USER FOR ORACLE9I USER
    IT WORKS FINE.
    PLZ HELP ME WHAT IS THE PROBLEM THAT THE LINK FOR ORACLE 7 IS NOT WORKING WHEN
    IT IS BEING CREATED FROM ORACLE9I.
    Thank u.

    Oracle 9.2.0 does not support connectivity to Oracle 7. The newest version that will support this is 9.0.1.

Maybe you are looking for

  • Nikon d810 won't tether

    My Nikon D810 will not tether with lightroom. I've tried three different USB 3.0 Cords, Two different computers and reinstalling lightroom and have made sure its up to date 5.6 Help?

  • Email a 10 minute movie

    What's the best settings I should use to email a 10 minute standard def video? Thanks.

  • My video ipods album artwork keep switching HELP PLEASE!!!

    for certain songs or certain albums the album artwork will be another albums album artwork and i cannot figure out what to do! please help me!

  • ODS error in production, job failed what to do now ?

    I have a sales ods and there is no more space in it and the data is there in the psa and the job is abend because there is no more space for the new records in the DSO. Can anybody suggest something, its in production and live data. What are my optio

  • Reset PRAM/SRAM, now won't open

    Aloha all, had a bad ram issue and got that fixed easily, but had to reset PRAM on a G5 (early 2005), After rebooting FC won't open at all. Followed other advice on these boards like trashing prefs etc, using FCR, but nada. Still won't open. Any othe