View and Retrieve Oracle Database Link Details Lihat dan Ambil Oracle Database Link Details
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. Di Oracle, database link yang bernama objek yang dibuat dalam satu database yang berisi detail dan instruksi yang menjelaskan cara menghubungkan ke yang lain, sama sekali berbeda, database. 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. Database link adalah rata-rata melakukan pemrosesan basis data terdistribusi, dan dapat digunakan untuk mengambil data dari database remote versi yang berbeda, atau berjalan pada sistem operasi yang berbeda.
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. Jika Anda ingin tahu apakah database link ada dalam kamus data pandangan, dan di mana link koneksi ke database, anda bisa mendapatkan informasi dari DBA_DB_LINKS pandangan.
Just launch your SQL*Plus or Toad, or whatever convenient to you and query the dba_db_links table. Hanya meluncurkan SQL * Plus atau Katak, atau apa pun yang nyaman untuk Anda dan dba_db_links query meja. For example: Contoh:
SQL> select * from dba_db_links; SQL> select * from 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. Dan Anda akan melihat daftar link database yang ditetapkan, dengan rincian OWNER, DB_LINK, USERNAME, HOST, dan DIBUAT, yang nama kolom itu sendiri adalah lebih atau kurang jelas.
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. Biasanya PEMILIK database link adalah orang yang menciptakannya, kecuali dibuat sebagai link publik, dalam hal ini pseudo-user baru bernama UMUM dikatakan untuk memilikinya.
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. Disamping, jika anda menentukan host string koneksi sebagai pintu masuk (alias) dari tnsnames.ora saat membuat database link, kolom HOST akan menampilkan alias tnsnameas, dan bukan host atau nama server jauh bahwa database link yang sedang mengakses. You have to check tnsnames.ora to get the connection details. Anda harus memeriksa tnsnames.ora untuk mendapatkan rincian sambungan.
IMPORTANT : The page is machine translated and provided "as is" without warranty. PENTING: Halaman ini adalah mesin diterjemahkan dan diberikan "sebagaimana adanya" tanpa jaminan. Machine translation may be difficult to understand. Terjemahan mesin mungkin sulit untuk mengerti. Please refer to Silakan merujuk ke original English article artikel asli bahasa Inggris whenever possible. bila memungkinkan.
Related Articles Artikel Terkait
- Oracle Database Link Oracle Database Link
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Bagaimana Drop tablespace dan Recover Oracle Database Ketika sengaja Hapus Datafile
- How to Remove and Drop Datafiles from Tablespace in Oracle Database Cara Hapus dan Drop Datafiles dari tablespace di Oracle Database
- Oracle EXP-00091 Error When Export Database EXP-00091 oracle Error Ketika Ekspor Database
- Oracle Database Import Error 3113/3114 Kesalahan Impor Oracle Database 3113/3114
- Change Oracle Database User Password Ubah Oracle Database User Password
- IMP-00016 Required Character Set Conversion Not Supported Error when Import to Oracle Database Diperlukan IMP-00016 Character Set Konversi Tidak Didukung Kesalahan ketika Impor ke Oracle Database
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Membuat, Tambah atau Split Pemisahan Oracle Database Gagal dengan ORA-14080 Error
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 Tabel atau Lihat Tiada Oracle Error
- View and Retrieve or Change Windows (XP, Vista, 2003, 2000 and more) and Office (XP, 2003, 92) Product Key or CD Key Lihat dan Ambil atau Ubah Windows (XP, Vista, 2003, 2000 dan lebih) dan Office (XP, 2003, 92) Produk Key atau CD Key










































October 12th, 2008 03:18 12 Oktober 2008 03:18
Hola a todos.. Hola a todos ..
Quisiera saber si me pueden ayudar en eso es urgente: QUISIERA saber si me pueden ayudar en ESO es urgente:
Como puedo ver las bases de datos que estan en oracle y las tablas tambien Como puedo ver las base de datos que estan en Oracle y también Las Tablas
Desde ya agradesco su respuesta Desde ya agradesco su respuesta
July 15th, 2008 14:33 15 Juli 2008 14:33
For Oracle 9i and Greater, Untuk Oracle 9i dan Raya,
Use Menggunakan
Select * from ALL_DB_LINKS Pilih * dari ALL_DB_LINKS
This view is present in the SYS Schema Pandangan ini hadir dalam Schema SYS
RvK RvK