بتاريخ: 24 يونيو 201510 سنة comment_263324 اخواني اني مبتدئة في الاوراكل وعملت مشروع مبسط وبدئ اعمل dump لخزن بيانات مشروعي تقديم بلاغ
بتاريخ: 24 يونيو 201510 سنة comment_263325 يا ريت تذكرى اصدار الداتابيز بتاعك بعد كده لو شغالة 10g اقرأي عن expdp and impdp لو قبل كده اقرأي عن exp and imp commands استخدميهم في ملفات باتش واندهي عليهم من الفورمز . تقديم بلاغ
بتاريخ: 25 يونيو 201510 سنة comment_263330 Getting StartedFor the examples to work we must first unlock the SCOTT account and create a directory object it can access. The directory object is only a pointer to a physical directory, creating it does not actually create the physical directory on the file system of the database server.CONN / AS SYSDBAALTER USER scott IDENTIFIED BY tiger ACCOUNT UNLOCK;CREATE OR REPLACE DIRECTORY test_dir AS '/u01/app/oracle/oradata/';GRANT READ, WRITE ON DIRECTORY test_dir TO scott;Existing directories can be queried using the ALL_DIRECTORIES view.Data Pump is a server-based technology, so it typically deals with directory objects pointing to physical directories on the database server. It does not write to the local file system on your client PC.Table Exports/ImportsThe TABLES parameter is used to specify the tables that are to be exported. The following is an example of the table export and import syntax.expdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.logimpdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=impdpEMP_DEPT.logFor example output files see expdpEMP_DEPT.log and impdpEMP_DEPT.log.The TABLE_EXISTS_ACTION=APPEND parameter allows data to be imported into existing tables.Schema Exports/ImportsThe OWNER parameter of exp has been replaced by the SCHEMAS parameter which is used to specify the schemas to be exported. The following is an example of the schema export and import syntax.expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.logimpdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.logFor example output files see expdpSCOTT.log and impdpSCOTT.log.Database Exports/ImportsThe FULL parameter indicates that a complete database export is required. The following is an example of the full database export and import syntax.expdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.logimpdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=impdpDB10G.log تقديم بلاغ
بتاريخ: 26 يونيو 201510 سنة comment_263371 اخواني اني مبتدئة في الاوراكل وعملت مشروع مبسط وبدئ اعمل dump لخزن بيانات مشروعي هذا الرابط قد ينفعك http://www.araboug.org/ib/index.php?showtopic=58732 تقديم بلاغ
بتاريخ: 1 يوليو 201510 سنة كاتب الموضوع comment_263493 أشكركم علمجهود لكن للأسف منجحت الطريقة معي تقديم بلاغ
بتاريخ: 3 يوليو 201510 سنة كاتب الموضوع comment_263783 حسب الرابط طبقت الطريقة كولشي اوك بس في كود طويل ماعرفت وين اكتبة تقديم بلاغ
بتاريخ: 3 يوليو 201510 سنة كاتب الموضوع comment_263784 حسب الرابط طبقت الطريقة كولشي اوك بس في كود طويل ماعرفت وين اكتبة تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.