View and Retrieve Oracle Database Link Details Visualizzare e recuperare i database Oracle link dettagli
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. In Oracle, database di link sono chiamati oggetti che vengono creati in una banca dati che contiene i dettagli e le istruzioni che descrive come connettersi a un altro, completamente diverso, banca dati. 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 di link sono un modo di eseguire il trattamento di database distribuiti, e può essere utilizzato per recuperare i dati da un database remoto di versione diversa, o in esecuzione sul sistema operativo diverso.
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. Se volete sapere se una banca dati i legami esistenti nel dizionario dei dati opinioni e, se la banca dati connettersi al link, è possibile ottenere le informazioni da visualizzare DBA_DB_LINKS.
Just launch your SQL*Plus or Toad, or whatever convenient to you and query the dba_db_links table. Basta lanciare il tuo SQL * Plus o Toad, o qualunque cosa conveniente a voi e di interrogare il dba_db_links tabella. For example: Per esempio:
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. E sarai vedere lista di link banca dati definiti, con l'indicazione del proprietario, DB_LINK, nome utente, host, e ha creato, che la colonna nome stesso è più o meno evidente.
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. Di norma il proprietario della banca dati link è la persona che lo ha creato, a meno che non è stato creato come un appalto pubblico di collegamento, nel qual caso una pseudo-utente chiamato PUBBLICA si dice proprio.
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. Accanto, se si definiscono ospitante stringa di connessione come una voce (alias) da tnsnames.ora durante la creazione del database di link, di accoglienza colonna mostrerà il tnsnameas alias, e non l'host o server remoto che il nome del database link è connessi. You have to check tnsnames.ora to get the connection details. Dovete controllare tnsnames.ora per ottenere la connessione dati.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una pagina tradotta macchina che è fornito "così com'è" senza alcuna garanzia. Machine translation may be difficult to understand. Traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale inglese whenever possible. quando possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e assistenza in My Digital Life Forums La mia vita digitale Forum .
Related Articles Articoli correlati
- Oracle Database Link Oracle database di link
- Check Oracle Version Oracle verificare versione
- Oracle Database Import Error 3113/3114 Database Oracle errore di importazione 3113/3114
- Change Oracle Database User Password Cambia database Oracle Utente Password
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Creare, aggiungere o Spalato Oracle Database partizione non riesce a ORA-14080 Errore
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Come goccia tablespace e recuperare database Oracle quando accidentalmente eliminare archivio dei dati
- Oracle EXP-00091 Error When Export Database Oracle exp-00091 errore durante l'esportazione del database
- Manual and Clean Uninstall Oracle for Windows Pulizia manuale e la disinstallazione di Oracle per Windows
- Oracle JDeveloper Reviews Oracle JDeveloper recensioni
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Impossibile creare INIZIALE Estensione per il segmento in errore Tablespace

































July 15th, 2008 14:33 15 luglio 2008 14:33
For Oracle 9i and Greater, Per Oracle 9i e maggiore,
Use Utilizzo
Select * from ALL_DB_LINKS SELECT * FROM ALL_DB_LINKS
This view is present in the SYS Schema Questo punto di vista è presente nel SYS Schema
RvK RVK