Reserved fields in the catalog record have incorrect data???

I inserted the orginal installation disk for the Mac mini. I ran the verify disk. Then nine of these messages in red showed - "Reserved fields in the catalog record have incorrect data." I then did repair disk and now it shows that 1 volume could not be repaired. I have the MiniStack as well. I am assuming that the Hard Drive is the one needing repair. Not the MiniStack which also has OS installed along with Classic. How can I fix the disk? How important is the message in red?

You have directory damage.
Use Disk Warrior to repair the drive: http://www.alsoft.com
Explanation of what directory damage is and what causes it: http://alsoft.com/DiskWarrior/details4.html
The other option is to wipe your drive and re-install everything.

Similar Messages

  • FYI DU error:"Reserved fields in the catalog record have incorrect data"

    I had a very perplexing problem...
    My iMac G5 was shutting down by itself so I took it to Apple and had the power supply replaced. After it was repaired I was concerned about the hard drive health after the unexpected shutdowns. So I ran Disk Utility and encountered the following...
    The iMac G5 is running OS 10.4.6.
    I ran "Repair Disk Permissions" from Disk Utility and encountered no errors.
    I ran "Verify Disk" from Disk Utility on the drive and I get these results (copied from DiskUtility.log):
    Verifying volume “TheDisk”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Reserved fields in the catalog record have incorrect data
    Checking volume bitmap.
    Checking volume information.
    The volume TheDisk needs to be repaired.
    Error: The underlying task reported failure on exit
    Disk Utility stopped verifying “TheDisk” because the following error was encountered:
    The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    This occurs whether I run it while booted from the hard drive or the restore disc. While booted from the restore disc, running repair disc indicates that the failure could not be fixed.
    Booted from the hardware test disc and all tests passed.
    Booted from TechTool Pro disc and all the tests passed.
    Booted from Disk Warrior (had to get the "free" update to boot my iMac G5) and rebuilt directory. No errors reported.
    Still same error reported in Disk Utility. ???
    Booted iMac in 'safe' mode. Rebooted iMac normally.
    Disk Utility now reports success!

    Sorry but this is not assistance to you but an additional request for help from someone!!!
    I had the same thing occur just now!!!! I have used everything in site and keeps returning............
    Hope someone has an answer as to why this occured....

  • To plugin developers: can I have access to any metadata field of the catalog in Print Module?

    Dear LR plugin developers,
    Maybe one of you has already implemented such a feature, maybe I can entice you to do so, if several people find this useful?
    Is there a forum for plugin feature requests? If so, forgive me for using this general user-to-user for this. Or would you look on the Adobe feature request forum for such input?
    I would like to have access to any metadata field of the catalog in Print module, ok if for all LR standard catalog fields, preferable if also for custom fields created by other plugins.
    I would want to add such a field underneath each image on a print page, e.g. something like complete exposure info.
    Doing so in export in a "Mogrify-like" way would also be ok, if metadata accessible. Fixed custom text obviously would be cumbersome, as limiting to 1 image to export at a time. Creating jpgs in export is ok,
    Print module would be preferable as I was hoping for more than one image per page=jpg.
    Now if such text could even be placed anywhere on a print template, possibly containing also free text, and formatable - you would have corrected the basic design flaw of the Book module imo...
    Cornelia

    Cornelia
    The problem one faces is that the SDK does not access Print or Book. You'll need to (ab)use the fields that are available, and I'd suggest you look at my Search and Replace plugin which can transfer values between fields. So you could move info from an inaccessible field to one that can be printed. Maybe use virtual copies which you can just discard afterwards?
    John

  • Mandatory fields in the Conditio Records

    Hi,
    The question is;
    When we maintain the condition record for pricing, we find that certain fields are mandatory and certain fields are not mandatory in a key combination.. Where and how is the mandatory setting set to the fields?
    Thanks in advance,
    Fazal

    Hi Fazal,
    All the fields of the condition record are mandatory. Once u define the fields in the condition table, they become mandatory in the condition record.
    For ex. if my condition record consists of Customer, material, and sales orgn, then i need to maintain all the fields in the condition record with out which the condition record will not be found.
    Cheers,
    Hi Anil,
    Considering your example of a table consisting of fields Customer, material, and sales orgn; when i go to VK12, enter the condition type and select the key combination consisting of the above fields, the sales org would be mandatory or the sales org and the customer would be mandatory fields and material would not be mandatory before execution.
    If I give the material details then the specific condition record is the output, but if the sales org is the only mandatory field and i enter that and execute then it gives me a huge list.. Now, my question is how do you make this feild (sales org) mandatory or rather see it a mandatory entry in the VK12 screen???
    Regards
    Fazal

  • I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup

    I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup from last Friday, I go to my Lightroom Backups folder - and the most recent one showing not only isn't yesterday, it's OCTOBER 28 !?? Where the hell are the daily backups between October 28 and November 14?

    Oh wow - JET LAG strikes agin - my apologies; I have located the missing weeks of back-ups. After getting home from a 30-day trip to Europe, I had changed the location of my LR catalog back-ups to an external drive, and forgot that I did that. I have found them, and all is good. Never operate Heavy Machinery without enough rest. Cheers

  • To find the date type fields in the row and validate those date fields

    TYPES : BEGIN OF TY_MARA,
              MATNR TYPE MARA-MATNR,
              ERSDA TYPE MARA-ERSDA,
              ERNAM TYPE MARA-ERNAM,
              LAEDA TYPE MARA-LAEDA,
              MTART TYPE MARA-MTART,
            END OF TY_MARA.
    DATA : it_mara TYPE STANDARD TABLE OF ty_mara,
          it_mara1 TYPE STANDARD TABLE OF ty_mara,
           wa_mara TYPE ty_mara.
    loop at it_mara into wa_mara.
      describe field wa_mara-ersda type c_data.
    if c_data eq 'D'.
      CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
        EXPORTING
          date                            = wa_mara-ersda
       EXCEPTIONS
         PLAUSIBILITY_CHECK_FAILED       = 1
         OTHERS                          = 2
      IF sy-subrc eq 0.
    wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
        else.
            wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
      ENDIF.
      endif.
      endloop.
    This issue regarding how to find the date type fields in the row and validate those date fields.If its not a valid date ,i have to assign initial value to that.
    I've tried that for single field using describe field.Please help me do that for all fields.

    Hi Sam,
     I believe we had discussed the same issue in the below thread. Can you please refer the below one?
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d93e16ff-c123-4b36-b60b-60ccd34f6ca7/calculate-time-differences-in-infopath?forum=sharepointcustomizationprevious
    If it's not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • How do I stop Mavericks from using the Internet, I have a DATA PLAN LIMIT!

    Since installing Mavericks on our 2 iMacs our DATA PLAN is overused. Over 1.5 to 2.5 GB PER DAY! This is unacceptable!
    How do I stop Mavericks from using the Internet, I have a DATA PLAN LIMIT!
    HELP!

    Have you seen this thread…
    https://discussions.apple.com/message/23826437#23826437
    The short story is that the new 'certifcate checking' system could be downloading large amounts of data, you can turn it of as follows…
    clockworkapps wrote:
    Turning off CRL & OCSP checking in the Certificates Preferences in Keychain Access solved the problem.
    You can do as others have done, install Little Snitch & use the Network Monitor to view what is happening, that thread has some good advice. http://www.obdev.at/products/littlesnitch/index.html
    @Topher, Activity Monitor is a bit pants for tracking processes that respawn or just go away (I assume its because it's an on-demand job, have you got a nice article on 'mach services', Linc confused me !? ).
    ocspd seems to do that in my limited testing,
    Little Snitch is the easiest way to monitor & you can get away with the free demo for long enough to test if funds are tight.

  • Changing the attibutes of a field in the table will affect existing data

    Hi Experts,
    If I want to changne the field attribute of particular field in the table, this table whoes field is changed is used in 15 more tables.Will that affect the data in production after changing the field attributes in all the 15 tables.
    Thanks in Advance.
    Regards,
    IFF

    Hi,
    Definitely data will effect in all tables and also you have to modify all the programs which are used modified tables.
    Regards,
    Peranandam

  • How to add a custom field to the "Projects" page "Group by" data menu list

    Hi,
    I'm deploying Project Online and I want to group projects by a custom field on the "Projects" page. Currently I can see options for group by Project Name, Start, Finish, % complete etc. I would like to group by a custom field of programme name
    which is filled in on the Project Details form.
    I can create the enterprise field etc, however I can't work out how to make the new enterprise field appear in this list. Or am I barking up the wrong tree and should be creating separate Project Types for each programme?
    Any help an advise greatly appreciated.
    Regards,
    Conrad

    Hello, add the programme field to the Project Center view then it will be available to group by. Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Photos uploaded to facebook have incorrect date in iPHOTO

    I found about 30 events in iPHOTO with a single photo in them.
    I panicked - thinking all the remaining photos from each event were missing.
    Then I noticed every single event had the same date - Jan 1, 2013 - even though all of the photos were from earlier dates.
    Finally I noticed that these seem to be photos that were originally in iPHOTO and had been uploaded to Facebook from iPHOTO (again- these photos were all uploaded BEFORE Jan 1, 2013) .
    Does anyone know what is going on here?
    Thanks

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • How do I export a video so I can still edit it in the future and have all data (no compression)

    I am super new to Premiere Elements and video in general so my question is probably a no brainer.  I am taking parts of a video and exporting them out so I can come back later and edit them.  When I try this the dimension is changing even though I'm checking 1080x720.  It's also losing quality.   I'm a wedding photographer (not videoagrapher) and don't know the correct terminology to use.  This is for a family wedding I did where I also experimented with video.  Basically what I would like to do is take the "raw" clips and grab the scenes I want, export them and bring them back at a future time and edit them without losing quality.
    I have tried researching this and am so frustrated.  I just can't figure this out.  Thank you in advance to anyone who can point me in the right direction. 

    clarkiek
    Thanks for the reply. From your screenshot, I cannot be sure if you are using Premiere Elements 12 or 11 (very similar) on Windows. So, for now I will assume Premiere Elements 12 on Windows 7, 8, or 8.1 64 bit.
    From your screenshot, it would appear that your source is
    1920 x 1080 @ 23.976 progressive frames per second
    So, you or the project should have set a project preset of
    NTSC
    DSLR
    1080p
    DSLR 1080p24
    If the program was allowed to set the project preset based on the properties of the first video drag from Project Assets to Timeline, we can find out if it did it "right". Sometimes it does not. To do this...Edit Menu/Project Settings/General. And, if the Project Settings look like the following screenshot, the program set the project preset correctly:
    If you do not see the above, then new project whose project preset you set manually before you import your video.
    To do that...
    In Expert workspace, File Menu/New/Project and Change Settings.
    Change Settings to NTSC/DSLR/1080p/DSLR1080p24
    Before exiting that area, be sure to have a check mark next to "Force Selected Project Settings on This Project" in the new project dialog.
    Now the big question, what to export this TImeline to so that the export will be part of a family of exports to joint a grand project. If you know that all you want as the destination is NTSC DVD-VIDEO Widescreen on DVD disc, then you can export each TImeline as a DV AVI Widescreen file (Publish+Share/Computer/AVI with Presets = DV NTSC Widescreen. When all is said and done, all these DV AVI Widescreen files will be imported in a new Premiere Elements 12 NTSC DV Widescreen project for burn to with Publish+Share/Disc/DVD disc with NTSC _Widescreen_Dolby DVD preset.
    Alternative way, if you had HD plans for this edited video on this Timeline, could be
    a. Project Preset - set as before 1920 x 1080p24
    b. Export as Publish+Share/Computer/AVCHD with Presets = MP4 - H.264 1920 x 1080 p24
    c. Combine all the individual .mp4 into one grand project (project preset = 1920 x 1080p24) with a destination for
    DVD-VIDEO Widescreen on DVD disc
    or
    AVCHD format on DVD disc
    or
    Blu-ray disc format on Blu-ray disc.
    You wrote
    In mpeg I used preset HDTV 1080p 29.97 high quality and it seems to save it just fine.  But can I bring these files back in and edit with non-destructive editing?
    This would be a Publish+Share/Computer/MPEG choice (MPEG2 HD.mpg 1920 x1080p29.97 versus what I described as an alternative Publish+Share/Computer/AVCHD choice (AVCHD.mp4 1920 x 1080p24). The project preset for the grand project might be:
    for 1920 x 1080p29.97, NTSC/DSLR/1080p/DSLR1080p30 @ 29.97
    for 1920 x 1080p24, NTSC/DSLR/1080p/DSLR1080p24
    Irrespective of the frame rate along the line, in the end, burn to presets are standarded at @29.97 interlaced frames per second.
    Please review and consider. If I did not explain clearly enough, please let me know, and I will rewrite if need be.
    Thanks.
    ATR

  • Collection is populated, but HALF of the total records have null values?

    can anyone see why this may not be working properly. I am creating a collection (CATCH_C) based on the number of rows in an existing collection (EFFORT_C). For every record in EFFORT_C, there needs to be one in CATCH_C.
    In my example, I know that there are two EFFORT_C records. There are 12 records in the table FREQUENT_SPECIES, therefore, my CATCH_C collection should (after running through loop) have 24 records.
    CATCH_C is created with 24 records, however record numbers 16-24 only have the data for disposition_code. The other data is all missing...however rows 1-15 are perfect. Any thoughts?
    thanks! Karen
    <p>
    open effort_x;
    fetch effort_x into effort_nbr;
    close effort_x;
    for x in 1..effort_nbr
    LOOP
    for y in (select 1,
    species_itis,
    disposition_code,
    null reported_qty,
    unit_measure,
    null sale_disposition_flag,
    price,
    null permit_id,
    market_code,
    grade_code, null
    from FREQUENT_SPECIES
    where permit_id = :G_PERMIT_ID order by fav_order, species_itis, market_code)
    LOOP
    l_seq_id := apex_collection.add_member(
    p_collection_name => 'CATCH_C',
    p_c033 => x,
    p_c034 => y.SPECIES_ITIS,
    p_c035 => y.DISPOSITION_CODE,
    p_c036 => null, --reported qty
    p_c037 => y.unit_measure,
    p_c038 => '0', --sale disp
    p_c039 => y.PRICE,
    p_c040 => pPermitID,--permit id
    p_c041 => y.MARKET_CODE,
    p_c042 => nvl(y.GRADE_CODE,'999'),
    p_c043 => null,
    p_c044 => null,
    p_c045 => null);
    end loop;
    end loop;
    </p>

    I thought I had resolved as it seems driven by pagination....but alas (while pagination is odd), the disposition code still appears for every collection record...but the other data does not. again, any thoughts are appreciated.

  • QoS fields in the CMR records are always "null" in CUCM 10

    Hello,
    My name is Huyen
    I configured CDR Enabled Flag "True", Call Diagnotics Enabled "Enabled Only when CDR Enabled Flag is True", unchecked "Load CDR only" in CAR
    but I can not see QoS field in call detail such as: jitter, latency, packet loss.
    I use 7821 IP Phone and device protocol is SIP, CUCM version 10.5
    Can you help me to troubleshoot it???
    Thanks you!

    Thank you guys for repling.
    I thought that was the problem, but I dont really
    know what values Object P takes.P can be anything you like but
    P = new Object();is probably fine for your purposes.
    Also I think the output should begin from 0 to 10.Okay. I have no idea what you are talking about here but I'll agree with you.

  • Fielding in the input record is delimited by comma and assign to local vari

    Dear All,
    Please help me on below query .thanks in advnace
    Declare
    l_sub VARCHAR2(100) := 'a,b,c,d,.......Z';
    l_1 VARCHA2(1);
    l_2 VARCHA2(1);
    l_3 VARCHA2(1);
    l_4 VARCHA2(1);
    l_26 VARCHA2(1);
    BEGIN
    I want to fetch the each value separated by comma to the local variable
    l_1 = 'a'; l_2 = 'b'; l_3 = 'c'; l_4 = 'd'; ..... l_4 = 'Z';
    END;

    YKING wrote:
    Dear All,
    Please help me on below query .thanks in advnace
    Declare
    l_sub VARCHAR2(100) := 'a,b,c,d,.......Z';
    l_1 VARCHA2(1);
    l_2 VARCHA2(1);
    l_3 VARCHA2(1);
    l_4 VARCHA2(1);
    l_26 VARCHA2(1);
    BEGIN
    I want to fetch the each value separated by comma to the local variable
    l_1 = 'a'; l_2 = 'b'; l_3 = 'c'; l_4 = 'd'; ..... l_4 = 'Z';
    END;Having seperate variables to store the values in seems like a bad approach, as well as doing it using PL/SQL.
    SQL can split data that is comma seperated quite easily...
    SQL> with t as (select 'a,b,c,d,e,f,fred,john,1,4' as str from dual)
      2  select regexp_substr(str,'[^,]+',1,level) as str
      3  from t
      4  connect by regexp_substr(str,'[^,]+',1,level) is not null;
    STR
    a
    b
    c
    d
    e
    f
    fred
    john
    1
    4
    10 rows selected.And that can then be processed one by one, or bulk collected into a collection variable for processing etc.
    Better still, fix the initial problem which is whatever is giving you the data in a comma seperated list in the first place. It should be supplying the data as a collection or as seperate values/parameters.

  • Update the source record while loading data into target

    Hello Friends,
    I am loading data from "staging info object"  into "target info object".
    I have the validation code in 'start routine' in the transformations.
    During validations, if the conditions are met, I would like to load the record into target and at the same time, update one specific field of this record ( e.g. say - LoadFlag ) in the source infoobject.
    I am successfully able to load the records in the target info objects.
    I would like to know, how to update the record in the source-infoobject.
    Can anyone please let me know the ABAP syntax for this one.?
    I promise to award points.
    Thank you for your time.
    Pramod.

    Instead of ABAP you can:
    a) connect the update rule to the target also to the source object as input. In this updaterule you can simple set the load indicator with a constant.
    b) use an APD (TR RSANWB).

Maybe you are looking for