XRAID is READ ONLY??? PLESE HELP!

I've been frustrated with this issue for months now - it may date back to updating to Leopard even:
The top level of my Apple Xserve X RAID has turned 'read-only'. I cannot delete files or folders on it.
Both "system" and "admin" have "read and write" permissions, but it still treats me (admin) as 'read only'...
I don't have a good way to back the whole thing up and flush it all out via a rebuild/reboot, and while I've read of a lot of people having the same problem, I've not found any solutions that worked. So far I've updated the firmware to 1.5.1, but that was of no help.
PLEASE HELP IF YOU CAN! I am very desperate, and very frustrated with this now. Thanks in advance...

Use Get Info on the folder and apply what you want.
Also, Batchmod freeware
NTFS volumes have their own group policy and ownership, FAT probably doesn't store or copy across properly. I had files/folders on NTFS Vista that I had to change Mac OS ownership on in order to work.

Similar Messages

  • Read only query help

    Hello,
    I have read-only access to a database and I'm trying to perform a count on a decoded statement.
    I cannot update, merge, create views, or delete at all.
    example:
    vdh.vin as VIN,
    mcs.vehicle.veh_manuf_year@OCP5 as YEAR,
    mcs.veh_make.veh_make_desc@OCP5 as MAKE,
    vcbc.veh_model.veh_model_desc@OCP5 as MODEL,
    vdh.created_timestamp as "TIMESTAMP",
    max(to_char(decode(c.COMMAND_ID,'LT_FT_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) LF_TIRE_PRESSURE,
    max(to_char(decode(c.COMMAND_ID,'RT_FT_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) RF_TIRE_PRESSURE,
    max(to_char(decode(c.COMMAND_ID,'LT_RR_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) LR_TIRE_PRESSURE,
    max(to_char(decode(c.COMMAND_ID,'RT_RR_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) RR_TIRE_PRESSURE,
    max(to_char(decode(c.COMMAND_ID,'HIGH__PRESSURE_LIMIT',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) HI_LIMIT,
    max(to_char(decode(c.COMMAND_ID,'LOW__PRESSURE_LIMIT',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) LO_LIMIT,
    c.STATUS as STATUS,
    dh.DTC_CODE as DTC_CODE,
    dh.EXPLANATION_TEXT as DTC_EXPLANATION
    from vdu.c2pt_data_history c, veh_diag_history vdh,
    vdu.connected_veh_param cvp,
    module_history mh, dtc_history dh,
    mcs.vehicle@OCP5, mcs.veh_make@OCP5, vcbc.veh_model@OCP5,
    vcbc.veh_manufacturer@OCP5
    where ((c.VEH_DIAG_HISTORY_SAK = vdh.VEH_DIAG_HISTORY_SAK)
    and (vdh.CASE_SAK = cvp.CASE_SAK)
    and (dh.MODULE_HISTORY_SAK = mh.MODULE_HISTORY_SAK)
    and (vdh.VEH_DIAG_HISTORY_SAK = mh.MODULE_HISTORY_SAK)
    and (cvp.VEHICLE_SAK = vehicle.vehicle_sak@OCP5)
    and (veh_make.veh_manuf@OCP5 = veh_model.veh_manuf@OCP5)
    AND (veh_make.veh_make@OCP5 = veh_model.veh_make@OCP5)
    AND (veh_manufacturer.veh_manuf@OCP5 = veh_model.veh_manuf@OCP5)
    AND (veh_model.veh_manuf@OCP5 = vehicle.veh_manuf@OCP5)
    AND (veh_model.veh_make@OCP5 = vehicle.veh_make@OCP5)
    AND (veh_model.veh_model@OCP5 = vehicle.veh_model@OCP5)
    AND (veh_model.veh_manuf_year@OCP5 = vehicle.veh_manuf_year@OCP5))
    and c.CREATED_TIMESTAMP >= to_date ('10/20/2007 12:00:00 AM','MM/DD/YYYY
    HH:MI:SS AM')
    and c.CREATED_TIMESTAMP < to_date ('10/21/2007 12:00:00 AM','MM/DD/YYYY
    HH:MI:SS AM')
    group by vdh.vin, mcs.vehicle.veh_manuf_year@OCP5,
    mcs.veh_make.veh_make_desc@OCP5,
    vcbc.veh_model.veh_model_desc@OCP5, vdh.created_timestamp, c.STATUS,
    dh.DTC_CODE,
    dh.EXPLANATION_TEXT
    order by vdh.created_timestamp
    unfortunately it returns no data. I think there is a disconnect between table:dh and table:c
    but my main problem is how do I add another column called count which counts from 0 through 4 what the return is on:
    max(to_char(decode(c.COMMAND_ID,'LT_FT_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) LF_TIRE_PRESSURE,
    max(to_char(decode(c.COMMAND_ID,'RT_FT_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) RF_TIRE_PRESSURE,
    max(to_char(decode(c.COMMAND_ID,'LT_RR_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) LR_TIRE_PRESSURE,
    max(to_char(decode(c.COMMAND_ID,'RT_RR_TR_PR',TRIM (TO_CHAR
    (c.command_result, 'XXXXXXXXXXXXXXX')), ' '))) RR_TIRE_PRESSURE
    all I need to know is whether or not 1 through 4 are null or not, if not, then set the value to 1 and then if null then the value is zero and cound 1 through 4 in the column called count_pressure.
    the values may be anything from 1.23232 to 100000.00323.
    I hope this makes sense.

    Not sure if I understand your requirements but perhaps;
    SQL> with t as (
       select 5 c1,5 c2,5 c3,5 c4 from dual union all
       select 5, 5, 5, null from dual union all
       select null, null, null, null from dual union all
       select null, null, 5, 5 from dual)
    select
       nvl2(c1,1,0) +
       nvl2(c2,1,0) +
       nvl2(c3,1,0) +
       nvl2(c4,1,0) tot
    from t
           TOT
             4
             3
             0
             2

  • External Hard drive is suddenly Read only.  Help!

    I reformatted my I mac due to it being extremely slow. After reformat, the toshiba external hard drive that I have been using for months before with no problem, is now a read only. I have over 1TB of space available and I need to use it. Does anyone know what happened and how to fix it. I cant lose my information.

    In the Finder, press the key combination shift-command-C, or select
    Go ▹ Computer
    from the menu bar. A window will open showing all mounted volumes. Select the one in question and open the Info window. What is shown as the Format in the General section?

  • OracleCommand.Transaction property is read only Pls Help me

    I Am Using oracle 9 .2.
    Imports Oracle.DataAccess.Client
    Imports Oracle.DataAccess.Types
    Dim lCmdSql, lCmdErr As New OracleCommand
    Dim lTrans, lTransErr As OracleTransaction
    lCmdSql.Connection = conGlobal
    'lCmdSql = conGlobal.CreateCommand()
    lCmdSql.CommandTimeout = 500000
    lTrans = conGlobal.BeginTransaction(IsolationLevel.ReadCommitted)
    'Error Come Here
    Transaction property is read only
    lCmdSql.Transaction = lTrans'''''''''''

    Hi,
    How many machines are effected by this problem?
    I've seen someone suggested you disable add-ins, does this work? To eliminate the influence by add-ins, we can also start Outlook in Safe Mode to test:
    Press Win + R, type "outlook.exe /safe" in the blank box, press Enter.
    If the issue persists, please switch the account to work in Online Mode:
    Go to Account Settings -> Double click on the account -> Uncheck "Use Cached Exchange Mode" -> Next -> Finish.
    You will need to restart Outlook to work in Online Mode.
    Now please check if this issue persists when you select the contact in Step 6. I suggest you do this so since in Cached Mode Outlook uses the Offline Address Book, and in Online Mode Outlook uses Global Address List directly. If it works fine in Online Mode,
    probably the OAB is corrupted and I suggest you go to C:\Users\username\AppData\Local\Microsoft\Outlook, find the Offline Address Books folder and delete it. Outlook will generate a new one when it starts next time in Cached Mode, let's see if it fixes the
    issue.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Pages: this location is read-only, ? Help

    This occurred after having a new OS X installed. I wish to be able to simply save documents & create folders as I'm doing so.

    I also have this problem and have read/write permissions on the folders it occurs in. It is only since I have upgraded to Maverick that this problem occurs, so it is probably not Pages problem.
    For example, sometimes, when I try to save a copy or a PDF in Pages, it tells me that the volume I am trying to save to will not accept a file name of more than 32 characters. Even when I change to less than 32 characters or remove any symbols from the filename, it will not allow it. The work around is to save to desktop and then move the file but is a little annoying.
    This problem occurs also when trying to save attachments from Email, so is unlikely to be a Pages problem but seems like a set of Maverick' bugs. Any inspiration if the two things might be connected?

  • Read Only Mode Help Please Guys!

    Friends, but I did attach database,I am using the following code when correcting:
    1)
    ALTER DATABASE test SET Read_write;
        GO
    ALTER DATABASE test SET SINGLE_USER;
        GO
        DBCC CHECKDB (test REPAIR_ALLOW_DATA_LOSS) WITH NO_INFOMSGS;
        GO
    2)
    USE master;
    GO
    ALTER DATABASE test
    SET SINGLE_USER
    WITH ROLLBACK IMMEDIATE;
    GO
    ALTER DATABASE test
    SET READ_write;
    GO
    ALTER DATABASE test
    SET MULTI_USER;
    GO
    Error message:
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "C:\edit.mdf". Operating system error 5: "5(Access is denied.)".
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "C:\edit.LDF". Operating system error 5: "5(Access is denied.)".
    Msg 945, Level 14, State 2, Line 1
    Database 'edit' cannot be opened due to inaccessible files or insufficient memory or disk space. See the SQL Server errorlog for details.
    Msg 5069, Level 16, State 1, Line 1
    ALTER DATABASE statement failed.
    Msg 5011, Level 14, State 5, Line 1
    User does not have permission to alter database 'edit', the database does not exist, or the database is not in a state that allows access checks.
    Msg 5069, Level 16, State 1, Line 1
    ALTER DATABASE statement failed.
    Msg 102, Level 15, State 1, Line 1
    Incorrect syntax near 'edit'.
    Msg 319, Level 15, State 1, Line 1
    Incorrect syntax near the keyword 'with'. If this statement is a common table expression, an xmlnamespaces clause or a change tracking context clause, the previous statement must be terminated with a semicolon.

    Hi,
    As Tom pointed out, could you please clarify the ‘edit’ and ‘test’ database?
    Which account you used for SQL Server service?
    It seems a permission issue. The account should have the permission on the location which you placed the mdf file and ldf file in. And have the mdf and ldf file in the right location.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Read-Only text area

    Hi,
    I'm using a text area to display a longer read-only text. It should display only 5 lines and, if the text is longer, it should be scrollable. Works fine as long as I set the attribute Editable to true. But if I set it to No (because it should be read-only), I get the following problems:
    - It does not show only the 5 lines anymore, but the complete text without scrollbars.
    - It shrinks the size of the text area, so that it fits the text inside. You can see that looking at the borders. But I wanted to have the borders at the original size independent of the text.
    Does anyone knows, how to solve that?
    Thanks&Regards
    Matthias

    to the best of my knowledge, if you make it read-only you cannot have the scroll bar enabled. and whatever you explained is the expected behaviour!!
    But, i have a workaround under three conditions:
    1. if you need the scroll bar
    2. if you want the size of it as in the initial state - without disturbing the existing size and format of page
    3. you wish to retain the value
    keep the value of the text area in a temporary object and pass it to the reference attribute on submit of page. (here we are just retaining the value and not making it read-only)
    this helps in keeping the format of page undisturbed!!
    HTH
    Sharma

  • Mail attachments won't save - saying folders are Read Only

    Every time I try save an attachement, mail pops up saying this location is read-only,
    Any help?

    I still can't fix this issue.
    This is what happens when I try to create a new folder in the target folder that I want to save my attachments too. The target folder has Read & Write access for everyone.
    I've tried:
    Accessing Repair Utilities and typed in resetpassword
    Resetting the permissions on my computer
    Relaunch Finder
    But so far nothing works and I still get the Read Only error message when trying to create a new folder to save my attachments.
    UPDATE:
    I've used these steps by Linc Davis, who is like a savior for everything Mac!
    The thread to this problem can be found here - https://discussions.apple.com/thread/4925516?start=0&tstart=0
    Now my email is back to normal!
    Message was edited by: jajashahmohen

  • Headquarter Error : Property 'DocEntry' of 'Document' is read only

    Hi All,
    I had followed "How to Build & Run a B12B1 Scenario" Documentation and until I created a biz package and activated successfully. But when I try to create a PO in the subsidiary system, It sends ok, but I get the following error in admin console > monitoring > error inbox under the headquarter :
    com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: com.sap.b1i.bizprocessor.BizProcException: BPE001 Nested exception: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: java.lang.RuntimeException: Invoke of: GetBusinessObjectFromXML Source: Description: CServiceData::VerifyPropertyWrite failed; Property 'DocEntry' of 'Document' is read only
    Your help is appreciated.
    Hany

    Hi Hany,
    the error message tells you that the field DocEntry is a read-only property. That means this field must not occur in the receiver payload. The fields DocEntry, DocNum etc. will be created automatically by the receiving system.
    Please have a look at the SDK Help (DI Reference) according to your current version. There you will see which fields are read-only.
    Kind regards,
    Marcus

  • I have an external hard drive, from Iomega. However, I cannot copy or save any file to it. On my PC it says that is possible to read and write in it, but in my Mac, it says I can only read. can somebody help me?

    I have an external hard drive, from Iomega. that I can open and see my files. However, I cannot copy or save any file to it. On my PC I have it says that is possible to read and write in it, but in my Mac, it says I can only read. can somebody help me?
    Also, Im a photographer, so I like to name a lot of files at the same time (used to do in on PC and it was very usefull.) cannot find out how to do it on my Mac. Really appretiate if some one can give me a solution! Thanx

    Your drive is formatted with the NTFS file system.  OS X can read but not write to the NTFS file system.  There are third party drivers available that claim to add the ability to OS X to write to an NTFS partition.  I have not tried them and don't know if they work.
    The only file system that OS X and Windows can both write to natively is the FAT32 file system.

  • Urgent :need help to setup Master to snapshot(read only) environement

    Hi,
    I need your help urgently. I don't know much about master to Snapshot configuration. I need to do prototype of master to snapshot(read only) as soon as possible. I need replication setup/configuration scripts.
    DB1 is master database (8i) and DB1 is Snapshot site db.
    both dbs are identical except they have different Global_name.
    I want to replicate table from DB1---> DB2 unidirectional.
    Global name for DB1 is DB1.world and for DB2 is DB2.world
    TNS names are DB1 and DB2 respectively and TNSNAMES.ORA file is same on both server.
    Schema owner of Mster site (who owns the tables that I want to replicate) is user 'SYNAPSE'. On DB2 I have also same schema with same tables. Lets say table called 'TEST' that I want to replicate from DB1 to DB2.
    for simplicity I want to have only one account(user) on both site who can do administration and take care of all other task including replication.
    I need scripts to do setup for the replication environment described above.
    In short please provide me script to replicate DB1 to DB2 (Master to snapshot).
    I appreciate your help very much.
    You can reach me at [email protected] as well.
    Thank you.
    Pravin

    Finally I figured out how to setup/configure master to Snapshot environment but I have to say that Oracle documents are very confusing.
    The problems I ran into are:
    User Repadamin can't create MV in schema owner other than repadmin. Work arround I used is let that schemema owner allow to create MV.
    Other proble ran in is Constraint(FK) violation when trying to do using refresh group. To resolve this problem either disable constraints on snapshot site or create constraints usinf deferred option.
    Pravin

  • HELP- "IPOD Cant Be Synced.  The Disk is locked"  Cant remove Read only

    I cannot remove read only from the IPod Control folder. It won't let me. I cant load music to my ipod, which I previously have with same computer, itunes, everything. I have the most updated itunes, software, etc.
    Can anyone help me? I have no clue what to do. I tried to right click on the ipod disk and run an error check. that didnt work. I'm clueless. Help!

    Hello Mark,
    And welcome to Apple Discussions!
    I don't really have any suggestions for you, but I can point you to an older thread where you might find help. Check out this old post from another forum member who managed to address this issue him/herself.
    http://discussions.apple.com/thread.jspa?threadID=1651418
    B-rock

  • When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    Hi,
    I would suggest you to uninstall Adobe Reader using the cleaner tool and then re-install the latest version.
    Adobe Cleaner Tool:- Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs.
    Latest version of Adobe Reader:- http://get.adobe.com/reader/
    If you still experience the same issue, please share the following information:-
    - Screenshot of Adobe Reader showing printer options
    - Screenshot of Microsoft Word showing printer options
    - Screenshot of control panel- Control Panel\All Control Panel Items\Devices and Printers
    Regards,
    Nakul 

  • F4 / Value Help on a Read-Only Field in a WD app

    Hi friends,
    I am struggling to put up a F4 help on an input field which has been set up as read-only. The idea is to have the field as read-only, and allow the user to select any value from the predefined values using F4/value help.
    Now, I get the F4 help working if the field is NOT in a read only mode, However, the moment I set it to READ ONLY , the F4 help vanishes.
    Is there a way to have the F4 help associated with the field even when the field is a read-only ?
    Thanks.

    Great Solution ! This works.
    However, there is a small problem with the usage of browsers. If you use Mozilaa/ Chrome, then even the 1 px width of dummy field show up. However with IE the 1 px does now not show up, so the F4 help comes up right next to the original field. But that is not something significant !

  • ITunes Keeps Freezing, Music Folders Keep Being Marked Read-Only???  HELP!!

    Recently I have been completely unable to access my iTunes for more than 15 seconds before it freezes up and I have to end the program. When I checked the properties for my My Music folder and my iTunes Music folder (and all the folders within these folders), I noticed that the Read-Only box is marked - not checked, but filled with another, smaller box.
    When I uncheck the read-only box on all the folders and go back up to the My Music folder, I check the properties and notice that it is STILL marked as Read-Only. This is driving me completely insane, as I can do NOTHING with my iTunes without it freezing. Can someone please help me out???

    It's normal for folders to be marked read only, what ever your problem is, it is not this.
    Have you seen this article on troubleshooting freezes:
    http://docs.info.apple.com/article.html?artnum=302856

Maybe you are looking for

  • Will not restore or connec to itunes - just get the itunes logo and usb cale display on screen

    ipod touch will not restore or connec to itunes - just get the itunes logo and usb cable display on screen

  • Using system inbuilt webcam in oracle forms 11g

    Hi , I need to make a form in Oracle 11g to capture image by system inbuilt webcam and  then save it into a database. and I am not able find any PJC that support JMF. Can it be done by using webutil and How ..Please hlp as asap..

  • Very very urgent  ( Revamp of rg1 register )

    Dear all, My client was updating the rg1 register, but the entries that were updated were wrong. NOw i want rhe revamp the rg1 register, that is I wantto delete all the entries in J_1irg1 table , also i want to delete the entries from J_21irgbal and

  • Play HD .MKV Files in Front Row

    Hi, I wish to play .MKV HD films on my Mac Mini. I have installed the latest Perian - http://perian.org/ and it plays them but they are ever so slightly jerky, i can notice it and its annoying. I have played them in VLC media player and they are perf

  • Working With A Result Set

    Hi Everybody, I'm working on a application with will retrive data from a database for the past seven days, and then find the average for each of the days, the database is basically (id,date,hour,houraverage) - I can connect to the databse okay, but t