View and Retrieve Oracle Database Link Details Oracleデータベースのリンクを表示し、取得の詳細
In Oracle, database links are named objects that are created in one database which contains detail and instruction that describes how to connect to another, entirely different, database. Oracleでデータベースリンクの名前で作成されたオブジェクトを1つのデータベースが含まれ、命令が詳細に接続して別の方法を説明し、全く別の、データベースです。 Database links are is a mean of performing distributed database processing, and can be used to retrieve data from a remote database of different version, or running on different operating system.データベースリンクは意味の舞台は、分散型データベースの処理、およびデータを取得することができますから、リモートのデータベースを別のバージョンか、または別のオペレーティングシステムで実行されています。
If you want to know whether any database links exist in data dictionary views, and where the database links connect to, you can get the information from DBA_DB_LINKS view.する場合は、任意のデータベースのリンクが存在するかどうかを知って、データ辞書をダウンロード再生回数、およびデータベースのリンクがどこに接続して、 dba_db_linksすることができますから情報を入手して表示します。
Just launch your SQL*Plus or Toad, or whatever convenient to you and query the dba_db_links table.だけを起動しているSQL * Plusまたはヒキガエルか、またはどのようにすると便利なクエリを実行しdba_db_links表のとおりです。 For example:例えば:
SQL> select * from dba_db_links;のSQL > " *よりdba_db_links ;
And you will be seeing listing of database links defined, with details of OWNER, DB_LINK, USERNAME, HOST, and CREATED, which the column name itself is more or less self-explanatory.と表示されるデータベースのリストを見てリンクが定義されて、所有者の詳細、 db_link 、ユーザ名、ホスト、および作成されると、カラム名は、多かれ少なかれ自体は自明です。
Normally the OWNER of the database link is the person who created it, unless it was created as a public link, in which case a pseudo-user called PUBLIC is said to own it.通常の所有者は、データベースのリンクはその人who作成し、なければ公共のリンクとして作成さは、その場合は、擬似ユーザによると呼ばれる国民はそれを所有しています。
Beside, if you define connection host string as an entry (alias) from tnsnames.ora when creating the database links, the HOST column will show the tnsnameas alias, and not the host or remote server name that the database link is connecting to.横には、ホストを定義した場合、接続文字列としてのエントリ(エイリアス)よりtnsnames.oraデータベースリンクを作成する際には、ホストの列が表示さtnsnameasエイリアス、および特定のホストまたはリモートサーバー名は、データベースに接続してリンクがします。 You have to check tnsnames.ora to get the connection details.をチェックする必要がtnsnames.oraの詳細を取得するに接続します。
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これは、機械翻訳ページで提供"現状有姿"を保証します。 Machine translation may be difficult to understand.機械翻訳を理解するのは難しいかもしれません。 Please refer toを参照してください original English articleオリジナルの英語記事索引 whenever possible.いつ可能です。
Share and contribute or get technical support and help atを共有して貢献や技術サポートとヘルプを得る My Digital Life Forums 私のデジタルライフフォーラム .です。
Related Articles関連記事
- Oracle Database Link Oracleデータベースのリンク
- Check Oracle Version Oracleのバージョンを確認
- Oracle Database Import Error 3113/3114 Oracleデータベースにインポートエラーが発生3114分の3113
- Change Oracle Database User Password Oracleデータベースのユーザのパスワードを変更
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error作成、追加、またはOracleデータベースのパーティション分割が失敗するのOra - 14080エラーが発生
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete DatafileどのようドロップOracleデータベースのテーブルスペースを回復DATAFILEのときに誤って削除
- Oracle EXP-00091 Error When Export Database Oracleの輸出- 00091エラーが発生する輸出データベース
- Manual and Clean Uninstall Oracle for Windowsオラクル、 Windowsのマニュアルおよび清潔度をアンインストール
- Oracle JDeveloper Reviewsオラクルjdeveloperレビュー
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace ErrorオラクルのOra - 01658の範囲の最初のセグメントを作成できない場合は、テーブルスペースのエラーが発生

































July 15th, 2008 14:33 2008年7月15日14:33
For Oracle 9i and Greater,ためのOracle 9i以降、
Use使用
Select * from ALL_DB_LINKS *から選択all_db_links
This view is present in the SYS Schemaこのビューを表示するシステムが存在してスキーマ
RvK rvk