Use of SRM policies to secure the data for non-DB Application

Hello Experts,

Can I use policies MEV to restrict access to data for users in the non Application of database?  Is it a requirement for users to have an Oracle database Id?

Thank you very much in advance.

Do you mean that you want to use the SRM in an environment where your session to share a connection diagram? Like most three-tier application? If so, no problem: strategy as CONTEXT_SENSITIVE and pick up Ideas of the real user through sys_context calls.

--

John Watson

Oracle Certified Master s/n

http://skillbuilders.com

Tags: Database

Similar Questions

  • HFM SmartView Bug? HsGetValue retrieves the data for non-existent entity node.

    Hi guys,.

    We are facing a problem of SmartView 11.1.2.5.520 in combination with HFM 11.1.2.4.103. I would like to know if you can reproduce it.

    Assume it's our hierarchy of entity:

    Parent1 (EUR)

    Child1 (USD)

    Child2

    Child3

    Parent2 (GBP)

    Child4

    Children5

    We want to extract the data via "HsGetValue" for in < currency Parent > Child1, so need to entity to return node information: "Parent1.Child1." Works very well.

    Strangely enough, that's good, that the Parent2.Child1 data retrieves, although node do not exist!

    If you try it with ad hoc, an error message appears saying "Member does not exist", which is correct.

    Can someone check the BUG? If so, I'll open a SR.

    Thanks in advance!

    Carmonte

    Thank you guys! You responses helped me to understand that he is not really a bug.

    • HsGetValue retrieves a nonexistent node of to data from first available parent in the hierarchy.
    • Top of to HsGetValue retrieves no data. What is good.

    Knowing that, I can live with that.

    Thank you!

    Carmonte

  • Is there a way to get the data for submission of form of eloqua using the REST API?

    I was wondering if there is a way to get the data for submission of form of eloqua using the REST API?

    Thank you

    On the page that egan related, there is a 'RawData' field for FormSubmit activities. In this area, the raw sending the form query string is returned.

    Whatever it is, you can get this info from the activities of the API block, or the endpoints data Rest API.

  • Write delay failed unable to save all the data for the file $Mft

    Have a frustrating problem.  Help is greatly appreciated.  Learned the hard way and lost a dwg important issue which was unrecoverable.  Bought a new drive external hard seagate.  Could not back up the entire system with software pre-installed.  Download acronis true image home 2011.  Tried to backup system.  Receive error when trying to backup messages; 'Delay to failure of Scripture; Reading of the sector; Windows was unable to save all the data for the file $Mft. The data has been lost.  Have tried many fixes.  Unable to disable write caching method (grayed out / unclickable).  Played regedit 'EnableOplocks' is not listed to select.  Attempted to run microsoft 'fix it' and got the blue screen of death.  Short hair out of my head.  Suggestions appreciated.

    I don't know where Microsoft 'Technical support engineers' get their information.

    Write caching without a doubt "does apply to external hard drives", but it is usually disabled to prevent to sort the problem you are experiencing.

    I've seen several positions reporting to the same question that you do.  All of these positions were with SATA drives.  Is your Seagate eSATA drive?

    The disc is recognized as an external drive in Device Manager?  In Device Manager, go to the drive properties dialog box and click the policies tab.  An external drive should have two options: "Optimize for quick removal" and "Optimize for performance".  An internal hard drive shows the options as gray (with 'performance' selected), but there should also be a checkbox "Enable disk write cache" under the second option.

    What shows in your policies tab?

    If I understand correctly, "writeback" or "write behind" is implemented by disc material or its pilot.  If the option is not available on the drive properties > policies tab, I would suggest to contact Seagate support.

  • Need to retrieve the data for the current date.

    Hello

    I have a table which then retrieves information when using this command.

    Select ta_acct, shift, created_on track_alerts;

    Technicolor A 24 March 14

    Technicolor A 24 March 14

    Technicolor A 24 March 14

    Technicolor A 24 March 14

    Manitoba telecom a 24 March 14 system

    Technicolor A 24 March 14

    I used this statement to retrieve the data for the given date.

    Select ta_acct, shift, created_on track_alerts where created_on = 24 March 14 ';

    Its not data recovery.

    Need help.

    Kind regards

    Prasad K T,.

    984002170

    Prasad K T wrote:

    Yes the created data type is date.

    CREATED_ON DATE

    Partha thanks it works now.

    Select ta_acct, shift, created_on in track_alerts where to move is: Shift and TRUNC (created_on) = TO_DATE('24-MAR-2014','DD-MON-YYYY');

    Still, I made a small change to my querry.

    Select ta_acct, shift, created_on track_alerts where to move is: shft and TRUNC (created_on) = TO_DATE (select double sysdate,'MON-DD-YYYY "");

    For this statement, it does not work.

    of course not...

    first: sysdate returns a date so no need of conversion here

    and

    second SYSDATE includes time, so your application should look like this:

    Select ta_acct, shift, created_on in track_alerts where to move is: Shift and TRUNC (created_on) = trunc (sysdate)

    or

    Select ta_acct, shift, created_on in track_alerts where to move is: shft and created_on > = trunc (sysdate) and created_on<>

    HTH

  • How to get the date for the first Monday of each month

    Dear members,

    How to get the date for the first Monday of each month.

    I wrote the following code

    SELECT decode (to_char (trunc (sysdate + 30, 'MM'), 'DAY'), 'MONDAY', trunc (sysdate + 30, 'MM'), NEXT_DAY (trunc (sysdate + 30, 'MM'), "LUN")) FROM DUAL

    But he looks at complex bith.

    Abhishek

    Published by: 9999999 on 8 March 2013 04:30

    Use the IW format - it will make independent NLS solution. And all you need is truncated 7th day of each month using IW:

    select  sysdate current_date,
            trunc(trunc(sysdate,'mm') + 6,'iw') first_monday_the_month
      from  dual
    /
    
    CURRENT_D FIRST_MON
    --------- ---------
    08-MAR-13 04-MAR-13
    
    SQL> 
    

    Here is the list of the first Monday of the month of this year:

    with t as(
              select  add_months(date '2013-1-1',level-1) dt
                from  dual
                connect by level <= 12
             )
    select  dt first_of_the_month,
            trunc(dt + 6,'iw') first_monday_the_month
      from  t
    /
    
    FIRST_OF_ FIRST_MON
    --------- ---------
    01-JAN-13 07-JAN-13
    01-FEB-13 04-FEB-13
    01-MAR-13 04-MAR-13
    01-APR-13 01-APR-13
    01-MAY-13 06-MAY-13
    01-JUN-13 03-JUN-13
    01-JUL-13 01-JUL-13
    01-AUG-13 05-AUG-13
    01-SEP-13 02-SEP-13
    01-OCT-13 07-OCT-13
    01-NOV-13 04-NOV-13
    
    FIRST_OF_ FIRST_MON
    --------- ---------
    01-DEC-13 02-DEC-13
    
    12 rows selected.
    
    SQL> 
    

    SY.

  • I have problem with my account. I did uptade my assinature to 27/08/2015 and my photoshop is blocked, because the date for uptade is with 22/09/2015. I need urgently. What do I do? Thank you

    I have problem with my account. I did uptade my assinature to 27/08/2015 and my photoshop is blocked, because the date for uptade is with 22/09/2015. I need urgently. What do I do? Thank you

    Hi Camila,

    You will need to contact support by calling/chat for this request.

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

    Kind regards

    Sheena

  • Error in the printer for 16-bit application that runs in Windows7 32 error "caused a floating point exception in hpcui121.dll to 0x5b39caea.

    Original title: Error in the printer for 16-bit application that is running in Windows7 32

    I have a 16-bit application. I'm running Windows 7 32. All of a sudden, I can't print my application. I have two messages: "caused a floating point exception in hpcui121.dll in 0x5b39caea" and "caused an access violation in WOW32. DLL to 0x6dc50421. Any help to solve the problem would be greatly appreciated.

    Hello

    Have you tried the methods suggested in my previous post dated August 29?

    Response to help you further.

  • "Securing the data of performance" in Windows 7

    Windows Hi community,

    I was required to "secure performance data" on a computer that is running Windows 7 Enterprise. I couldn't find suggestions for earlier versions of Windows
    I tried to follow the above the best Web page possible.
    1. I've first, search the directory of said in Regedit "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib"
    2. But I did not understand how to use the sample code, once I got to the phone book.
    • Under Perflib, there are three subfolders: _V2Providers, 009, CurrentLanguage. I do things inside subfolders?
    • In the right pane, there is a single line. In the name column, there is a white icon with reading letters "ab" in this regard, after _the ab icon_ it shows "(Default)". In the Type column, he shows REG_SZ. There is nothing in the data column. Change this line?
    If I could ask
    a. is there a manual page /instruction on how to "secure" data for Windows 7?
    b. If not, do you know how to use the sample code, once I get to the directory?
    Thank you

    Hello

    The issue of Windows is more complex than what is generally answered in the Microsoft Community Forums. Appropriate in the TechNet Forums. Please post your question in the TechNet Forums.

    You can check the link to post your question:

    http://social.technet.Microsoft.com/forums/en-us/category/w7itpro

    I hope that helps!

  • Oracle: Use LEFT OUTER JOIN, but convert the data to an external list

    Hello, all,.

    I know it can be done; I just don't remember how I got it done, oh there are so many years.

    Assumes that the tables exist for groups and individuals.  People can belong to several groups.

    SELECT g.groupName, p.lastName || ', ' || p.firstName as fullName
    FROM groups g LEFT OUTER JOIN groupPersonAssociation gpa ON gpa.groupID = g.groupID
                  LEFT OUTER JOIN person p ON p.personID = gpa.personID
    ORDER BY g.groupName, fullName
    

    This gives us:

    Group One          Alpha, Daniel
    Group One          Bravo, Charles
    Group One          Charlie, Chuck
    Group Two          Beta, Alpha
    Group Two          Delta, Bonnie
    Group Three        Echo, Bunny
    Group Three        Golf, Samuel
    Group Three        November, Stan
    

    How word the SQL to get the data as:

    Group One          Alpha, Daniel | Bravo, Charles | Charlie, Chuck
    Group Two          Beta, Alpha | Delta, Bonnie
    Group Three        Echo, Bunny | Golf, Samuel | November, Stan
    

    V/r,

    ^_^

    I finally thought to it.  I was using incorrect keywords on Google.

    SELECT g.groupName, LISTAGG(p.lastName || ', ' || p.firstName,' | ') WITHIN GROUP (ORDER BY g.groupName) "fullName"
    FROM groups g LEFT OUTER JOIN groupPersonAssociation gpa ON ggpa.groupID = g.groupID
                  LEFT OUTER JOIN person p ON p.personID = gpa.personID
    GROUP BY g.groupName
    ORDER BY g.groupName, fullName  
    

    Just in case someone else is going through this same desire.

    HTH,

    ^_^

  • Which adapter to use on hard drive to get the data and images turned off before replacing the motherboard?

    I have a HP G61-429WM, product WA961UA #ABA number. Windows7 operating system. It was abandoned and cracked the screen. I replaced the screen, it then booted up once or twice, and then began to not initialize. During this period, I noticed a crack in the lower shell into the Jack of the battery. Do you have a fairly long conversation with the support, the end result = send to paid the replacement of the main card or buy the same Board and fix it myself. He said that all the data on the disk wouldn't be there when I returned. It was also mentioned that the reader could be removed and a usb adapter could be used on the disk to retrieve data before the reader gets erased due to the relocation of the card.

    Everyone would like to recommend a usb adapter to do? I will buy one, I want to just make sure it is right for the type of drive in this unit.

    Thanks in advance,

    Sylvia

    DavidD56.

    I've used this for any type of reader:http://www.newegg.com/Product/Product.aspx?Item=N82E16812232002

    But, you can perform a single completed unit:

    http://www.Newegg.com/product/product.aspx?item=N82E16812123312

  • Online form to allow clients to submit a web application and create "Catégories" and affect one area secure the data provided?

    Is it possible a customer filling out a form with some information, that adds data to a web application - but at the same time it creates 6 x 'categories' and affects an area secure web application that has been submitted (by selecting a drop down current secure areas).

    That's what I'm trying to do.

    I have a client that handles the different places.  They download media THAT PDF reports in British Colombia through media downloads and fix them so only those with the correct secure area members to see.  It is then the client has a web application that lists all of the locations.  Each of them has 6 x sets of unique documents that must be downloaded and read by site.   Currently I have added 6 new categories in the admin settings, then go to the web application and manually add the code for the category of support library code appropriate.

    Ideal process:

    1 / the customer logs on to an online form to create a new location - they fill in a few fields of info (name or location, address, etc.)

    2 / they choose a "Secure Zone" that the location belongs to a loss of worms down

    Form 3 / hidden fields and then creates 6 x new categories and place the ID numbers of the category in the web application for the location

    Think I'm too ask a lot... but you never know?

    HI Mel,

    Don't know how to go about this configuration, create categories of the front-end webapps and secure zone allocation is not something you (as a visitor of a site) can do.

  • Web service data control - how to use the data for the axis2 service manager

    Hello

    I have the following questions:
    I consume a Web service using the web service based on axis2, MTOM data. The webservice response returns a complex response object.

    1. How can I link the (type axis2 DataHandler object) the response content to be stored in a column of data?
    2. in the response object, the name of the file is stored in a hash table structure, how can I retrieve the value of a specific key only? In an ideal world, it's a no-brainer, in ADF(newbie here) I do not know how to extract it?
    3. in addition, the display of collectibles for a response from webservice with a radio button beside each line?

    Any help is greatly appreciated.

    Thank you
    J

    Published by: 843190 on March 22, 2011 18:16

    Published by: 843190 on March 22, 2011 18:20

    Is the part of the information that you want to display available as a separate attribute in the results of the Web service in the data control panel?
    If not, and you do a manipulation of the result to retrieve content, you can consider creating a Java proxy for the Web service, in that proxy to expose a method that gives you the news you need and then expose the proxy as a data control. Then, you can call the specific method to get the specific information in the format you need.

  • SECURITY OF DATA for sql queries

    Hi, I'm new to APex.

    I use APex 4.2, I want to how to ensure the security of the data in the reports.

    When I write the Sql query in interactive report, it is easy for the end user to hack and see the code.

    So is there an alternative way to encrypt the code, so that no one can see the code except me.


    Thank you
    Nihar Narla

    How comes to the security of the data? but this has been discussed on the forum in the past, please search the forum before posting a new question.

    Also look at this feature request https://apex.oracle.com/pls/apex/f?p=55447:4 research of Security Code

  • Save all the data for a while loop

    I already asked a similar question, but it is perhaps not very clear, and there are a few concepts that I did not understand.

    1. I have a keyboard to generate flow DTMF signal (I call it stream because it contains several shades that consist of a full phone number)

    2. I would like to save it as a wav file, but I guess that another format is correct and because the writing on a wav file does not support add so for this particular case, I use writing waving instead of writing to wav format

    My approach is to have a structure of queue so that I can write each iteration results in a file.

    (i) when I try to retrieve the data, there's nothing but 0.

    (II) my intention is to get 8000 samples per second (fs = 8 000) but he back up data so fast

    I have attached the file so if there is a way to solve problems, please help me.

    This vi includes many elements discussed above. There are no provisions for the intervals 'no signal '.

    Changes: Replaced with native features of LabVIEW Mathscript node. Mechanical Action to latch release button.  Cluster to array replaces Unbundle and table to build. Reshape the table to match the shape of the keyboard. Separate searches for frequencies of line and column. Note that this is easily extensible to handle the 4 x 4 keyboard. Structure of the event added. Added the stop command (but not implemented stop to the loop of the file). Added indicators for diagnostic purposes. Added FFT spectrum and graphic.

    I disabled writing to part of the file for testing.

    Lynn

Maybe you are looking for

  • Long start and stop times, offline files

    Systems Windows Vista, Windows 8 server, roaming profiles, Outlook using POP3 Microsoft DPM.  local copies of offline files are set to encrypt. Because of past problems with several revisions of files group policy is set to synchronize the start and

  • Windows 7 product key for OEM with the disc no valid retail install. problem from 32 to 64-bit?

    I bought a CD OEM Windows 7 a few years when Microsoft was running a promotion for students to go to College.  It was directly from Microsoft, if I remember.  It was just a single CD, just a 32 bit disc and had the CD key.  Installed and everything w

  • Notbook

    I have a HP Pavilion DV4 and all the lights turn on as it is light, there is no image on the monitor, or if I plug it in hdmi or even through the cable from the monitor. The shift caps lock and scroll stop have a flashing light on just a flash every

  • Photoshop CS6 will save the file as EPS or PDF.

    Hi guys. Forum first time poster here. It left me speechless.Computer: Intel (r) Core i7 with 16 GB of RAM and 600 GB free on my C: drive, you use Windows 10 and extended CS6.I have a complex shape file (made primarily of a pen tool) which is a solid

  • Pass dynamic strings to procedure

    Oracle 11g r2 and JavaOracle procedure:procedure sp_get_account)p_rc on sys_refcursor,p_state varchar2)Open the p_rc forSelect *.of user_tablewhere to report in (p_state);Example of HARD CODE: select * from user_table where State in ("NY", "FL", "MY"