Who are the last users who altered data in a table

Hi,
i'm managing this release of database:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
my experiece is a little more than a normal user and plsql developer, but with the responsability to manage 6 databases in my and client's offices.
since we are experiencing many problems of continuous data variations on my databases, i need to know what happens.
as a first thing i am imagining i need to know who accesses to what tables, when, with what update etc etc.
maybe it could be interesting lock some tables for some users during some hours of the working day.
I'm sorry for my english, i hope u all will understand what i'm trying to explain, if anybody could help me with documentation and explainations i will be happy :)
Thanks,
Massimo

You need to enable auditing. Use fine grained auditing.
http://www.oracle-base.com/articles/10g/Auditing_10gR2.php
Regards
Asif Kabir

Similar Messages

  • I need to know, what was the last user who modify the customer hierarchy???

    Someone know s, what´s the name of a table or something, to find the last user who modified the customer hierarchy, and the date.??
    Thanks everyone for your help!!!

    Hi Itzell,
    Try the following way
    -->goto se16  Enter the table CDHDR and press enter
    --> Enter  "KUNHIER" in  Change doc Obj..  and
         Enter the date range in Date field.
    YOu should get some items in the table.
    (       If there are no items, that means. no change was happened to the Customer Hierarchy structure or the changes were not being store. )
    -->  If you want more details refer to CDPOS too..
    Regards,
    Ajai.
    Don't forget to reward points if helpful.

  • HT201441 i just bough a used iphone but looks that it was found and i cant unlock it. its still link to the last user my question is how do i find out who is the last owner so i can unlock it

    i just bough a used iphone but looks that it was found and i cant unlock it. its still link to the last user my question is how do i find out who is the last owner so i can unlock it

    peeweenborre wrote:
    i just bough a used iphone .... its still link to the last user ...
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund,

  • I accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

    i accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

    i accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

  • How to erase the last user that logged on to BO ?

    Hi!
    When you log on to Business Objects 6.5, the name of the last user that logged on is presented to you.
    When logging in to BO, the userID of "ADBONDT" shows at the PC of user "DLECOIN". User DLECOIN is therefore convinced that user ADBONDT sneaks into the office at night and uses his PC to connect to Business Objects. Which is nonsense, user ADBONDT has her own computer, own office, own login... Of course, at some point in the past, ADBONDT may have used the PC and the logon name is probably stored in a file or setting somewhere...
    So my question is how I can erase the "last logon" in Business Objects? Where are the logon names stored? In the Windows registry? In a file? In the repository?
    This issue is NOT blocking, but the user (a highly placed manager) demands that it gets solved.
    All help appreciated...
    Daniel

    Found it! The last login is stored in the "BOMAINV6.LSI" file on the PC, which is usually in the directory C:\Documents and Settings\WINLOGON\Application Data\Business Objects\Business Objects 6.0\lsi
    If you delete the lsi file, then a new file gets created automatically, and the problem disappears....

  • Which are the necessary users for a New Database...

    While making a new Database.. Oracle 11g Wizrd automatically creates a long list of unwanted users.. can these be dropped.. which are the necessary users pls help
    Drop User ANONYMOUS Cascade;
    Drop User APEX_PUBLIC_USER Cascade;
    Drop User CTXSYS Cascade;
    Drop User DBSNMP Cascade;
    Drop User DIP Cascade;
    Drop User EXFSYS Cascade;
    Drop User FLOWS_030000 Cascade;
    Drop User FLOWS_FILES Cascade;
    Drop User MDDATA Cascade;
    Drop User MDSYS Cascade;
    Drop User MGMT_VIEW Cascade;
    Drop User OLAPSYS Cascade;
    Drop User ORACLE_OCM Cascade;
    Drop User ORDPLUGINS Cascade;
    Drop User ORDSYS Cascade;
    Drop User OUTLN Cascade;
    Drop User OWBSYS Cascade;
    Drop User SCOTT Cascade;
    Drop User SI_INFORMTN_SCHEMA Cascade;
    Drop User SPATIAL_CSW_ADMIN_USR Cascade;
    Drop User SPATIAL_WFS_ADMIN_USR Cascade;
    Drop User SYS Cascade;
    Drop User SYSMAN Cascade;
    Drop User SYSTEM Cascade;
    Drop User TSMSYS Cascade;
    Drop User WKPROXY Cascade;
    Drop User WKSYS Cascade;
    Drop User WK_TEST Cascade;
    Drop User WMSYS Cascade;
    Drop User XDB Cascade;
    Drop User XS$NULL Cascade;

    This metalink doc describes each schema and what is does and how to install/uninstall:
    Information On Installed Database Components and Schemas - Doc ID: 472937.1
    Application Express Removal:
    http://database.in2p3.fr/doc/oracle/Oracle_Database_11_Release_1_(11.1)_Documentation/install.111/b32072/remove_oracle_sw.htm#CIHGAHFJ
    determine what components you do not use and then you can remove them safely (by following the documentation).
    Here is a script to remove components/schemas that my company does not use (condensed from above).
    Only run it if you determine you do not use these advanced components (but you could always re-install them if necessary).
    Script has been tested and does not break anything.
    (run from db host)
    # remove application express
    sqlplus "/as sysdba"
    ALTER SESSION SET CURRENT_SCHEMA = FLOWS_030000;
    EXEC wwv_flow_upgrade.drop_public_synonyms;
    ALTER SESSION SET CURRENT_SCHEMA = SYS;
    DROP USER FLOWS_030000 CASCADE;
    DROP USER flows_files CASCADE;
    DROP USER apex_public_user CASCADE;
    exit
    # deinstall Oracle Multimedia: -> SQL> (on Linux/UNIX)
    sqlplus "/as sysdba"
    @?/ord/im/admin/imremov.sql
    # ORACLE SPATIAL
    sqlplus "/as sysdba"
    -- drop all public synonyms created for Spatial:
    set pagesize 0
    set feed off
    spool dropsyn.sql
    select 'drop public synonym "' || synonym_name || '";' from dba_synonyms where table_owner='MDSYS';
    spool off;
    @dropsyn.sql
    set feedback on
    drop user mddata cascade;
    drop user spatial_csw_admin_usr cascade;
    drop user spatial_wfs_admin_usr cascade;
    drop user MDSYS cascade;
    exit
    # ULTRASEARCH
    cd $ORACLE_HOME/ultrasearch/admin/
    sqlplus "/as sysdba"
    set define off
    @wk0deinst.sql
    exit
    # workspace manager
    sqlplus "/as sysdba"
    @$ORACLE_HOME/rdbms/admin/owmuinst.plb
    exit
    # OLAP
    cd $ORACLE_HOME/olap/admin
    sqlplus "/as sysdba"
    @?/olap/admin/catnoamd.sql
    @?/olap/admin/olapidrp.plb
    @?/olap/admin/catnoaps.sql
    @?/olap/admin/catnoxoq.sql
    spool syn.sql
    select 'drop public synonym '|| synonym_name ||';' from dba_synonyms where table_owner = 'OLAPSYS';
    spool off;
    @syn.sql
    spool syn.sql
    select 'drop public synonym '|| synonym_name ||';' from dba_synonyms where table_owner = 'EXFSYS';
    spool off;
    @syn.sql
    spool syn.sql
    select 'drop public synonym '|| synonym_name ||';' from dba_synonyms where table_owner = 'FLOWS_FILES';
    spool off;
    @syn.sql
    exit

  • What are the steps for loading master data

    Hello
    what are the steps for loading master data? i want to learn about loading all master data and the steps to choose the best way to load the data.
    if anyone has documents please send me the documents i will be really greatful
    [email protected] thanks everyone
    Evion

    Hi Heng,
    Download the data into a CSV file.
    Write a program using GUI_UPLOAD to upload the CSV file and insert records.Chk the below link for example
    http://www.sap-img.com/abap/vendor-master-upload-program.htm
    Reward Points for the useful solutions.
    Regards,
    Harini.S

  • What are the limitations in terms of data size  or performance while using csv or text file as datasource?

    <p>Also what are the limitations in terms of data size  or performance related issues while using csv or text file?</p><p>Is it the best practice to use csv , text file to use as a datasource to improve performance?</p><p>Please Advice.... </p><p>&#160;</p>

    <p>Hi,</p><p>Create Same Data Input for CSV and Text File ,Create 2 different reports one for CSV and One for Text ,run them one you have done that.</p><p>Go to Report Menu and Select Performance Information .Use the Data in that to check which one is good datasource to improve performance</p><p>Cheers</p><p>Rahul</p>

  • What are the different ways of retrieving data from Oracle8i

    What are the different ways of retrieving data from Oracle8i
    into my HTML page ?
    Is it JDBC and ODBC ?
    Is there any other way ?
    null

    Methods I tried,
    Applet using SQLJ/JDBC with JDBC drivers thin or Oci8,
    Oracle Web Publishing Assistant,
    HTP/HTF PL/SQL packages (if you have OAS 4.0)
    Webserver Generator of Designer 2000 (if you have OAS 4.0)
    Arun (guest) wrote:
    : What are the different ways of retrieving data from Oracle8i
    : into my HTML page ?
    : Is it JDBC and ODBC ?
    : Is there any other way ?
    null

  • WHY ARE THE UK USERS PAYING MORE FOR THE CLOUD SERVICES????

    WHY ARE THE UK USERS PAYING MORE FOR THE CLOUD SERVICES????
    OR IS IT JUST LAZYINESS THAT YOU CHANGE THE DOLLAR SIGN FOR THE POUND?

    it obviously doesn't, but then again some people or organisation only care about price when it comes to purchasing their laptops, and it is hard to justify making a special model for a selected few.
    Sure everything can be done if there is a market for it, but Lenovo won't know how large the market is before hand, as such they are hedging a bet by not moving with the market (which Lenovo have done on many occasions). I guess the finanical return is not the worth the risk for Lenovo to keep the 4:3 or 16:10 screens.
    But this debate has been going back and forth for a long time, so no point bringing it up again and again.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • What are the diffrent ways to copy data from one application to another?

    Hi,
    Can you guys tell me what are the different ways to copy data from one application to another application??
    I know we can do it through script logic using DESTINATION_APP.
    Is there any other way to copy data from one application to another application?
    Please help me
    Thanks,
    Charly

    You can also call a custom DTSX package in SSIS via the datamanager.
    there are at least 5 ways of transfering data in BPC between apps.
    1. Through the front end (excel etc) via evdre/evsnds
    2. Through Script logic using *Dest App
    3. Using BPC's standard export dtsx package via DM
    4. Using SSIS using BPC's custom SSIS tasks
    5. Through Script logic using stored procs.
    i am sure people will come up with more.
    remember if you use ssis and move data into any table but the wb, you need to process the cube afterwards.

  • We are the last ones

    well..... by the looks of it we are the last to get kit kat on the htc one list..
    Verizon when is it coming?
    HTC Software Updates | HTC United States

    That is for the HTC ONE MAX

  • Where are the last posters listed under the other tabs?

    Title says it all. Restore the last poster (and the originator) to the listings under content and discussions. It's important to know who's created or responded to a post.

    And the location of the OP.....
    I added this to another thread earlier today and one of the hosts acknowledged it with "good feedback", so we may get it back.

  • What are the 'gotcha' for exporting using Data Pump(10205) from HPUX to Win

    Hello,
    I have to export a schema using data pump from 10205 on HPUX 64bit to Windows 64bit same 10205 version database. What are the 'gotcha' can I expect from doing this? I mean export data pump is cross platform so this sounds straight forward. But are there issues I might face from export data pump on HPUX platform and then import data dump on to Windows 2008 platform same database version 10205? Thank you in advance.

    On the HPUX database, run this statement and look for the value for NLS_CHARACTERSET
    SQL> select * from NLS_DATABASE_PARAMETERS;http://docs.oracle.com/cd/B19306_01/server.102/b14237/statviews_4218.htm#sthref2018
    When creating the database on Windows, you have two options - manually create the database or use DBCA. If you plan to create the database manually, specify the database characterset in the CREATE DATABASE statement - http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_5004.htm#SQLRF01204
    If using DBCA, see http://docs.oracle.com/cd/B19306_01/server.102/b14196/install.htm#ADMQS0021 (especially http://docs.oracle.com/cd/B19306_01/server.102/b14196/install.htm#BABJBDIF)
    HTH
    Srini

  • What are the oracle processes involved in Data Guard Operation

    Hi All,
    I have a Primary and secondary physical standby database.
    I want to know what are the oracle processes involved in the synchrnization between primary and secondary.
    Thanks
    Santosh

    The best place to get this information is Data Guard Concepts and Administration Guild
    The link for 10g Release 2
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14239/concepts.htm#i1039416
    The link for 10g Release 1
    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10823/concepts.htm#1039415
    The link for Oracle 9i
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96653/concepts.htm#1027493

Maybe you are looking for

  • How to get the field

    Hi SAP GURUS, I m working in SAP  CRM5.0. when i m going to t code BUSB I m seeing the screen field and data base field. In field name (DATA BASE) I m getting 302 fields those r available in BP Screen. But in BP screen their r 2 fields (NAME_FIRST AN

  • How to create shortcut icons for settings

    how to create shortcut icons for settings

  • N97 Music Player Fault

    I installed all the updates through USB from my laptop and for 2 days afterwards my music player was working fine on the phone, then my music has vanished from my library on the phone, but I can still use any of them as ring tones through the rington

  • Director MX 2004: Cursor Error

    I have a project that has many text fields to each page. Most of the cursors work in the text box. Some do not. I cannot see the cursor, therefore I cannot see what position the cursor is in so I can edit the field. Does anyone know of this issue. Pl

  • Latest update of Firefox switches off my USB2 ports.

    My laptop has been running fine but then I hit a problem in that my USB2 ports would not work; my USB3 ports did work but not the 2. I tied all this back to 16 June when I installed the latest Microsoft updates and Intel Graphics update. At this time