How to fix a missing datafile with status recover

Dear all,
We have Oracle 10 database. And we create a datafile by mistake, and also by mistake we drop the datafile.
Now the condition is, the datafile is missing but still mentioned in control file, and produce an error every time we do a backup since there's a file missing.
If we select from $vdatafile, the datafile status is recover.
We tried to offline the datafile, but its no help.
How to fix this?
Thanks.

Sorry to bump this thread again,
I tried to get the same error in a Oracle sandbox server.
I deleted a datafile, so i got a missing datafile, and then i offlined the datafile.
Then, i created a backup control file and deleted line that refer to the error datafile, and then run it as a sql script to create a new control file.
But when a new control file was created, the control file got a missing datafile and offlined it automatically.
This is the control file backuped to a trace file, please notice datafile DATA00001
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS  NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 292
LOGFILE
  GROUP 1 'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_58SZY41W_.LOG'  SIZE 50M,
  GROUP 2 'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_58SZY59P_.LOG'  SIZE 50M
-- STANDBY LOGFILE
DATAFILE
  'C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
  'C:\ORACLEXE\ORADATA\XE\UNDO.DBF',
  'C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF',
  'C:\ORACLEXE\ORADATA\XE\USERS.DBF',
  'C:\ORACLEXE\ORADATA\XE\DATA00001',
  'C:\ORACLEXE\ORADATA\XE\DATA00002',
  'C:\ORACLEXE\ORADATA\XE\DATA00003'
CHARACTER SET AL32UTF8
-- Take files offline to match current control file.
ALTER DATABASE DATAFILE 'C:\ORACLEXE\ORADATA\XE\DATA00001' OFFLINE DROP;
and so on...
This is the script to recreate
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS  NOARCHIVELOG
DATAFILE
  'C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
  'C:\ORACLEXE\ORADATA\XE\UNDO.DBF',
  'C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF',
  'C:\ORACLEXE\ORADATA\XE\USERS.DBF',
  'C:\ORACLEXE\ORADATA\XE\DATA00002',
  'C:\ORACLEXE\ORADATA\XE\DATA00003'
CHARACTER SET AL32UTF8
This is the result
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS  NOARCHIVELOG
DATAFILE
  'C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
  'C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\MISSING00005',
  'C:\ORACLEXE\ORADATA\XE\DATA00002',
  'C:\ORACLEXE\ORADATA\XE\DATA00003'
CHARACTER SET AL32UTF8
-- Take files offline to match current control file.
ALTER DATABASE DATAFILE 'C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\MISSING00005' OFFLINE;
and so on..
Edited by: Fendhy Ongko on Sep 11, 2009 12:16 PM

Similar Messages

  • Does anypne know how to fix the missing MSCVR80.dll file? Ive reinstalled itunes several timessysystem restores. Ive tried everything I can think of . Been sitting here all day and nightHELP!!!!!!!!!!!!!!!!!!!

    Does anypne know how to fix the missing MSCVR80.dll file? Ive reinstalled itunes several timessysystem restores. Ive tried everything I can think of . Been sitting here all day and nightHELP!!!!!!!!!!!!!!!!!!!

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • How to fix the .pdf file with error "invalid annotation object"

    how to fix the .pdf file with error "invalid annotation object"

    As long as the PDF opens, then just try saving it to a new file name. There may be a preflight script that would help troubleshoot the issue.

  • TS1412 any ideas about how to fix an iPod Nano with a white screen??

    any ideas about how to fix an iPod Nano with a white screen??

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • How to find out the projects with status "Invalid"?

    I'm new to Oracle Projects -OP. We are on 12.0.4. This' my new job.
    I have a task of "Remove projects with status 'Invalid' ".
    Questions:
    How to access the OP forms to verify the existent of the invalid projects?
    What are the PA tables having the status info -- I mean those showing the status with 'Invalid'?
    Thanks A lot.
    an apps dba

    I could not find a sample for the DELETE_PROJECT. I have coded the delete project by modifying the sample of the CREATE_PROJECT.
    -- delete a project with the status INVALID shown in pa_project_statuses.project_status_name
    --set serveroutput on size 20000
    DECLARE
      -- Variables needed for API standard parameters
      l_api_version_number          NUMBER := 1.0;
      l_commit               VARCHAR2(1) := 'F';
      l_return_status          VARCHAR2(1);
      l_init_msg_list          VARCHAR2(1) := 'F';
      l_msg_count               NUMBER;
      l_msg_index_out          NUMBER;
      l_msg_data               VARCHAR2(2000);
      l_data               VARCHAR2(2000);
      l_pm_product_code          VARCHAR2(10);
      l_responsibiity_id          NUMBER;
      l_user_id               NUMBER;
      l_pm_project_reference     PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
      l_pa_project_id          PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
      API_ERROR               EXCEPTION;
    BEGIN
    -- GET GLOBAL VALUES
      select user_id, responsibility_id
        into l_user_id, l_responsibiity_id
        from pa_user_resp_v
       where user_name = 'J23N';          -- need to get from Apps
    --SET GLOBAL VALUES
        pa_interface_utils_pub.set_global_info(
        p_api_version_number     => 1.0,
           p_responsibility_id     => l_responsibiity_id,
           p_user_id          => l_user_id,
        p_msg_count          => l_msg_count,
           p_msg_data          => l_msg_data,
           p_return_status          => l_return_status);
    -- PRODUCT RELATED DATA
      l_pm_product_code := 'R_INVALID';           -- can be user defined
    -- PRODUCT DATA (PROJECT_IN_REC_TYPE)
       l_pm_project_reference.pm_project_reference := null;
       l_pa_project_id.pa_project_id := 1001;
    --INIT_CREATE_PROJECT
      --pa_project_pub.init_project;
      dbms_output.put_line('Before delete_project');
    --DELETE_PROJECT
      pa_project_pub.delete_project(
         p_api_version_number => l_api_version_number,
         p_commit                    => l_commit,
         p_init_msg_list         => l_init_msg_list,
         p_msg_count                => l_msg_count,
         p_msg_data                  => l_msg_data,
         p_return_status         => l_return_status,
         p_pm_project_code       => l_pm_product_code,
      p_pm_project_reference => l_pm_project_reference,
      p_pa_project_id         => l_pa_project_id 
    -- Check for errors
      if l_return_status != 'S'
      then
        raise API_ERROR;
      end if;
      dbms_output.put_line('Deleted Project Id: ' || l_pa_project_id.pa_project_id);
      --dbms_output.put_line('Deleted Project Number: ' || l_project_out.pa_project_number);
      Commit;
    --HANDLE EXCEPTIONS
    -- Get the error message that were returned if it did not complete sucessfully
      EXCEPTION
      When API_ERROR then
        dbms_output.put_line('An API_ERROR occurred');
        if l_msg_count >= 1
        then
          for i in 1..l_msg_count loop
            pa_interface_utils_pub.get_messages(
              p_msg_data      => l_msg_data,
              p_encoded     => 'F',
              p_data           => l_data,
              p_msg_count      => l_msg_count,
              p_msg_index_out => l_msg_index_out);
            dbms_output.put_line('error message: ' || l_data);
          end loop;
          rollback;
        end if;
      When OTHERS then
        dbms_output.put_line('An error occured, sqlcode = ' || sqlcode);
        if l_msg_count >= 1
          then
          for i in 1..l_msg_count loop
            pa_interface_utils_pub.get_messages(
              p_msg_count      => l_msg_count,
              p_encoded     => 'F',
              p_msg_data      => l_msg_data,
              p_data           => l_data,
              p_msg_index_out => l_msg_index_out);
            dbms_output.put_line('error message: ' || l_data);
          end loop;
          rollback;
        end if;
    END;Can anyone with the experience of PA_PROJECT_PUB make comment on this Delete Project block? On the struncture level is it correct?
    I run it and get
      pa_project_pub.delete_project(
    ERROR at line 48:
    ORA-06550: line 48, column 3:
    PLS-00306: wrong number or types of arguments in call to 'DELETE_PROJECT'
    ORA-06550: line 48, column 3:
    PL/SQL: Statement ignored
    Please make your comment on the structure (the logic)  of the delete project before providing the advice on the debug.
    I would like to make sure the logic is correct first.
    TIA

  • How to reverse/change SRM PO with status "transaction completed"

    We use Extended Classic scenario in our company.      There is a PO has outstanding G/R balance,   but user accidently hit the button "complete"on this PO  in SRM ,   in result the PO has been completed with status "transaction completed".    And nothing can be performed on this PO.   
    G/R balance is out there and now it has financial impact as it blocked the funding thru internal order. 
    Anyone have idea how we can resolve this problem.    Can we reverse/change the PO status?   Please note G/R canu2019t be entered in ECC as restricted.  
    Thanks,
    Frieda

    I think it was CRM_JEST. But the way to easily select the correct entries:
    1. Go to transaction BBP_PD
    2. Enter BUS2201 and the order number
    3. Double click on the status table, this will take you to SE16 with all the different status for the PO
    4. Select the entry to delete
    5. Enable debugging by putting /h into the transaction field
    6. Double click "CODE" and change this to "DELE"
    7. F8 (leave debugging)
    8. Click on the delete icon and save.
    Done.

  • How to delete a PS network with status 'Technically Completed' (TECO)?

    Dear all,
    We have Webdynpro application, which will create a PS network in background. In the past it was working fine and many PS network  are created. Now we have a scenario where some of the networks which are with status 'Technically Completed' (TECO) needs to be deleted from system. I tried to delete it from CJ20N, but it was not possible as the status is set to TECO. Please let me know how to delete a PS network which is with status 'Technically Completed'  (TECO).
    Thanks in advance.
    Regards,
    Vijay

    The cluster goes out and finds all networks that are available.  This is an automatic process.  As long as there is a network there, it will show it.  If you don't want it to show, disable the interface and it will disappear.
    . : | : . : | : . tim
    Thanks a million Tim! Disabling the correct interface made it disappear!
    Actually, I had disabled the interface before I started this thread. When you posted the suggestion, I went back and looked at the network connections again and found out that I had disabled the wrong interface! My bad!
    However, here is the interesting thing:
    After I disabled the NIC and it disappeared from the FCM I physically disconnected its cable (actually I disconnected all unused / unconfigured NICs) ....then I re-enabled it. Now I see that FCM does NOT pick it up again.
    I think FCM picked up those NICs because at one time I had put that NIC in the production VLAN (from the switch side).
    One observation:
    If you have NICs in a HV machine which are not connected to a switch, they do NOT show up in FCM. Once you connect them to some network, they start showing up. I guess by connecting them to a network, they are able to see NICs in other HV nodes.
    Take a look at this screenshot. I have 6 NICs in there which are disconnected, none show up in FCM
    -Rajeev rajdude.com

  • Has anybody figured out how to fix the battery consumption with mountain lion (using a MBP 13")?

    I upgraded to Mountain Lion, and yes despite all of the warnings posted in the App Store reviews about the battery life being cut in half, I upgraded my MBP anyway. Chalk this one up to the Black Cloud of "I Told You SO!" My MBP could hold a charge for almost 6.5 hours. Now I'm luck if I can get 3, but in most cases I may get 2.5 hours if I'm conservative.
    Has anyone figure out how to fix this battery problem? Even now after having it unplugged for almost 2 hours...I'm getting the "You are now running on reserve battery power" message. What a freaking joke!
    Any help would be greatly appreciated!

    Open /Applications/Utilities/Activity Monitor.  Click %CPU until the triangle points down beside it.  Make sure it says All Processes in the upper right.  Check for applications taking up lots of CPU time.

  • DATAFILE SYSAUX ---- STATUS RECOVER

    Database Version : 10.1.0.2.0
    OS System : Window 2003 Server
    SQL> SELECT FILE#, STATUS FROM V$DATAFILE;
    FILE# STATUS
    1 SYSTEM
    2 ONLINE
    3 RECOVER
    4 ONLINE
    5 ONLINE
    The following datafiles are offline immediate:
    D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB02\SYSAUX01.DBF (3)
    What should i do.....for correction....
    reply plz.

    Is it running under archivelog mode????
    check and post the output of.
    SQL>  select * from  v$recovery_log;
    SQL>  select * from  v$recover_file;

  • Missing IDOCS with status "qRFC used to send IDoc to SAP system"

    We are running ECC6.0 (HR System) and are sending IDOCS to XI (PI7.0 SP10)for mapping before they end up in a 4.7 system.
    We have implemented the Queue processing here: /people/community.user/blog/2006/11/04/how-to-serialize-idoc-xml-messages-fed-into-xi
    We have two queues set up for different countries (Eurpoean roll out) and they have different Message Types for the same Logical System. 
    We have been getting serialitazion issues due to IDOCS not being sent, although they are showing in ECC6.0 as sent, they have not hit XI or subsequently the Target System.
    On the whole, this has worked well for a while, but over the last week, something has effected the consistency of the correctly sent IDOCS.  We had an update error with the Update Work Process, which left lots of short dumps, but this was fixed, but since then, we are getting these strange anomalies.
    I appreciate this strange behaviour, but has anyone come across this before?
    More an SAP than an XI issue, I think....  But as I appeciate your repsonses I added it here!  

    Hi Barry,
    03 does not mean the idoc is delivered, it does only mean that it was sent to port.
    The status that indicates that the idoc was delivered is 12 (idoc dispatched).
    For getting this status a report named RBDMOIND has to be run/scheduled.
    After this if the status becomes 12 the idoc is delivered otherwise if it is still 3 that means the idoc is still there.
    Regards,
    Sergio

  • How to fix icons missing?

    Hi
    I have MacBook Pro Retina 15 with 16 GB RAM.
    And I did stupid thing, I just turn off the swap file and using for a day my laptop. On the next day when I open my macbook, navigation icons in safari, finder, and in others apps, just dissapear. (system icons, like +/- and arrows, in finder all lest side dissapear and many others)
    Then I turn on swap file back, and restart. But is't not helpd.
    I tried just reinstall system and it helpd for half of day.
    I tried to restore permissions, for account and fully.
    I tried reset the VRAM.
    I tried to reboot in verbose mode
    I tried some more things
    And one more interesting thing, I checked Keychain and it has alot duplicates of my login.
    Please help me to fix it.
    I created the another one user and it's ok, but when I login in to previous it still without icons.
    But I want fix old one, because it has alot of custom things.
    Many thanks!

    Boot up holding command-r keys into your Recovery Volume.
    The screen should give you these choices...
    Restore from TM backup
    Reinstall Mac OS X
    Get help online
    Disk Utility
    First run Disk Utility Repair Disk, if you get errors run until no errors reported or reports "the disk cannot be fixed". Then, choose Reinstall OS X. This will be an install "in place" and shouldn't effect any of your own data or settings.
    Be sure you have or make a good backup or make one.
    EDIT: Oh wait... the other user is okay. I can't understand how missing swap files would effect only your own user.
    Did you delete from private/var/vm?

  • How to fix Online help issue with F1

    Dear All,
    I think you already know this issue : when using a proxy, Online help is not working on Adobe Reader XI.
    message displayed : "Online Help content cannot be displayed. Verify you can launch your web browser and have access to the Internet."
    I already checked on this forum and tried some things to fix this, but without any success :
    - try to add the registry key FeatureState -> not working
    - check if IE is correctly defined as default browser -> it is
    Accessing Online help from the Help menu was by passed by the following .js :
    app.addMenuItem({
    cName: "MyHelp", cUser: "Adobe Reader XI Help...",
    cParent: "Help",
    cExec: "app.launchURL('http://helpx.adobe.com/reader.html');",
    nPos: 0
    But, the message still appears when pressing F1 shortcut.
    Details : Adobe reader 10.0.06 packaged through an administrative installation et customized with Adobe Customisation Tool
    I tried to install directly from the setup.exe to be sure that was not caused by my package, and the issue is still the same.
    I'm an application packager for the European Court of Auditors and we want that Help works through F1 shortcut. This is mandatory for me.
    Thank you in advance for your help.

    Timo Hahn wrote:
    There is a problem with autoHeightRows and columnStretching used together in 11gR1.
    Have you tried without columnStretching?
    Or have you tried if it works in 11gr2?
    TimoHi Timo, Thank you very much for taking time to respond to my question.. :)
    Back to my question...
    I tried removing the columnStretching although my requirement really requires this but no effect really happens even if I remove this.
    Based on my investigation on the generated HTML, I notice the following items:
    1. A table is being wrapped in a div that is being set at a fixed height.
    2. On first load, if your autoheight rows is set to 6, the framework is setting a height of 96px to the div. This height would almost cut the last row of the table.
    3. If you try to refresh the page or try to re-PPR the component, the framework resets it to 102px which causes the last row to be fully displayed.
    My only concern is that IE is perfectly displaying this while Chrome and FF are having problem.
    Based on my understanding, the framework is messing up the height only on first load. Not sure but this is how I see it. I am really not confident also on my findings
    and I would most likely hear other's comment.
    Thanks.

  • How to cancel messages in SXMB_MONI with status "No receive found"

    Dear All,
    I need to cancel message with error status as mentioned in captioned subject.
    Can you please guide me how to do it?
    Regards,
    Saras Jain

    One more thing to check.....confirm if there is any background job scheduled to cnacel the message once it goes into error....if it is cancelled in this manner...if so you wont be allowed to cancel the (already cancelled) message manually
    Regards,
    Abhishek.

  • How to fix "Modifying a column with the 'Identity' pattern is not supported"

    When doing Code First Migrations my mobile service always errors in the seed method with: 'Modifying a column with the 'Identity' pattern is not supported. Column: 'CreatedAt'. Table: 'CodeFirstDatabaseSchema.Methodology' for the CreatedAt column. All my
    models inherit from EntityData. 
    // Sample model
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using Microsoft.WindowsAzure.Mobile.Service;
    namespace sbp_ctService.Models
    public class Methodology : EntityData
    public Methodology()
    this.Scenarioes = new List<Scenario>();
    public string Id { get; set; }
    [Required]
    [StringLength(50)]
    public string EntryMethod { get; set; }
    [Required]
    [StringLength(50)]
    public string TestDirection { get; set; }
    [Required]
    [StringLength(50)]
    public string PassCriteria { get; set; }
    [Required]
    [StringLength(50)]
    public string Dependency { get; set; }
    public bool ExtraInfo { get; set; }
    public virtual ICollection<Scenario> Scenarioes { get; set; }
    And in my Configuration.cs file during an update here's my seed method:
    protected override void Seed(sbp_ctService.Models.sbp_ctContext context)
    // This method will be called after migrating to the latest version.
    context.Methodologies.AddOrUpdate(
    m => m.Id,
    new Methodology { Id = "Methodology1", EntryMethod = "P/F", PassCriteria = "P/F", Dependency = "None", ExtraInfo = false, TestDirection = "Round" },
    new Methodology { Id = "Methodology2", EntryMethod = "P/F", PassCriteria = "Best", Dependency = "None", ExtraInfo = false, TestDirection = "Round" },
    new Methodology { Id = "Methodology3", EntryMethod = "P/F", PassCriteria = "Best", Dependency = "None", ExtraInfo = false, TestDirection = "In/Out" },
    new Methodology { Id = "Methodology4", EntryMethod = "P/F", PassCriteria = "Best", Dependency = "None", ExtraInfo = false, TestDirection = "Out" }
    For some reason on an update the CreatedAt field is created and given a value of null. So of course on an insert/update it will error because CreatedAt is an Identity field.
    I've tried to configure the modelBuilder in my context to tell it that CreatedAt is an identity field, but that still doesn't work.
    modelBuilder.Entity<Methodology>()
    .Property(m => m.CreatedAt)
    .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
    So far the only way to fix this is by commenting out my Seed data, but it's not a fix. I've seen other solutions where you can force it to not serialize certain fields, but I don't know if those solutions apply.

    So I think this occurs because you might have created the database (Code-first) with POCOs that didn't have the CreatedAt field in them. I think that's what I did and the easiest way to fix it for me was to delete my database and re-create it with my POCOs
    inheriting from Entity Data from the very beginning. We were still in development so it worked out for us but I know some people might not be able to do that. Here's what my table looks like after it was created correctly:
    USE [database_name]
    GO
    /****** Object: Table [sbp_ct].[Methodologies] Script Date: 2/24/2015 9:48:45 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [schema_name].[Methodologies] (
    [Id] NVARCHAR (128) NOT NULL,
    [EntryMethod] NVARCHAR (50) NOT NULL,
    [TestDirection] NVARCHAR (50) NOT NULL,
    [PassCriteria] NVARCHAR (50) NOT NULL,
    [Dependency] NVARCHAR (50) NOT NULL,
    [ExtraInfo] BIT NOT NULL,
    [Version] ROWVERSION NOT NULL,
    [CreatedAt] DATETIMEOFFSET (7) NULL,
    [UpdatedAt] DATETIMEOFFSET (7) NULL,
    [Deleted] BIT NOT NULL,
    [Name] NVARCHAR (MAX) NULL
    GO
    CREATE CLUSTERED INDEX [IX_CreatedAt]
    ON [schema_name].[Methodologies]([CreatedAt] ASC);
    GO
    ALTER TABLE [schema_name].[Methodologies]
    ADD CONSTRAINT [PK_schema_name.Methodologies] PRIMARY KEY NONCLUSTERED ([Id] ASC);
    Does yours look something like that?

  • HOW TO FIX LOGIC PRO CRASHES WITH NEXUS PLUGIN ON MAC OS X 10.6.8 !! =)

    After updating my Mac OS X to 10.6.8, my Logic Pro would always crash when opening a project file that uses the Nexus (version 1) plugin...
    I spent hours upon hours, LONG DAYS AND NIGHTS trying to resolve the issue searching all over the internet for solutions and NOTHING helped besides the suggestion to upgrade to Nexus 2, which was not possible for me, or downgrade my OS X to 10.6.7 ...which wouldve been a very annoying procedure for me...
    SOOOOO....
    I dont know why, but my instincts told me to try this solution, out of hope, and it WORKED!!
    So i felt like it was my duty to help my fellow Logic Pro users/producers with this annoying problem!!
    You can thank me by checking out my music @ FAMEisFAMOUS.com and adding me at:
    -Twitter.com/FAMEisFAMOUS
    -Facebook.com/AiricFame
    HERE'S WHAT YOU DO:
    --GO TO APPLICATIONS
    --AND SIMPLY MOVE (DRAG) THE ReFX FOLDER TO YOUR DESKTOP (OR ANY OTHER FOLDER YOU'D LIKE, AS LONG AS ITS NOT IN YOUR APPLICATIONS FOLDER)
    --NOW OPEN LOGIC PRO AND TRY USING THE NEXUS PLUGIN
    --IT'S GOING TO ASK YOU TO LOCATE THE "0TestTone.nxs" FILE
    --NAVIGATE TO THE LOCATION ON YOUR MAC WHERE YOU MOVED THE REFX FOLDER
    --OPEN THE NEXUS FOLDER / SAMPLES / ROM /
    AND THERE YOU WILL FIND THE "0TestTone.nxs" FILE
    --ONCE YOU APPLY THAT, TRY TESTING THE SOUNDS IN THE PLUGIN AND IT SHOULD BE WORKING FINE!
    --NOW EVERYTIME YOU SAVE, AND REOPEN LOGIC YOU SHOULD BE GOOD TO GO!!
    Hope this works for you like it did for me...
    Much Love!,
    -Airic Fame
    FAMEisFAMOUS.com

    Hi Airic Fame!
    I had just the same problem and tried your way to fix it. WORKED PERFECTLY!!!
    thousend thanks!!!!  you're a Genius!!
    Martin

Maybe you are looking for