Auditing non shema owner actions...

Greetings,
I have a main schema containing application data. Users access that schema thru front end application only. But some database users can connect without front end application (using sqlplus etc)
SETUP:
Main schema: HRAPPS
other schema : OPERATIONS,DATAOPER
REQUIREMENT: user OPERATIONS,DATAOPER can connect & perform DML operations on HRAPPS schema tables. I would like to audit ONLY OPERATIONS&DATAOPER actions on HRAPPS. (NO audit if hrapps accessed by shema owner....ie HRAPPS)
What I did:
BEGIN
DBMS_FGA.add_policy(
object_schema => 'HRAPPS',
object_name => 'TEMP',
policy_name => 'temp_test_AUDIT',
audit_condition => NULL, -- Equivalent to TRUE
audit_column => 'SALARY',
statement_types => 'INSERT,UPDATE,DELETE');
END;
But this audits actions of HRAPPS aswell ! I would like to audit ONLY actions performed by other users on HRAPPS schema, not HRAPPS itself.
Hope I clearly expressed my doubt. I am using 11gR2.
Pleas suggest.
thanks a lot
regards

You don't need FGA for that.
If you have Auditing enabled (with audit_trail=DB), you should be able to
AUDIT ALL BY OPERATIONS;
-- or, alternatively, AUDIT INSERT, UPDATE, DELETE BY OPERATIONS;
-- or, for selective audit AUDIT INSERT, UPDATE, DELETE ON HR.TEMP BY OPERATIONS
AUDIT ALL BY DATAOPER;
-- or, alternatively, AUDIT INSERT, UPDATE, DELETE BY DATAOPER;Hemant K Chitale

Similar Messages

  • Problem connecting with non-repository owner

    I'm using OWB 10gr2 with Oracle DB 10gr2
    I've created a repository and can connect with the designer using that repository owner.
    Within designer, I enabled another DB user for access (he got the OWB-role "everyone"). He is shown in the gloabl explorer -> security -> users.
    But when I try to connect with the designer using the non-repository owner, I get some german error message saying something like "No repository available for this user".
    The db user has the database roles OWB_xxx. He can connect to the database and access (read/write) the repository schema.
    OMB+> OMBCONNECT o_owbrep/o_owbrep@afxdq008:1521:sdbx USE REPOSITORY 'o_owbrep'
    Verbunden.
    OMB+> OMBCONNECT f344204/meta@afxdq008:1521:sdbx USE REPOSITORY 'o_owbrep'
    OMB01118: Herstellen einer Verbindung zum Repository nicht möglich. (Establishing a connection to the repository is not possible)
    PRS-00511: Sie können zum Repository o_owbrep keine Verbindung herstellen, weil es nicht vorhanden ist oder Sie kein registrierter Benutzer sind.
    (You cannot connect to the repository o_owbrep because it does not exist or you are not a registered user)
    Message was edited by:
    user518882
    Added results using ombplus.

    There are 2 different errors, the latter is a syntax problem. If you own the repository you can connect without the USE REPOSITORY clause.
    OMB+> OMBCONN sales/sales@localhost:1521:orcl102
    OMB01118: Could not connect to repository! PRS-00510: You need to specify which
    repository to work on to establish the database connection.
    Simply use:
    OMB+> OMBCONN sales/sales@localhost:1521:orcl102 USE REPOSITORY 'OWB'
    Connected.
    The initial post is something else... the user I connect with in the above statement is also a target user. Should not matter. It is also in Windows XP. Does it work if you use "target user"?
    JP

  • Auditing non-dba user grants?

    Hi,
    I'm trying to audit if an user grants a privilege on their objects to another user. ex:
    show user
    USER is "TESTUSER1"
    grant select on mytable1 to testuser2I'm trying with "AUDIT GRANT ANY OBJECT PRIVILEGE BY ACCESS" but it only audit grants/revokes performed by DBA user.
    Also I'm trying whit "AUDIT GRANT TABLE BY ACCESS" but nothing appears in audit trail.
    How can I do it?
    Oracle version 11.1.0.6
    audit parameters:
    audit_sys_operations                 boolean     TRUE
    audit_trail                          string      DBRegards

    Ok, I know what was happening.
    I was testing it without closing the test-user session. I didn't know that the AUDIT GRANT won't work in the active sessions at activation time.
    ex:
    TERMINAL 1:
    $ sqlplus '/as sysdba'
    SQL*Plus: Release 11.1.0.6.0 - Production on Vie Abr 26 11:44:04 2013
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Conectado a:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> show parameter audit_trail;
    NAME                                 TYPE        VALUE
    audit_trail                          string      DB
    SQL> audit resource, connect;
    Auditoría terminada correctamente.
    SQL> create user testuser1 identified by ****;
    Usuario creado.
    SQL> create user testuser2 identified by ****;
    Usuario creado.
    SQL> grant resource, connect to testuser1;
    Concesión terminada correctamente.TERMINAL 2:
    sqlplus
    SQL*Plus: Release 11.1.0.6.0 - Production on Vie Abr 26 11:45:19 2013
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Introduzca el nombre de usuario: testuser1
    Introduzca la contraseña:
    Conectado a:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> create table TEST_TABLE (n number);
    Tabla creada.
    SQL> grant select on TEST_TABLE to testuser2;
    Concesión terminada correctamente.
    SQL> revoke select on TEST_TABLE from testuser2;
    Revocación terminada correctamente.
    SQL> drop table TEST_TABLE;
    Tabla borrada."testuser1" session still open in terminal 2.
    TERMINAL 1:
    SQL> set linesize 190
    SQL> col OBJECT format A30
    SQL> select USERNAME, TIMESTAMP, ACTION_NAME, OWNER || '.' || OBJ_NAME OBJECT, SES_ACTIONS from dba_audit_trail where USERNAME='TESTUSER1' order by TIMESTAMP;
    USERNAME                       TIMESTAMP            ACTION_NAME                  OBJECT                         SES_ACTIONS
    TESTUSER1                      26-ABR-2013 11:45:22 LOGON                        .
    TESTUSER1                      26-ABR-2013 11:45:35 CREATE TABLE                 TESTUSER1.TEST_TABLE
    TESTUSER1                      26-ABR-2013 11:46:00 DROP TABLE                   TESTUSER1.TEST_TABLE
    SQL> AUDIT GRANT TABLE;
    Auditoría terminada correctamente.The AUDIT GRANT TABLE is now activated, but it won't work yet...
    TERMINAL 2 (testuser1 session was still opened):
    SQL> create table TEST_TABLE2 (n number);
    Tabla creada.
    SQL> grant select on TEST_TABLE2 to testuser2;
    Concesión terminada correctamente.
    SQL> revoke select on TEST_TABLE2 to testuser2;
    revoke select on TEST_TABLE2 to testuser2
    ERROR en línea 1:
    ORA-00905: falta una palabra clave
    SQL> revoke select on TEST_TABLE2 from testuser2;
    Revocación terminada correctamente.
    SQL> drop table TEST_TABLE2;
    Tabla borrada.TERMINAL 1:
    SQL> select USERNAME, TIMESTAMP, ACTION_NAME, OWNER || '.' || OBJ_NAME OBJECT, SES_ACTIONS from dba_audit_trail where USERNAME='TESTUSER1' order by TIMESTAMP;
    USERNAME                       TIMESTAMP            ACTION_NAME                  OBJECT                         SES_ACTIONS
    TESTUSER1                      26-ABR-2013 11:45:22 LOGON                        .
    TESTUSER1                      26-ABR-2013 11:45:35 CREATE TABLE                 TESTUSER1.TEST_TABLE
    TESTUSER1                      26-ABR-2013 11:46:00 DROP TABLE                   TESTUSER1.TEST_TABLE
    TESTUSER1                      26-ABR-2013 11:47:16 CREATE TABLE                 TESTUSER1.TEST_TABLE2
    TESTUSER1                      26-ABR-2013 11:47:52 DROP TABLE                   TESTUSER1.TEST_TABLE2Lets close and reopen "testuser1" session
    TERMINAL 2:
    SQL> exit
    Desconectado de Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    $ sqlplus
    SQL*Plus: Release 11.1.0.6.0 - Production on Vie Abr 26 11:48:19 2013
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Introduzca el nombre de usuario: testuser1
    Introduzca la contraseña:
    Conectado a:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> create table TEST_TABLE3 (n number);
    Tabla creada.
    SQL> grant select on TEST_TABLE3 to testuser2;
    Concesión terminada correctamente.
    SQL> revoke select on TEST_TABLE3 from testuser2;
    Revocación terminada correctamente.
    SQL> drop table TEST_TABLE3;
    Tabla borrada.Now the grant/revoke is audited:
    TERMINAL 1:
    SQL> select USERNAME, TIMESTAMP, ACTION_NAME, OWNER || '.' || OBJ_NAME OBJECT, OBJ_PRIVILEGE, GRANTEE from dba_audit_trail where USERNAME='TESTUSER1' order by TIMESTAMP;
    USERNAME                       TIMESTAMP            ACTION_NAME                  OBJECT                         OBJ_PRIVILEGE    GRANTEE
    TESTUSER1                      26-ABR-2013 11:45:22 LOGOFF                       .
    TESTUSER1                      26-ABR-2013 11:45:35 CREATE TABLE                 TESTUSER1.TEST_TABLE
    TESTUSER1                      26-ABR-2013 11:46:00 DROP TABLE                   TESTUSER1.TEST_TABLE
    TESTUSER1                      26-ABR-2013 11:47:16 CREATE TABLE                 TESTUSER1.TEST_TABLE2
    TESTUSER1                      26-ABR-2013 11:47:52 DROP TABLE                   TESTUSER1.TEST_TABLE2
    TESTUSER1                      26-ABR-2013 11:48:26 LOGON                        .
    TESTUSER1                      26-ABR-2013 11:48:39 CREATE TABLE                 TESTUSER1.TEST_TABLE3
    TESTUSER1                      26-ABR-2013 11:48:46 GRANT OBJECT                 TESTUSER1.TEST_TABLE3          ---------Y------ TESTUSER2
    TESTUSER1                      26-ABR-2013 11:48:56 REVOKE OBJECT                TESTUSER1.TEST_TABLE3          ---------N------ TESTUSER2
    TESTUSER1                      26-ABR-2013 11:49:02 DROP TABLE                   TESTUSER1.TEST_TABLE3
    10 filas seleccionadas.Anyway, thanks Balazs Papp because i was looking for the AUDIT GRANT ON DEFAULT ;)
    Regards

  • ORA-19007: Schema - does not match expected T0090.xsd for non xsd owner

    I have registered an xsd in /home/divload/xsd/T0090.xsd. User "prmt" is the owner of this resource. User prmt can schemavalidate xml against this xsd just as it is now. However, I have package code in "prmt_app" user account that will actually do the schemavalidate - not prmt user. When I run the exact same code using the exact same xml with the T0090.xsd above I am getting ORA-19007: Schema - does not match expected T0090.xsd. prmt_app has "all" privs on "/home", "/home/divload", "/home/divload/xsd", and "/home/divload/xsd/T0090.xsd". What am I missing?
    XSD header info
    <?xml version="1.0" encoding="utf-8"?>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb">
         <xs:element name="T0090" xdb:defaultTable="T0090">
    ...XML header info
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <T0090 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="T0090.xsd">
    <PERMIT>
    ...The error occurs when I am inserting into this table off disk..
    create table prmt.cview_xml (filename varchar2(256), xmldoc xmltype) xmltype xmldoc xmlschema "T0090.xsd" element "T0090";
    Edited by: Mark Reichman on Jun 28, 2010 2:42 PM

    I did all that before posting the orignial post..
    declare
      v_schema_exists varchar2(1) := 'N';
      res             boolean;
      schemaURL       varchar2(100) := 'T0090.xsd';
      schemaPath      varchar2(100) :=  '/prmt/xsd/T0090.xsd'; --'/public/T0090.xsd';
      xmlSchema xmlType := XMLTYPE(bfilename('DIR_PRMT_OUT_CVIEW','T0090.xsd'),NLS_CHARSET_ID('AL32UTF8'));
    begin
      begin
        select 'Y'
          into v_schema_exists
          from sys.all_xml_schemas  -- changed from user_xml_schemas
         where schema_url = schemaURL;
        dbms_xmlSchema.deleteSchema(schemaURL,4);
        exception
          when NO_DATA_FOUND then
            null;
      end;
      if (dbms_xdb.existsResource(schemaPath)) then
        dbms_xdb.deleteResource(schemaPath);
      end if;
      res := dbms_xdb.createResource(schemaPath,xmlSchema);   
      dbms_xmlschema.registerSchema ( schemaURL, xdbURIType(schemaPath).getClob(), TRUE, TRUE, FALSE, TRUE );
    end;
    / I guess my understanding was that I could grant another oracle user access to my registered schema just like I can grant a single user access to a table. Evidently I only have two options. Only the schema owner can use the schema or everyone can use the schema and I cannot grant access to a single user other than myself.
    Edited by: Mark Reichman on Jul 2, 2010 9:08 AM
    Edited by: Mark Reichman on Jul 2, 2010 9:09 AM

  • Plan to give my old Nano to a PC non-iTunes owner, but

    I plan to buy a new Nano and give my old one to a friend who has a PC.  I doubt he wants to upload iTunes because we like the same music, so then how can he charge the Nano's battery?  What will happen if he just connects with the USB cord (or whatever it's called) to his PC?  Will that charge it?  Thanks.
    PS - I got my Nano in 2007 or 2008 and it came with an outlet wall charger, do the new 2014 ones come with those still?  If they do, then I'll just give my old charger to my friend.  Thanks if anyone can help.

    They do not come with a charger. Have your friend buy a wall charger.

  • Auditing Approval Action

    Hi All,
    I have a workflow, which performs email notifications and approvals. everything is working fine, i.e sending emails and approval forms to the corresponding approver. Approval process is also working fine.
    but i need to audit the approval process, that i am unable to do.
    when i run the audit log report, the action 'Approval ' is not showing in the admin interface.
    and also i have to generate report by using admin interface only, i should not use Audit workflow services.
    any ideas please

    Call this action after sending the email
    <Action id='1' name='Audit Name' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='audit'/>
    <Argument name='type' value='User'/>
    <Argument name='name'>
    <s>AuditObjName</s>
    </Argument>
    <Argument name='action' value='View'/>
    <Argument name='accountId' value='$(accountId)'/>
    <Argument name='status' value='success'/>
    <Argument name='resource' value='resourceName'/>
    <Argument name='error'>
    <s>Message</s>
    </Argument>
    <Argument name='subject' value='$(WF_CASE_OWNER)'/>
    <Argument name='organizations'>
    <ref>user.waveset.organization</ref>
    </Argument>
    </Action>

  • Unable to capture Exchange Mailbox Auditing events for email creation

    We are looking to capture Owner mailbox auditing events using the native Exchange 2013 auditing tools (Search-MailboxAuditLog). I have auditing enabled with all actions for Owner, and capture items performed via Outlook, except for new emails created.
    If I create new emails via OWA, I am able to capture the event, but as soon as I go back to Outlook and create a new message, I don’t see anything audited. I also tried this is our Dev environment and seeing the same behavior. Has anyone else experience this
    behavior?

    Hi,
    I have a test in my environment. If I create a message on Outlook as a owner, the mailbox audit logging can't record it.
    If I create a message on Outlook as a delegate, when using the Search-MailboxAuditLog cmdlet to search the audit log, it will be displayed as follows:
    The operation is "SendAs", not "Create".
    Hope this can be helpful to you.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Amy Wang
    TechNet Community Support

  • Can't enable mailbox audit logs

    Hello!
    I can't enable mailbox audit logs. I use cmdlet Set-Mailbox -Identity "mailbox" -AuditEnabled $true and Get-Mailbox shows that
    audit is enabled. But when i check Get-Mailbox| Get-MailboxFoldersStatistics there is no "Audit" subfolder, and all audit searches also return no results. 
    I am working now with several Exchange installations (five actually, and one is brand-new test lab) and checked the same in each organization. Result was the same!
    I am stronly sure i miss something important, could you point it to me?

    Hi,
    Please use the following command to check the Mailbox Audit Logging action setting.
    Get-Mailbox –Identity “username” | fl name,*audit*
    Are there any administrator, delegate, and owner actions in the audit logging configuration for that mailbox? Please post them to check this issue.
    If the settings above are configured correctly, only the administrator, delegate, and owner actions specified in the audit logging configuration for the mailbox are logged. And the “Audits” folder will show up after the administrator, delegate,
    and owner take the actions specified in the audit logging configuration.
    By default, these actions in the audit logging configuration should be like this:
    AuditAdmin        : {Update, Move, MoveToDeletedItems, SoftDelete, HardDelete, FolderBind, SendAs, SendOnBehalf, Create}
    AuditDelegate   : {Update, SoftDelete, HardDelete, SendAs, Create}
    AuditOwner        : {}
    By the way, which command do you use to search the audit log?
    Mailbox audit logging procedures
    https://technet.microsoft.com/en-us/library/ff461939%28v=exchg.150%29.aspx?f=255&MSPPError=-2147217396
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • AUDIT SYS.AUD$

    Hi All,
    We have audit in our database and we execute the following commands:
    SQL> AUDIT ALL on SYS.AUD$;
    Audit succeeded.
    SQL> SELECT * from DBA_OBJ_AUDIT_OPTS;
    OWNER                          OBJECT_NAME                    OBJECT_TYPE             ALT AUD COM DEL GRA IND INS LOC REN SEL UPD REF EXE CRE REA WRI FBK
    SYS                            AUD$                           TABLE                   S/S S/S S/S S/S S/S S/S S/S S/S S/S S/S S/S -/- -/- -/- -/- -/- S/S
    SQL> show parameter audit
    NAME                                 TYPE        VALUE
    audit_file_dest                      string      /opt/oracle/admin/INS_D_PS_NGB
                                                     _OFM/adump
    audit_sys_operations                 boolean     FALSE
    audit_syslog_level                   string
    audit_trail                          string      DB
    The problem is, client is saying audit is not completed as its not showing for all actions :
    WRI REA CRE EXE REF it still showing -/-
    how to enable audit for all above actions also?
    Please suggest. thanks.
    Regards,
    Ankit

    Ankit, not all auditable operations apply to all object types such as you cannot use the execute privilege against a table.  Take another look at the what privileges are not showing.
    HTH -- Mark D Powell --

  • Copying actions - what is it that I don't get?

    So my PC mobo crashed and I needed to upgrade. The old system disk no longer boots but its there in the PC. Looked in the FAQ on how to copy Actions from old installation (Actions Palette stuff). So I moved it and it is much bigger than the default one (25K vs 20k default). Then I start Photoshop and for some reason the copied file is overwritten with something that is exactly the same size as the default one (20k) and none of my Actions are to be found?
    So where did I go wrong here? Move was CS3 to CS3, old OS was XP, new OS is Vista.

    Thanks for the quick replay and sorry for being too vague in the question. As the crash was a - shall we say - surprise, I had not saved the actions so from the FAQ I gathered that my only chance was to copy the "Action Palette.psp" file from somewhere below my old XP user account to the new user account (.../Adobe Photoshop CS3 Settings/). So there is no .atn file involved as I never had to chance to make one :-(.

  • How does one transfer CS5 actions for use with CS6?

    CS6 installation, which was uneventful, has transferred none of my actions from my copy of CS5. The CS5 actions are located in the actions folder of the APPLICATION/PHOTOSHOP CS5/PRESETS/ACTIONS.  The "actions" folder in application support/adobe in my library is empty, and has always been so.
    Only the CS6 default actions are located in the same folder for CS6.
    I use imac i7, lion.
    Note that i also have CS3 and CS4 on my machine. This due to recent upgrade to CS5 and recent upgrade to LION, and my general paranoia.
    Must i load each action into CS6, one at a time?
    thanks to any and all.
    vince

    Re: how does one transfer CS5 actions for use with CS6?
    On a Mac - There are multiple ways to do this.  I have done them both ways. In order to do this you need to know where you have your actions stored, and you can move them all at once if you have them stored in the same location.
    1. You can load an action ONE AT TIME into your actions palette by:
         A. Open up the action palette and click on the little arrow with 4 little horizontal lines next to it on the upper right corner of the actions palette.
         B. Select "Load Actions" and a Finder window will open up and you can search your computer through this window for your actions.
         C. Click on the action from the Finder window then click 'Open' at the bottom right of the finder window.
         D. To save these so that they appear every time you open up your actions palette, go back to the little arrow at the top right of the actions palette and when the drop down window opens- click on 'Save Actions'. It will select the location where the          actions are currently stored as the place to save them. If you want to change that path, you can do it at this time in the little path window.  I just leave it, since I keep all my actions stored in the same file.
    2. TO MOVE MULTIPLE ACTION SETS AT ONCE
         A. Open up CS6 (or CS5) and move the Photoshop workspace it to the right side of your computer screen so you can see your desktop on the left side.
         B. Open up your Finder search window from your dock (the square blue head icon thingy for those who are new to photoshop). Move this to the left side of your screen so you can see the Photoshop work space on the right and the Finder window          on the left. In the Finder window, navigate to the file where all your actions are stored, select all the actions in the file (command+A will select everything in the file if you are actively inside the open file) or you can select multiple files           individually by continuously holding down the command key and clicking on the different actions you want to move.
         C. With the Photoshop workspace visible on the right, and the actions palette open so you can see that the actions actually transferred - In the Finder window, click the selected actions you want to load and drag them over to the Photoshop           workspace.  I did this without an image open, I just dragged them onto the empty workspace.  The actions should all appear immediately in the actions palette that is open.
         D. To save these so that they appear every time you open up your actions palette, go back to the little arrow at the top right of the actions palette and when the drop down window opens click on 'Save Actions'. It will select the location where the           actions are stored as the place to save them. If you want to change that path, you can do it at this time in the little path window.  I just leave it, since I keep all my actions stored in the same file.
    I hope this helps. 
    and I hope there are no typos. 

  • How to view all Actions in the Photoshop Actions Panel

    My computer crashed and I removed all apps and reinstalled so now none of my actions appear. However I do have a backup file of all of them and want to reinstall but before when I was using cs6 ( Im assuming same thing as CC as it was all on the subscription plan ) I would click actions then the right arrows and it would bring me a big screen of all the actions ( even the ones that were just preloaded in ps ) and it was a big box with all the actions and some options to record etc...Now that box isn't there and it's just a single column drop down menu.

    Actions can be loaded and save to any folder.  Use the dialog to get to where you have saved your Actions. I never store actions in any Adobe Folder.

  • Button Actions are not working -invoking task flow from other project regio

    Hi
    I have a project using a mani.jspx file having a regions and the region is updated with different views based on a router condition in my bounded task flow. Everything working fine with in the project. I have a seperate project in my application having an index.jspx and region in it. I created the ADF lib jar file of the first project and imported to this project. I could invoke the task flow in the first project to the region in the index.jspx file in the seconed project.But none of the action managed bean method attached to the buttons in this view are working.The methods are not getting called on clicking on button and no error in the backend console of Integrated weblogic server.Any body can help what could be the issue ?
    Thanks
    Suneesh

    The issue that is happening when I refreshed the region with task flow from the project I imported.If I load the taskflow from the imported project on first time rendering all my managed bean actions are executing but if I load a different flow initially and change the taskflow Id imported from other project none of the managed actions are working.
    Thanks
    Suneesh

  • Can't create bookmarks. New install, have disabled all extensions, tried safe mode and reset to defaults. No help from any of these actions.

    Hello.
    Problem statement is very simple: Firefox will not create bookmarks.
    New installation with Mint 17. New PC build with Asus A58M-A/USB3 mother board, AMD A4 6300 processor, 4 gig memory stick.
    All of the Mint and Firefox packages are up to date.
    A new profile was created for testing, Firefox has been started in safe mode, purged and re-installed and reset to defaults. None of these actions have helped.
    Here is the info from the Troubleshooting Information within Firefox
    Application Basics
    Name: Firefox
    Version: 33.0
    User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:33.0) Gecko/20100101 Firefox/33.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Mint Search Enhancer
    Version: 1.0
    Enabled: true
    ID: [email protected]
    Name: Stylish
    Version: 1.0.7
    Enabled: true
    ID: {46551EC9-40F0-4e47-8E18-8E5CF550CFB8}
    Graphics
    Adapter Description: X.Org -- Gallium 0.4 on AMD ARUBA
    Device ID: Gallium 0.4 on AMD ARUBA
    Driver Version: 3.0 Mesa 10.1.3
    GPU Accelerated Windows: 0/1 Basic
    Vendor ID: X.Org
    WebGL Renderer: X.Org -- Gallium 0.4 on AMD ARUBA
    windowLayerManagerRemote: false
    AzureCanvasBackend: cairo
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: none
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.frecency_experiment: 3
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.upgradeBackup.latestBuildID: 20141013200257
    browser.startup.homepage_override.buildID: 20141013200257
    browser.startup.homepage_override.mstone: 33.0
    dom.mozApps.used: true
    extensions.lastAppVersion: 33.0
    media.gmp-gmpopenh264.lastUpdate: 1416067922
    media.gmp-gmpopenh264.version: 1.1
    media.gmp-manager.lastCheck: 1416067922
    network.cookie.prefsMigrated: true
    places.history.expiration.transient_current_max_pages: 80569
    plugin.disable_full_page_plugin_for_types: application/pdf
    privacy.sanitize.migrateFx3Prefs: true
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.1 Basic ECC
    Version in use: 3.17.1 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.1 Basic ECC
    Version in use: 3.17.1 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.1 Basic ECC
    Version in use: 3.17.1 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.1
    Version in use: 3.17.1
    Experimental Features
    What other information can I provide?
    Thank you.
    Jim

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Auditing...without auditing....????

    Hi,
    very strange title... but....
    I have an application developed in Oracle Forms10g. The end-users connect via a custom login form to the database as application users... I mean two or more end-users (each one is related to an application user , let's say "john b","stella k",...e.t.c.) connect to the database via a db user called db_user_a.... whereas another group of end-users are connected to the database via another db user called db_user_b.... e.t.c....
    In this situation , i cannot audit each enduser's actions in the database.... since with the same db user(db_user_a,db_user_b) are connected more than one end-users...
    So , presumably... i can relate the v$session with a table located in the application's dataschema and by comparing the logon_time(of v$session) to date_in/time_in of my table the sid of the v$session can be picked up....
    Having this sid column of the v$session is there any manner to record what the user have done insert(s),update(s)...e.t.c.... in one table of my application...????
    I use Oracle10g....
    Many thanks,
    Simon

    Hi Simon,
    >>Is FGA included to the Oracle10g Standard Edition....?????
    No, only in EE. Check out this link:
    "http://www.oracle.com/database/product_editions.html"
    HTH
    Zack

Maybe you are looking for