بتاريخ: 5 أغسطس 200718 سنة comment_106535 السلام عليكم...اخواني احاول عمل Exp من قاعدة البيانات ( Oracle 8i ) ولكن يظهر لي الخطأ التالي...مع العلم اني جربت الصيغ التالية لكن دون فائدةexpexp book/bk@orclexp book/bk@orcl file = c:\aaa.dmp تقديم بلاغ
بتاريخ: 5 أغسطس 200718 سنة comment_106587 الأخ / YMS_Designيمكنك استخدام خاصية البحث بالمنتدى ... اليك احدى المشاركات استخدام وسيلتى التصدير والاستيراد للبيانات Exp, سلسلة بيت الحكمة - ملف شامل عن التصديراليك ايضا ... اولا سنقوم بعمل EXPORT عن طريق المستخدم SYSTEM لل SCHEMA التي نريد التعامل معها وهي في هذا المثال SCOTT SCHEMA وونفذ الأمر التالي من COMMAND PROMPT :--كودexp SYSTEM/SYSTEM OWNER=SCOTT FILE=C:\SCOTTDATAOWNER : وهو المستخدم الذي نريد نقل البيانات منه FILE : مكان واسم الملف الذي سيتم التصدير فيهوثانيا سنقوم بعمل IMPORT عن طريق المستخدم SYSTEM ايضا وونفذ الأمر التالي من COMMAND PROMPT :--كودimp SYSTEM/SYSTEM FILE=C:\SCOTTDATA FROMUSER=SCOTT TOUSER=ALIFROMUSER : المستخدم الذي نقلنا بياناته في الخطوة السابقة وهو SCOTT في هذه الحالة .TOUSER : المستخدم الذي سننقل له البيانات وهو في هذه الحالة ALI . تقديم بلاغ
بتاريخ: 9 أغسطس 200718 سنة comment_106900 http://www.csee.umbc.edu/help/oracle8/serv...2/ch01.htm#2615 Using Export This section describes how to use the Export utility, including what you need to do before you begin exporting and how to invoke Export.Before Using ExportTo use Export, you must run the script CATEXP.SQL or CATALOG.SQL (which runs CATEXP.SQL) after the database has been created. Note: The actual names of the script files depend on your operating system. The script file names and the method for running them are described in your Oracle operating system-specific documentation.CATEXP.SQL or CATALOG.SQL needs to be run only once on a database. You do not need to run it again before you perform the export. The script performs the following tasks to prepare the database for Export: * creates the necessary export views * assigns all necessary privileges to the EXP_FULL_DATABASE role * assigns EXP_FULL_DATABASE to the DBA roleBefore you run Export, ensure that there is sufficient disk or tape storage space to write the export file. If there is not enough space, Export terminates with a write-failure error.You can use table sizes to estimate the maximum space needed. Table sizes can be found in the USER_SEGMENTS view of the Oracle data dictionary. The following query displays disk usage for all tables:select sum(bytes) from user_segments where segment_type='TABLE'; تقديم بلاغ
بتاريخ: 6 يوليو 200817 سنة comment_132617 اخي كل ما عليك ان تكتب الاتيexp userid=username/password file=path تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.