Table became read-only

I have an Access interface to an Oracle 10g database so that our analyst can enter data in from spreadsheets. Recently, one of the tables that she's working with became read-only when she deleted the existing table in Access, and re-imported it from Oracle. She's done the same to other tables, and is still able to write to them. I went in and checked her rights in the OEM, and she has the same rights across all objects. I'm trying to log in under her userid in SQL*Plus, but when I try querying from any of the user tables that she uses, its telling me that the tables/views don't exist. But if I select table_name from all_tables, it does show the system tables and other tables as well - just none of the user tables. Is there anything else I can try to figure out what's going on here?

Access will only allow read-only on Oracle tables unless the primary key is identified in Access. 'Edit' the table and identify the primary key.

Similar Messages

  • How to set a line of table as read only during runtime?

    How to set a line (or a cell) of table as read only during runtime?

    hi wei
          when you create a table keep the readonly property of table as false
    you create the columns of table as inputfield.you bind the readonly property of
    the inputfield to two context variables
    say one for all the columnfields you to want always have as readonly and let this contextattribute of type boolean and let this be attr1
    and another for all the columnfields you donot want to be readonly and let this contextattribute of type boolean and let this be attr2
    initially set the context attributes attr1 and attr2 as true so the entire table is readonly.
    based on the condition you want to check change the attr2 to be false.
    if(your condition)
    wdcontext.currentcontextelement.setattr2(false);
    hope this helps.
    regards
    saravana

  • How to make a column in Table popin read only

    Hi Everyone
    Could anyone let me know how to make a column in table popin read only.
    Regards

    if you ar eusing an ALV table
    try this
      DATA: lr_salv_wd_table TYPE REF TO iwci_salv_wd_table,
            r_table TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
    * get reference to ALV component interface
      lr_salv_wd_table = wd_this->wd_cpifc_alvmain( ).
    * get ConfigurationModel from ALV Component
      wd_this->r_table = lr_salv_wd_table->get_model( ).
    * init ColumnSettings
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_col_header TYPE REF TO cl_salv_wd_column_header.
      lr_column_settings ?= wd_this->r_table.
    * get table of column settings - each line one column
      DATA: lt_columns TYPE salv_wd_t_column_ref.
      lt_columns = lr_column_settings->get_columns( ).
    * loop over table - in each loop another column can be modified
      DATA: ls_column TYPE salv_wd_s_column_ref.
    * define visible columns (fields) by naming them,
    * exclude others by setting visibility to none
      DATA: ls_tooltip TYPE string.
      LOOP AT lt_columns INTO ls_column.
        " get header of column
        lr_col_header = ls_column-r_column->get_header( ).
        " do settings here
    ENDLOOP.
    Or see this document for more tips.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40794172-b95a-2910-fb98-b86d8a0918b4">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40794172-b95a-2910-fb98-b86d8a0918b4</a>
    regards,
    Joris

  • Tables in read only mode

    Hi friends.
    In my job we insert data in some tables, in the end of the month we do some operations with this data and for the next month we use other tables.
    How do I change my tables for read only mode, because is so dangerous that for error erase the old tables?

    Hi,
    You can revoke all privs like insert, update, delete... from all other users for these tables. Then only the owner can do some damage.
    If the database user is used by many different people and you rather don't trust them, copy the 'old' tables to another schema and don't spread the password.
    And most important: Have backups in place!

  • NULL values are inserted into interface table for read only columns

    Hi, I developed a custom Integrator where some of the columns has to be displayed as read only in the layout. I am using SQL content to populate the data. When I upload the data NULL values are inserted into table interface? Is there any work around for this?
    Thanks
    Edited by: user593879 on Jan 12, 2010 7:21 PM

    Doesn't WebADI drive you insane at times?
    I must say, when it's all working it looks great and it is very user friendly (end-user that is, NOT for developers!) but before you get to that stage… please please Oracle invest some time making Web ADI a bit more logical an coherent, get the obvious bugs out, please let us not have to update BNE tables anymore to get things done.
    Anyway, I sorted this one out by setting the Width to zero (0) in the Layout. HTH.

  • Advanced table Items Read Only

    Hi All
    How to make Message Choice and Message Check Box items in Advanced Table Read Only through code?
    OATableBean oatablebean = (OATableBean)oawebbean.findIndexedChildRecursive("ItemsTable");
    oatablebean.findIndexedChildRecursive("Type").setDisabled(true);
    is causing compilation error.
    setRendered works. How to set Required, Read Only properties through code?
    Thanks
    Kumar

    Reetesh
    I found the below code in the url . Here setEditableAttr is a custom method. Not sure what code does it contain?
    try
    OAViewObject pVO = (OAViewObject)getSupplierVO1();
    System.out.println("Rows: "+pVO.getFetchedRowCount());
    Row poRow[] = pVO.getAllRowsInRange();
    for (int i=0;i
    SupplierVORowImpl rowi =(SupplierVORowImpl)poRow;
    rowi.setEditableAttr(Boolean.TRUE);
    System.out.println("Count: "+poRow[0].getAttribute(27));
    System.out.println("Ritesh");
    Thanks
    kumar

  • Input table becomes Read-Only

    Hi all,
    I'm trying to implement input table but the table shows as read-only.
    1. Node cardinality = 0...n
    2. Selection = 0...1
    3. Singleton = true
    All fields are input field.
    After i deploy and run the application, the read-only table shows up.
    Please advise me on this. Thanks in advance.
    Peerasit

    Hello Jomsri,
    The table is coming as read only because you havenot added any element to the nodes and by default there will be no element in the node as you are selecting a cardinality of 0...n. If you change it to 1..n then you can see one row will have input fields enabled.
    Best way to implement this is add a button in the layout, name it as add a new row and in the action of this button add the following code:-
             IPrivateTestingCompView.I<nodename>Element a = wdContext.node<nodename>().create<nodename>Element();
             wdContext.node<nodename>().addElement(a);
    this will add a new row to the table each time you press the push button.
    Hope this will solve the problem
    Regards,
    Sarbjeet

  • Lifecycle issue with table binding + read-only attributes: ADF BUG

    Hello all,
    I have found what I believe to be an easily reproducible bug in ADF that reproduces in 10.1.3.x, but not in 11g (at least not in drop 6). The best way to describe the bug would be to walk through a simple set of steps to reproduce the bug:
    1). Create a new application (ADF BC + ADF Faces).
    2). In the model project, create a new Entity Object from the Employee table in the default HR schema. Allow JDev to create an updatable view object and an AM as well.
    3). Put a validation rule on the first name attribute of the EO (can be anything, really - I made mine so that the first name cannot be "foo").
    4). Test everything using the BC tester if you like.
    5). In the UI project, create a new JSPX page.
    6). Drag the updatable VO on to your page as an updatable af:table.
    7). Put an af:commandButton on the page. Bind its Action or ActionListener to a method in a new backing bean. Put some simple code (I used System.out.println) in the backing bean method.
    8). Run the jspx page.
    9). Put some invalid data in (e.g. "foo" in the first name field) and click the af:commandButton. Verify that you get an error message and that the Action/ActionListener method DOES NOT fire. So far, so good.
    10). Now, to demonstrate the problem. First, look at the page definition for the jspx file. Identify the first attribute that is mentioned (in my case, it was the employee id).
    11). Go to the updatable view object and make the attribute from #10 read-only or updatable when new only.
    12. Now, repeat step 9 - you should see the error message AND also see that the Action/ActionListener method was executed. You will also see in the messages window that ADF attempted to set the value of the read-only attribute, and thus got a ReadOnlyAttrException.
    This issue only happens if the first attribute mentioned in the table binding is read-only. A workaround would simply be to re-order the attributes in the table binding of the pagedef so that the first attribute isn't read-only.
    Don't ask how I figured this out ;)
    Best,
    John

    Hi Frank,
    Yes, I simply scripted it out this way to contrast the behaviour if the first attribute was read-only vs not read-only. I found the issue on a page in our app that was simply drag-and-drop the VO from the data control on the page.
    It's quite annoying, because our particular use case that hit this error is a "save" button on the page. If the commit operation doesn't return any errors (and it doesn't in this use case!), we add a JSF message saying "save successful" - then the attribute errors are further added later in the page lifecycle, so we get 3 messages: "Save successful" and "Fix this error" and "Tried to set read-only attribute" - quite confusing to the end-user when the only message they should see is "fix this error."
    At any rate, the fix is to simply re-order the attributes in the page definition - that doesn't affect the UI at all, other than to fix this issue.
    John

  • Hard Drive / Volume (DroboPro) has suddenly became read only!? I think its due to a permission issue and i cannot correct it

    Bit concerned, my iMac seemed to crash yesterday... when i restarted the iMac .. i got the following message:
    OS X can’t repair the disk “DroboPro.”
    You can still open or copy files on the disk, but you can’t save changes to files on the disk. Back up the disk and reformat it as soon as you can
    At the time the iMac crashed, i was downloading some files over the web... and at the same time importing a movie into iTunes. I believe it was iTunes that possibly crashed first... it seemed to be taking longer than normal to import a movie into iTunes, but left it running and went and ate dinner. when i returned, i couldn't wake the machine from the screen saver. it appeared to have locked up. I had no choice but to hard-reset the imac. when it rebooted, the external drive (drobopro) was in read only mode - i can read from it but can't write to it.
    I have been initially trying to trouble shoot this as a DroboPro issue - but that drive seems fine. most of the reading i have done points to a permissions issue which is something in OS X that needs fixing.
    I found these support articles on the drobo website
    1) http://support.drobo.com/app/answers/det...d-only-and
    2) http://support.drobo.com/app/answers/det...ld-i-do%3F
    Per the first article, I tried using drobo dashboard app to shut down the drobopro, then restart my imac and then bring the drobopro back up again to clear the permissions issue. that didn't work. (I actually tried that twice)
    When I go into disk utility on the imac, and click on the drobo disk... i cannot click on the repair permissions button, its greyed out. i can click on verify disk... when i readthe details that come up.. in red it says Invalid Node structure, The Volume DroboPro could not be verified completely, the File system check exit code is 8; Error: The disk needs to be repaired, click Repair disk.
    i checked the tools in drobo dashboard and according to drobo dashboard the disk is healthy. its about 50% utilised; so definitely no space issues. i have 4 x 2TB disks in it and setup i a high redundancy mode so actual available space is about 5.4TB, and there is 2.62 TB available.
    I then looked back at the first article again - and it says to get cocktail disk utility. i got that and went to PILOT tab as suggested, but the only option is to repair permissions on Mackintosh HD.  so i went ahead and repaired the permissions on Mackintosh HD, but that hasn't fixed the issue either. The last options seems to be to do a super user move via the Apple Terminal, which i am a little apprehensive about doing - so  i have avoided that.
    Drobo support suggested i try DiskWarrier - i have downloaded that app and tried to repair permissions using that. again i can only run that on the imac disc, but that doesn't work either!?
    I am stuck now, what shall i try? look forward to see if anyone can help.

    Ok, so I have to apologise for that fact that a minute after making this post I managed to fix the problem...
    Blew the dirt from the connector port. Really...? You ask...
    This sure did fix my problem and after doing some more hard searching through the forums here looks like it fixed others too.
    Dirt in the connector port meant the iPhone thought (for some reason) it was connected to a dock or such, thus removing the controls.
    Anyway, cheers and hope this might help someone else.

  • TM drive became read-only, only to be fixed by Verify Disk ?!?!

    Could one of you experts out there please explain this to me. My small brain can't wrap my mind around what happened -
    Yesterday I had to restore my system from a TM backup. After this, I decided to erase the TM drive and start backing up fresh. I did this, and for the past 5 hours, Time Machine has been happily backing up to this newly-erased partition.
    However, just a few minutes ago, I got an error message from TM. It said that the backup couldn't be completed because the volume was "read only". I couldn't believe this, so I checked out Get Info, and indeed it said that I only had read access to the volume that Time machine's been writing to for the past 5 hours! I found the KB article HT3275 that said to do a Repair on the TM drive. But Repair Disk was grayed out; only Verify Disk was lit.
    I checked around further, and couldn't come up with what caused this change in permissions, so I decided to do the Verify Disk just to see if there were any HD errors, but the partition came up clean. But then I couldn't believe my eyes - the Repair Disk button was now active! I switched back to Finder and did a Get Info on the TM partition, and it was back to allowing me Read/Write access!
    How could a Verify Disk operation cause the permissions to change from Read Only to Read/Write? The only system operation I did during those 5 hours of good TM backups was to change my Computer Name and uncheck "Use dynamic global hostname".
    Please, one of you Time Machine/OS X/UNIX gurus explain to this feeble mind what occurred here. I really need to know so that this won't happen again.
    Thanks.

    I tried running
    sudo fsck /dev/sdb1
    and got the following error:
    fsck from util-linux-ng 2.18
    fsck: fsck.ntfs: not found
    fsck: Error 2 while executing fsck.ntfs for /dev/sdb1

  • External Hard Drive became read-only [SOLVED]

    I have a seagate external hard drive formated to ntfs. I have been using it successfully with arch until recently. Now when I try to add files to it it refuses. I tried changing the permission back with
    sudo chmod ugo+rwx -R /media/FreeAgent\ Drive
    But, it returned a "Read-Only file system" error for every file. I'm not sure what caused this, any suggestions? Thanks in advance for the help.
    Last edited by briff (2010-09-06 18:46:48)

    I tried running
    sudo fsck /dev/sdb1
    and got the following error:
    fsck from util-linux-ng 2.18
    fsck: fsck.ntfs: not found
    fsck: Error 2 while executing fsck.ntfs for /dev/sdb1

  • Disk became read only

    After the last update my backup disk has become read-only and the Permissions are grayed out so I cannot change the setting.
    Any solutions?
    Thanks

    After doing a reboot it I waited a day but then I tried Time Machine for the heck of it and it worked.
    I looked at my backup drive permissions and the lock is not grayed out anymore. The permissions are the same however. So maybe I didn't have to wait any time after the reboot to run time machine again. Hmmmm. Still no explanation for why this happens though but just because permissions are still the same doesn't mean Time Machine will still not work after the reboot. I don't know if the act of running Time Machine triggered the lock to be available for unlock or if I didn't notice it was unlockable after the reboot.

  • Usb key suddenly became read only

    Hi,
    my usb key used to work fine between OS X and Windows XP. Now after it was removed from XP without unmounting it, it's read only on OS X.
    It's formatted in MS-DOS FAT 16 and Disk Utility can't reformat it.
    Any suggestion is welcome!

    Many USB keys have a small lock switch that will make them read only. Check to make sure that hasn't slipped accidently to the lock position.

  • My external USB drive became read-only

    I migrated from a Macbook (black) to a new Macbook Pro (late 2008 model) a week ago. Everything seemed to work fine except that I can't write to an external USB drive (worked fine with the Macbook) from my new Macbook Pro. Disk utility indicated I only have read-only access and didn't give me a way to change the permissions. The drive still works normally (read-write) with the old Macbook.
    The drive was formatted as Mac OS extended (journaled.) Both computers are running 10.5.5 when this happened. I have since upgraded my Macbook Pro to 10.5.6 but won't have an opportunity to test it with my drive till January.
    I know I can re-format the drive with Macbook pro but I don't want to lose the data. I have no other storage to temporary hold the data (about 450G worth.) I tend to change computers every 6 months or so. This will continue to be a problem for me. I am looking for a nice permanent solution.
    Thanks.

    Welcome to Apple Discussions:
    You probably do not have write access to the drive, if it came from a Mac with another account.
    In a terminal run the command
    ls -al /volumes
    and see what permissions the drive has.
    You should see something like
    drwxrwxrwx 1 nero nero 16384 Dec 18 13:02 TravelDrive
    Where "nero" is the name of the user who has access to the drive. Notice that on my drive, everyone has read, write, execute privileges on the drive.
    Message was edited by: nerowolfe

  • Read Only table

    Sir, I am Rashed From bangladesh. Here, i want to know that if a table as a read only then what i will do and what i will not do like 1)insert 2)update 3)delete 4)Drop 5)all??? which answer is correct and why??? Plz replay me as soon as possible.
    sincerely yours
    rashed

    First of all, let me make you calear that you can't put table in read only mode until unless its tablespace made into read only mode.
    the other way you can call as this table is owned by other user and he just gave you read only permission, i.e. select permission.
    If you put tablespace into read only mode, then, there are no inserts,deletes,updates,truncate take place. Only you can drop the table.
    SJH
    OCP DBA

Maybe you are looking for

  • Ipod touch 3rd generation is stuck in "waiting for changes to apply" during sync

    My iPod touch 3rd generation is stuck at "waiting for changes to apply" during sync.  I have the latest update and the latest version of iTunes downloaded.  Any suggestions for a remedy to this problem?  Thanks!

  • My older version document wont open in the new pages

    I keep getting a prompt that my document wont open unless I update. I have updated it and doublechecked it, and it still wont open.

  • Approximate time for Taking Oracle Backup

    Can you guys tell me how can I guess 1.what time should be taken for a Oracle database's full export backup ? 2.what time for a full online Physical backup ? 3.what time for a full offline Physical backup ? We can see the size of the associated dataf

  • LSMW- LOIPRO Message type process code

    Hi Can any body tell me what process code to use production order create (Message type LOIPRO, Basic type LOIPRO01)? We are trying to use "BAPI". But we are getting errors. Thanks Rob

  • Market Risk Analyzer : ALM simulation

    Business requirement : to make a interest income/expense budget/forecast for the next fiscal year and to evaluate the P&L impact of future changes in the debt / investment portfolio. Idea for solution : JBRT_CFM report (Net Interest income tab) Probl