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, קישורים באתר נקראים אובייקטים שנוצרו במאגר נתונים אחד המכיל פירוט והדרכה זה מתאר כיצד להתחבר אחרת, שונה לחלוטין, מסד נתונים. 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> 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. ואתה תהיה שתראה את הרישום באתר של קישורים מוגדרת, עם הפרטים של הבעלים, 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. בדרך כלל הבעלים של הקישור באתר הוא האדם שיצר אותו, אלא אם כן הוא נוצר כקישור הציבור, ובמקרה מדומה משתמש בשם הציבור אמר את זה בעצמו.
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 בעת יצירת קישורים באתר, העמודה HOST תציג את הכינוי tnsnameas, ולא המארח או שם השרת המרוחק כי הקישור באתר מתחבר. You have to check tnsnames.ora to get the connection details. אתה צריך לבדוק tnsnames.ora לקבל את פרטי החיבור.
IMPORTANT : The page is machine translated and provided "as is" without warranty. חשוב: הדף מכונת תירגם מתפרסם "כמות שהוא" ללא אחריות. Machine translation may be difficult to understand. תרגום מכונה יכול להיות קשה להבין. Please refer to נא עיין original English article המאמר המקורי באנגלית whenever possible. בכל הזדמנות אפשרית.
Related Articles מאמרים קשורים
- Oracle Database Link קישור מסד נתונים אורקל
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile איך זרוק Tablespace ולשחזר Oracle Database כאשר בטעות מחק Datafile
- How to Remove and Drop Datafiles from Tablespace in Oracle Database כיצד להסיר ושחרר Datafiles מ Tablespace ב Oracle Database
- Oracle EXP-00091 Error When Export Database אורקל EXP-00091 שגיאה בעת ייצוא מסד נתונים
- Oracle Database Import Error 3113/3114 Oracle Database ייבוא שגיאה 3113/3114
- Change Oracle Database User Password שינוי Oracle Database משתמש סיסמא
- IMP-00016 Required Character Set Conversion Not Supported Error when Import to Oracle Database IMP-00016 תווים חובה הגדר המרות שגיאה לא נתמכות כאשר ייבוא כדי Oracle Database
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error צור, הוספה או פיצול Oracle Database החלוקה נכשל עם שגיאה ORA-14080
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 או לוח האם לא הצג שגיאה אורקל Exist
- View and Retrieve or Change Windows (XP, Vista, 2003, 2000 and more) and Office (XP, 2003, 92) Product Key or CD Key הצג ולאחזר או שינוי של Windows (XP, Vista, 2003, 2000 ועוד) ו-Office (XP, 2003, 92) מפתח המוצר או CD Key










































October 12th, 2008 03:18 12 אוקטובר 2008 03:18
Hola a todos.. Hola a todos ..
Quisiera saber si me pueden ayudar en eso es urgente: Quisiera saber si לי pueden ayudar en eso es urgente:
Como puedo ver las bases de datos que estan en oracle y las tablas tambien לאס Como puedo ver בסיסי דה 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 יולי 2008 14:33
For Oracle 9i and Greater, עבור אורקל 9i ו רבתי,
Use להשתמש
Select * from ALL_DB_LINKS Select * from ALL_DB_LINKS
This view is present in the SYS Schema תצוגה זו נוכח סכימת SYS
RvK RvK