EXPORT using OEM10g

Hi All,
I am trying to export(Instead of running a daily backup using RMAN, I want to schedule a daily export) a Oracle 11gR2 non-ASM database to ASM file system that we have on the server. Basically I want to use ASM file system as the backup directory to backup my Non-ASM database. I have created a directory in ASM file system for this particular database under +FRA but when I am trying to test if this path exists through OEM 10g, it does not recognize the path. I have created a directory from back end oracle database using the "create or replace directory command" but still OEM doesn't recognize the path. Please advise.
Thank You!

Hello,
Even if it's a test Database, you should take at least a Cold Backup of it.
For that, RMAN (which is recommended) is not needed, just shutdown cleanly the Database and copy all its files on a safe place.
Imagine that someting happens on the server and you loose a file then, without any Backup, you may loose the Database and have to recreate it from zero.
The export may just help you to get back the data, objects and logical structure, you cannot recreate completely the physical database structure (for instance the redolog files, control files,...) from a dump.
Else, about your problem:
I have created a directory from back end oracle database using the "create or replace directory command" but still OEM doesn't recognize the path. Please advise.Which error did you get ?
Best regards,
Jean-Valentin
Edited by: Lubiez Jean-Valentin on Aug 3, 2010 6:25 PM

Similar Messages

  • Schema Export using DBMS_DATAPUMP is extremely slow

    Hi,
    I created a procedure that duplicates a schema within a given database by first exporting the schema to a dump file using DBMS_DATAPUMP and then imports the same file (can't use network link because it fails most of the time).
    My problem is that a regular schema datapump export takes about 1.5 minutes whereas the export using dbms_datapump takes about 10 times longer - something in the range of 14 minutes.
    here is the code of the procedure that duplicates the schema:
    CREATE OR REPLACE PROCEDURE MOR_DBA.copy_schema3 (
                                              source_schema in varchar2,
                                              destination_schema in varchar2,
                                              include_data in number default 0,
                                              new_password in varchar2 default null,
                                              new_tablespace in varchar2 default null
                                            ) as
      h   number;
      js  varchar2(9); -- COMPLETED or STOPPED
      q   varchar2(1) := chr(39);
      v_old_tablespace varchar2(30);
      v_table_name varchar2(30);
    BEGIN
       /* open a new schema level export job */
       h := dbms_datapump.open ('EXPORT',  'SCHEMA');
       /* attach a file to the operation */
       DBMS_DATAPUMP.ADD_FILE (h, 'COPY_SCHEMA_EXP' ||copy_schema_unique_counter.NEXTVAL || '.DMP', 'LOCAL_DATAPUMP_DIR');
       /* restrict to the schema we want to copy */
       dbms_datapump.metadata_filter (h, 'SCHEMA_LIST',q||source_schema||q);
       /* apply the data filter if we don't want to copy the data */
       IF include_data = 0 THEN
          dbms_datapump.data_filter(h,'INCLUDE_ROWS',0);
       END IF;
       /* start the job */
       dbms_datapump.start_job(h);
       /* wait for the job to finish */
       dbms_datapump.wait_for_job(h, js);
       /* detach the job handle and free the resources */
       dbms_datapump.detach(h);
       /* open a new schema level import job */
       h := dbms_datapump.open ('IMPORT',  'SCHEMA');
       /* attach a file to the operation */
       DBMS_DATAPUMP.ADD_FILE (h, 'COPY_SCHEMA_EXP' ||copy_schema_unique_counter.CURRVAL || '.DMP', 'LOCAL_DATAPUMP_DIR');
       /* restrict to the schema we want to copy */
       dbms_datapump.metadata_filter (h, 'SCHEMA_LIST',q||source_schema||q);
       /* remap the importing schema name to the schema we want to create */     
       dbms_datapump.metadata_remap(h,'REMAP_SCHEMA',source_schema,destination_schema);
       /* remap the tablespace if needed */
       IF new_tablespace IS NOT NULL THEN
          select default_tablespace
          into v_old_tablespace
          from dba_users
          where username=source_schema;
          dbms_datapump.metadata_remap(h,'REMAP_TABLESPACE', v_old_tablespace, new_tablespace);
       END IF;
       /* apply the data filter if we don't want to copy the data */
       IF include_data = 0 THEN
          dbms_datapump.data_filter(h,'INCLUDE_ROWS',0);
       END IF;
       /* start the job */
       dbms_datapump.start_job(h);
       /* wait for the job to finish */
       dbms_datapump.wait_for_job(h, js);
       /* detach the job handle and free the resources */
       dbms_datapump.detach(h);
       /* change the password as the new user has the same password hash as the old user,
       which means the new user can't login! */
       execute immediate 'alter user '||destination_schema||' identified by '||NVL(new_password, destination_schema);
       /* finally, remove the dump file */
       utl_file.fremove('LOCAL_DATAPUMP_DIR','COPY_SCHEMA_EXP' ||copy_schema_unique_counter.CURRVAL|| '.DMP');
    /*EXCEPTION
       WHEN OTHERS THEN    --CLEAN UP IF SOMETHING GOES WRONG
          SELECT t.table_name
          INTO v_table_name
          FROM user_tables t, user_datapump_jobs j
          WHERE t.table_name=j.job_name
          AND j.state='NOT RUNNING';
          execute immediate 'DROP TABLE  ' || v_table_name || ' PURGE';
          RAISE;*/
    end copy_schema3;
    /The import part of the procedure takes about 2 minutes which is the same time a regular dp import takes on the same schema.
    If I disable the import completely it (the export) still takes about 14 minutes.
    Does anyone know why the export using dbms_datapump takes so long for exporting?
    thanks.

    Hi,
    I did a tkprof on the DM trace file and this is what I found:
    Trace file: D:\Oracle\diag\rdbms\instanceid\instanceid\trace\instanceid_dm00_8004.trc
    Sort options: prsela  execpu  fchela 
    count    = number of times OCI procedure was executed
    cpu      = cpu time in seconds executing
    elapsed  = elapsed time in seconds executing
    disk     = number of physical reads of buffers from disk
    query    = number of buffers gotten for consistent read
    current  = number of buffers gotten in current mode (usually for update)
    rows     = number of rows processed by the fetch or execute call
    SQL ID: bjf05cwcj5s6p
    Plan Hash: 0
    BEGIN :1 := sys.kupc$que_int.receive(:2); END;
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        3      0.00       0.00          0          0          0           0
    Execute    229      1.26     939.00         10       2445          0          66
    Fetch        0      0.00       0.00          0          0          0           0
    total      232      1.26     939.00         10       2445          0          66
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: SYS   (recursive depth: 2)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      wait for unread message on broadcast channel
                                                    949        1.01        936.39
    ********************************************************************************what does "wait for unread message on broadcast channel" mean and why did it take 939 seconds (more than 15 minutes) ?

  • IMovies - Export Using Quicktime - can't find the finished file - help please!

    Please help.  I exported several imovies projects to a designated file on my mac, using Share - Export using Quicktime and then I uploaded them to Youtube. 
    I did this successfully several times, now when I export a project, it takes about 45 minutes to export it, then I can't find them anymore.
    I have read several threads, which suggest looking in the iMovie projects folder and locate your project Right-click to get to "show package contents" and they are not there.
    It looks as if it goes through successfully, no errors but this is so annoying as I am wasting hours sharing and then can't find it.  Please help anyone.
    Thanks

    Hi Gee
    I originally spent about 10 hours uploading 3 clips directly from imovies to Youtube to a private channel and they couldn't find any signs of my 3 uploads.  So I read threads that said export to Quicktime from imovies and then load them to Youtube that way.  I did that for 3 short, 10 minute videos and it worked fine.  It changed the thread to .mov and it worked.
    Then perhaps I changed something (not sure what) but now when I use Export to Quicktime, it spends 1 hour or so doing the motions and completes but when I go to the allocated folder to retrieve it.  It can't be found.  I read threads and this seems to be a regular occurrence but I haven't read any replies that has solved this issue.
    Hope that's clearer.

  • Can I export using a single dump directory to multiple locations in oracle

    I'm trying to do a full database export using expdp utility in oracle 10g. I have a single dump directory that is mapped to a particular file location say /export/dump. I don't want the entire dump file to be stored in the above path. Instead I want the dump to be distributed among multiple files. I know that this can be done using FILESIZE parameter which will distribute the contents to multiple files according to the size we have specified.
    My problems comes here, I want to export my data to multiple locations, the path is different than what I mentioned above, say /first/dump. Now my question is should I create multiple dump directories for each location before exporting or can I omit directory attribute in expdp and specify the complete path in the FILE parameter itself.

    No. EXPDP needs the server component LOGICAL DIRECTORY. If you don't specify the directory, it will go to the default EXPDP path which will be mostly /rdbms/log. It's defined by the parameters DATA_PUMP_DIR.
    You will have to specify directory attribute if you want to point your dumpfile to go to any specific location and you cannot give the directory path in the file name in EXPDP (unlike conventional exp)

  • Failed to export using the options you specified. Please check your options

    Hi..
    i was using crystal report10.5 with visual studio 2008(c#)..
    now im migrated to visual studio 2010....and i have installed these setups http://www.sdn.sap.com/irj/boc/crystalreports and http://www.sdn.sap.com/irj/sdn/crystalreports-dotnet ...
    when i open my project it will ask to convert crystal reports and i have converted ...reports are working fine but in tool bar if i click and select a pdf format to export it will display a error message Failed to export using the options you specified. Please check your options and try again. and if i click on print button it is not working(i have set printmode=pdf)...when i was working on vs2008 both were working fine but in vs2010 it is not working..

    Hello,
    What type of app you are using? A win app will not have this option. Also what FW are you using? Have you made changes to the viewer(after migrating) and ensure that you are using the 13.0.2000.0?
    Take a look at [this|Export and print problem; thread, also.
    Thanks.

  • Exporting Using Expert Settings Problem

    When I try exporting using expert settings, which is pretty much necessary, any video that I export, in just about any format, but usually .mov or .mp4 looks very strange. Any moving objects appear to be broken up by horizontal lines. I do not know much about these sorts of issues, but I'm guessing it's a problem with the frame rate. I've tried just about every frame rate and nothing seems to work. Thanks for your help!
    P.S. Same thing happens when exporting from iMovie!

    It means the timeline settings. If your project is DV, then it will export a DV quality file. If your settings are Offline RT, it will export an offline RT formatted Quicktime...if they are 8-bit uncompressed, an 8-bit uncompressed QT...etc. And the same frame rate as well, 23.98, 29.97 and so on.
    It basically means that no further compression is occurring.
    Shane

  • Exporting using QuickTime informations

    I've a camcorder by Sony, HDR-CX305. It makes AVCHD files at 24Mbps data-rate.
    I have not problem to import and work with them but, for watching my movies on PS3, I use to export in MP4 with codec H.264.
    I don't know what number I have to use for best result. I've tried with 24000 kbps data-rate and it seems be good but I like to know from who has more experience with H.264 codec.
    If any person has best method to export on PS3 please, let me know it.
    Thank you.

    Try this.
    Export using QuickTime.
    Compression type mpeg4.
    Video options h.264, 1920x1080, data rate 16000 Kbps.
    For keyframes choose automatic or 24.
    You can adjust data rate up or down if you like.
    Message was edited by: AppleMan1958

  • FCP Export Using... vs. stand-alone Compressor

    Hi
    I have a 90 minute HD sequence in FCS2, which I'm now building test DVDs from. Not having used Compressor, I'm wondering which of the following workflows people recommend:
    - In Final Cut, Export Using Compressor, set up preset, and submit; or
    - In Final Cut, Export Quicktime, then in Compressor, import .mov and process
    In theory, are they doing the same thing? The "Using Compressor" export brings up a "Compressor Processing" window with frame numbers ascending pretty slowly, the progress bar is just a big barber-shop pole (it doesn't fill left to right), and there's no "expected finish time", so I don't know if it's really saving me any time. At least the Quicktime export gave me a nice progress bar and only took an hour or so.
    MacPro 2x2.66GHz, 4GB RAM, by the way.
    Sequence is ProRes HD (High) 1920 x 1080i.
    Any points of view welcome ... thanks!
    Matt

    Silal is correct - Export Using Compressor, especially with unrendered timelines, produces the best quality that Compressor has to offer when going .m2v because it forces Compressor to render directly into the MPEG-2 stream. Of course, this usually takes 3-5x as long as an encode of a reference movie.
    Before we had Color, many of us did color correction in FCP and that's really when it helped to use this process (export using Compressor, unrendered). Now that we have Color (and Color renders footage for us), this workflow is less appealing.
    Since you've got a Mac Pro, when exporting directly to Compressor, you can't use virtual clustering, so not only are you using a slower process, but you can't even make use of all your processors.
    In your case, since you're working in 1080 ProRes422 HQ, export a reference movie, crank up Frame Controls' Resize to Better, and make use of virtual clustering.

  • Exporting using exp and TRIGGERS=N doesn't  work

    Exporting using exp on version Export: Release 8.1.6.0.0 - with the option TRIGGERS=N stills exports with triggers. is it a bug ?
    Any sugesttions ?

    This is actually a known behaviour.
    As of table level export, all the dependent objects are exported and is expected namely, indexes, constraints, triggers... and even restricting with other parameters set to n will not disable their export.
    As of schema level export, the whole schema is exported and with this we can pose our restrictions like no constraints, no rows, no indexes, no triggers etc.. which will work because we have control.
    For table level export we dont have control on individual objects. 10g solves your problem.

  • Exporting using apple tv setting squashes picture from 16:9 to 4:3

    My project is in pal uk widescreen and when I export using the appletv preset it seems to squash the picture when opened in itunes and quicktime x. When I open it in quicktime 7 it's ok.
    With Quicktime x the inspector shows the dimentions as 720 x 576
    with Quicktime 7 the inspector shows the dimentions as 1024 x 576 (although in the format it says 720 x 576).
    Any suggestions to get it to work right in itunes so it runs correctly on the apple tv please.
    Thanks

    I found that I had the same problem when exporting to IPhone/IPod. The workaround that worked for me was exporting the movie to Quicktime Movie first and then importing this file into ITunes. Here you can make a version for IPhone/AppleTV etc. that will turn out to be in the correct format. This doesn't explain the underlying problem however.

  • Exporting using Compressor failed, and other awekward issues with FCP

    Hi FCP gurus! I need your help!
    Everytime I try to export using compressor, my submission fails.
    I even try a sequence a exported as m2v on Monday, but today is not working.
    Compressor will some times say "Unable to view preview, FCP is busy". When I press submit, it goes to Batch Processor but it either will immediately show FAILED or it will just not do any processing. When I quit and restart, then the submission appears as failed.
    Also when exporting, FCP comes back with a pop message saying that 4 files went offline. When I try to reconnect them it says: "There are not clips selected that have files associated with them". So, why is FCP constantly not able to fine this files, if they are not been used?
    I need to export a file for my soundtrack guy, and he needs MOV, preferable DV-PAL or Motion-JPEG or similar frame-based codecs. What are my options?
    In any case, what the problem here is that I CANNOT export anything. What shall I do? I already restarted the computer twice, nothing.
    I realized that I have files using in this project, saved in two different external harddrives, do you think this has anything to do with the issue?
    I am using FCP 5.1.4
    Thanks so much in advance!

    First off, fwiw, I never "send to compressor."  I export a self-contained QT movie, not a conversion.  Then I run that through compressor with the appropriate settings.  I like the self contained file, it becomes a master from which I can make all sorts of variations.  The only difference, in theory between self contained and reference, is that if for any reason you lose the render files the reference movie will not work.
    Q1 No.
    Q2 see above
    Q3  There is no such thing as uncompressed.  It's just a different codec rather than a perfect copy of your timeline.
    Q4 lots of reasons for making a conversion, but none of them are valid for making DVD's
    Q5  Nothing wrong with letting DVDSP make the encoding-- just be sure to get into the preferences for DVDSP and set the destinations to a folder for the project, so you don't overwrite any other projects.  Depending on how long the project is, you can let it encode in the bg while you set up your project, build the buttons etc.  It's all the same encoding engine, whether is is done in compressor or dvdsp.   I find it much faster to use compressor then to take to dvdsp becaue you can use quickcluster.
    Now a couple of questions for you:  what sort of footage are you using and what are your fcp sequence settings?

  • Exporting using Quicktime in imovie

    In iMovie, when trying to export project to make a Quicktime mov, I get an error message saying it doesn't find the imovie event. I've been storing it (and the clips) on an external drive. When I moved it to the main HD, it still can't find it. Do I need Quicktime Pro?... I'm just using the version 7 supplied with the iMac.

    In iMovie, when trying to export project to make a Quicktime mov, I get an error message saying it doesn't find the imovie event. I've been storing it (and the clips) on an external drive. When I moved it to the main HD, it still can't find it.
    To review the basics... iMovie '08 maintains its own resource database. This is likely needed due to the manner in which it names files during importation. While making "Finder" level changes to the name or location of you resources is immediately reflecting in the hard drive table of contents, such changes do not update iMovie's own internal database and iMovie '08 will no longer "see" them. Where the entire structure is moved manually and all data is left in tact, recovery may be as simple as just "pointing" the iMovie '08 "Event" window at the appropriate hard drive. Other changes, such as changing a filename in the folder may not so easily corrected.
    Since you indicate you chose the external drive for the storage location during the import process and made no mention of your "Events" not being visible in this window, as well as, not being available for editing, I would normally assume the internal "database" is not corrupted. In addition, since you stated in your previous posting that the pre-set export option worked correctly, I would tend to suspect your problem is in the "Export Using QuickTime" module itself or in the location/disposition of your "project" resources. You could, for instance, have a bad/corrupted install of the iMovie '08 software or attempted to change something in the "Project" package itself which may be a required parameter for communication by the "Export Using QT" module. These are just initial "guesses" on my part.
    Do I need Quicktime Pro?... I'm just using the version 7 supplied with the iMac.
    You shouldn't. iLife '08 has its own access to the QT "structures" embedded in the Mac OS and, while nowhere as extensive as the capabilities of QT Pro, do allow for many conversion work flows. You could, for instance, open a file previously shared to the "Media Browser" or exported to your hard drive using the "Export Movie" preset option in GarageBand and see it you can convert it to another QT compression format. If you can, it would tend to support the idea that your problem is limited to the single iMovie '08 export module and not the location of your resource files.

  • FCE crashes when export using Quick Time

    Hi All,
    When I select "Export - Using Quick Time Conversion", FCE crashes. I tried to repair permissions and rebooted but it did not help.
    Export using QT was working fine last week. I did some maintenance checks with Onyx over the weekend. Could it be the problem.
    Any suggestions for fix?
    Thanks.

    2007 MacBookPro
    Mac OSX V10.6.3
    2.2 GHZ Intel Core 2 Duo
    4GB RAM
    FCE Scratch Disk is an external 500GB drive (it has always been and it's been working fine the last 1.5 years) External drive is connected via FW800.
    In Final Cut, I use HDV1440X1080 1080i. Please let me know if you need any other settings.
    I use Quick Time V10.0 (113)

  • Schedule Daily Export Using Datapump

    Hi
    I want to schedule my datapump daily full export using the oracle database features,Such as Enterprise Manager,
    How can I do it?
    Please tell me complete Solution,cause I have tried it so many times But...
    Thank You In Advance

    hi hesam
    u should better go with the shell scripting and add the script as the cron job at the required time that will be better
    cronjobs :
    http://www.quest-pipelines.com/newsletter/cron.htm
    there are some problems that the exp commands will not work in the cronjobs
    try below
    or whatever your ksh shell is located.
    # ! / bin / ksh
    # setup the environment
    export ORACLE_SID=TEST
    export ORAENV_ASK=NO;
    . oraenv
    FILE_STUB=/u02/backup/$ORACLE_SID/exp_$ORACLE_SID_full
    exp system/manager file=$FILE_STUB.dmp log=$FILE_STUB.log full=y direct=y
    or, alternatively, you can setup your environment in your crontab:
    10 0 * * * (/bin/ksh "export ORACLE_SID=TEST; export ORAENV_ASK=NO, . $HOME/.profile; $HOME/your_export_script_goes_here.ksh")

  • Help needed!!! Exporting using compressor

    Hi!
    I´m exporting an animation using the option Export using compressor, since I have quite a few proyects to export. I do this in order to have a batch export. Everything goes all right, no errors or something strange, but whe i check the render file, the font that i´m using in the motion proyect has been substituted by another one.... WHY??????
    thanks!

    yup, I can confirm this problem -- you can't use a font that's activated using something like Suitcase Fusion -- I've tried double clicking the font and installed it into fontbook, no joy. I moved the font into my font library (root) and still no joy.
    I'm using a TTF -- should I be using an OTF or bitmap font? It's StartlingFont.

Maybe you are looking for

  • Extractor For VENDOR Blocked Invoices

    I have a requirement to create a report for Vendor aging report for Blocked invoices for which I need to do data modelling first. My questions are as follows 1) I found extractor 0FI_AP_4 for Vendor Line items. but I need following fields who blocked

  • How does the MDKP table gets updates

    Dear PP Guru's, I am new to SAP PP, We have a query that how does the MDKP table gets updates, Some time If we create new material by coping the material which is showing in table MDKP, But new material is not showing in table MDKP, Based on table MD

  • Data block's table layout complicate command button?

    Why after I create a data block's layout using table format, when I try to insert a command button into the canvas, the button always appear like a concatenated buttons (i.e. if I have 5 rows in the tabular format for displaying the data block, my co

  • Java Connectors

    Hello Experts, We have a real time requirement for getting data from r3 to bi and none of our data sources are delta enabled. So we are planning to use java connectors for this. I found that the SAP Query Connector could report realtime from BI or R3

  • I am trying to make Yahoo my home page I went to tools then opiton and done just what it said do but still it will not keep yahoo as my home page.

    I am trying to make Yahoo my home page. I go to tools and put www.yahoo.com as my homepage and but once I restart my computer the home page goes back to something else.