keep users by piloted by table

Hi, this is a must to create users as part of the responsible security?

are there tricks to load the list of users in the database?

Thank you

1. always try to search the forum first of all, I'm sure that everything is already written here:
can we use authentication two different in the same repository

2. There is obiee. doc, chapter 15 - security in Oracle BI (security, authentication, etc.)
http://download.Oracle.com/docs/CD/E10415_01/doc/bi.1013/b31770.PDF

3. If you need an example to load database users by using the external method:
Authentication of the outer table and initialization in OBIEE
http://108obiee.blogspot.com/2009/03/external-table-authentication-and-row.html

Concerning
Goran
http://108obiee.blogspot.com

Tags: Business Intelligence

Similar Questions

  • I'm trying to connect a printer, but keeps telling no pilot. How can I get a driver?

    I'm trying to connect a printer, but keeps telling no pilot.  How can I get a driver?

    On the site of printer manufacturers

  • How to prevent a user not to access a table of perticular? This user has select any table privilege. Please help me solve this problem.

    Hello

    How to prevent a user not to access a table special (xxx)?

    This user has SELECT a TABLE ALL privilege. I need to restrict to only not for access xxx to the table, but this table is not existed in its own schema.

    But there is access able as select * from schema.table;

    How can I revoke this privilege.

    Please help me solve this problem.

    Thank you

    Lacombe

    1623609 wrote:

    How can I select privilege on specific tables at the same time?

    I want to create a new user and grants the right to select for tables, except a table (xxxx).

    It will be possible without the keystone of the database?

    One way, in several sql

    coil doit.sql

    Select ' grant select on ' | owner: '. ' || table_name |' to someuser. »

    from dba_tables

    where

    spool off

    Then sanity check "doit.sql" and execute it.

  • Link Image to user in a separate table

    I am building a dynamic image gallery where users can upload pictures to your profile for customers to view. The images are stored in a file with the path to the image stored in another table that details for the user. So far, I managed to make the image upload and link the user ID in the table of Images to the ID of the table Details so that all the images associated with that user is tied to its registration in the Details table. My problem comes when joining these two tables for a Recordset. I managed to join them, only that each record with more than one associated image it displays more than once. Therefore, if user 1 uploaded two images, his record comes back twice in the results. Suggestions as to how I can force the query to show all the records only once no matter how much images uploaded this user?

    Hope it makes sense. Thank you

    Cedric

    reandre68 wrote:

    I don't want to copy the methods of facebook, but this proves only that there is a simpler way to do it.

    What makes you think that the back-end of Facebook is simple? What makes a site like Facebook success makes the simple front-end for users, while hiding the complexity behind the scenes.

    One of the difficulties to provide assistance in a forum like this is that there is no way to know the level of the other person of knowledge or to what extent, on the road, they left with a particular strategy. It sounds as if you start just with PHP and database-driven sites. It's challenging and often frustrating time. I remember the problems that I had to try to get my head around how best to structure a database. What makes it difficult is that there is no single "right" way to do. Each database is different. You could develop a database that works very well; but when you decide to add additional features, you will discover that the structure is too rigid. This happened to me with a major project that I've worked on several years.

    The best advice on the use of the databases, I received was to spend a lot of time planning not only what you want the database to do so now, but also what you can do in the future. The encoding takes a small proportion of the total time spent on the design of the project. A book that really helped was "Database Design for mere mortals". The author writes style is a bit tedious, but the information is solid as a rock.

    Good luck with your redesign.

  • Get the updated record the last based on the Date and the van of the user ID corresponding (multiple tables)

    Hello people,

    I currently have a working for this using PL/SQL solution, but it would be nice to have it using SQL. Any help is appreciated and once again, to your practice time.

    I'm looking to pick up the most recent date and the corresponding user that updated registration for a student in particular. There are two tables T1 and T2. The most recent date can be the create_date or modified_date of T1 or T2.

    Scripts for creating the table and INSERT statements:

    create table T1
      ( code           varchar2(4),
        create_date    date,
        create_userid  varchar2(20),
        modified_date  date,
        modify_userid  varchar2(20));
    
    create table T2
      ( code           varchar2(4),
        visit_id       number,
        visit_date     date,
        create_date    date,
        create_userid  varchar2(20),
        modified_date  date,
        modify_userid  varchar2(20));
    
    

    insert into T1 values ('1001',to_date('06-FEB-2013 09:12:12','DD-MON-YYYY HH24:Mi:SS'),'ROGER',to_date('12-APR-2013 13:01:12','DD-MON-YYYY HH24:Mi:SS'),'BRIAN');
    insert into T2 values ('1001',1,to_date('10-JAN-2013','DD-MON-YYYY'), to_date('10-JAN-2013 14:12:12','DD-MON-YYYY HH24:Mi:SS'),'ROGER',to_date('12-MAR-2013 12:01:06','DD-MON-YYYY HH24:Mi:SS'),'AMY');
    insert into T2 values ('1001',2,to_date('31-JAN-2013','DD-MON-YYYY'), to_date('12-MAY-2013 16:11:12','DD-MON-YYYY HH24:Mi:SS'),'GRACIE',null,null);
    
    insert into T1 values ('1002',to_date('12-JAN-2013 11:12:13','DD-MON-YYYY HH24:Mi:SS'),'LYNNELLE',to_date('12-APR-2013 13:01:12','DD-MON-YYYY HH24:Mi:SS'),'BRIAN');
    insert into T2 values ('1002',1,to_date('10-JAN-2012','DD-MON-YYYY'), to_date('10-JAN-2012 09:12:12','DD-MON-YYYY HH24:Mi:SS'),'ROGER',to_date('12-APR-2013 13:04:12','DD-MON-YYYY HH24:Mi:SS'),'AMY');
    insert into T2 values ('1002',2,to_date('10-JAN-2013','DD-MON-YYYY'), to_date('12-JAN-2013 11:12:13','DD-MON-YYYY HH24:Mi:SS'),'JOHN',null,null);
    
    insert into T1 values ('1003', to_date('04-FEB-2014 12:01:01', 'DD-MON-YYYY HH24:Mi:SS'), 'LYNNELLE', null, null);
    
    

    I want to show for the three codes are the following records:

    Code      Table Date                              User ID
    1001      T2  12-MAY-2013 16:11:12   GRACIE
    1002      T2 12-APR-2013 13:04:12   AMY
    1003 T1 04-FEB-2014 12:01:01 LYNNELLE
    
    

    1001 students, the most recent is the create_date of the visit count = 2 for the Code 1002, the most recent date comes from modified_date for visit 1 (its 3 seconds later than the T1 modified_date). Finally, for students 1003 (who did not all records in T2, the create_date is the only date and must be picked up.

    Thanks in advance.

    with t as)

    Select the code,

    NVL (MODIFIED_DATE, create_date) dt.

    case nvl (modified_date, create_date)

    When modified_date then modify_userid

    of other create_userid

    end userid,

    Tbl "T1".

    from t1

    Union of all the

    Select the code,

    NVL (MODIFIED_DATE, create_date) dt.

    case nvl (modified_date, create_date)

    When modified_date then modify_userid

    of other create_userid

    end userid,

    Tbl 'T2 '.

    the t2

    )

    Select the code,

    Max (TBL) keep (dense_rank last order by dt, tbl) tbl.

    Max (DT) dt,

    Max (UserID) keep (dense_rank last order by dt, tbl) userid

    t

    Code group

    order by code

    /

    CODE TO DT USERID
    ---- -- -------------------- --------------------
    1001 T2 MAY 12, 2013 16:11:12 GRACIE
    1002 T2 12 APRIL 2013 13:04:12 AMY
    1003 T1 4 FEBRUARY 2014 12:01:01 MANON

    SQL >

    SY.

  • User Message interface help - table to send to the user through ActiveX interface

    Hello

    I asked a similar question before, but now I'm having problems trying to get a table in the user interface via the mail user interface. I am my code TestStand, I have an expression to send a picture that is as a container of table of FileGlobal to the UI as such:

    RunState.Thread.PostUIMessageEx (UIMsg_UserMessageBase + 2, 0, "", FileGlobals.DataRead, False)

    and in the UImessage callback I what I thought, I have to do to send the data to an array of text on the user interface. It does not work.

    Can someone tell me what I am doing wrong?

    Is attached, the UIcallback, a picture of the table on my user interface and control


  • How do you keep users from creating directories deeper than 260 characters of the root of the drive?

    In Windows, it seems impossible to create/join the files with a path longer than 260 characters.

    Well, not completely: you can create these files if you create a shortcut or point a reader shared inside the path, but that's exactly how this problem gets so bad: a user creates a share X: pointing to \\myserver\longdirname\evenlongerdirname\verylongdirname\etc\verylongfilename

    then it creates a file in X:\evenlongerdirnamethanYouHaveEverSeen\SuperLongDirNameJustLongEnoughToBe260FromTheRoot

    Note: the names of directories must be long, you can also create a shorter longer string of names of directories (a\b\c\d\e\f\g...)

    now, someone trying to open this file of \\myserver fail miserable. In fact, windows behaves a bit ridiculous and sometimes silently ignores files. I've seen this happen when people copy a folder of installation deep inside a fileshare: the installation program is a DVD or CD and a subscription contains 1000 directories, some are more than 260 tank when opened from the root. Then you get really weird behaviour: files ignored!

    As 260 characters was probably very well when the disks were<10GB but="" if="" you="" have="" 1="" tb="" drive,="" it's="" not="" too="" hard="" to="" end="" up="" with="" directories="" that="" are="" way="" deeper="" than="" 260="" characters.="" so="" i="" predict="" that="" there="" will="" be="" a="" time="" soon="" where="" ntfs="" needs="" to="" be="" adapted="" to="" be="" able="" to="" use="" large="" disks="" decently.="" this="" is="" also="" made="" worse="" because="" people="" create="" files="" with="" really="" bad="" names="" (e.g.="" a="" outlook="" msg="" files="" will="" be="" called="" the="" same="" as="" its="" subject="" line,="" fun="">

    Don't tell people don't do that, I see it in my everyday environment, and it breaks a lot of programs (and then the bad programmer is blamed for drawback of Windows: "you can't even open a file named a.txt")

    Question: How do you keep the users to create a file that is > 260 characters if we take into account the root of the drive, rather than a part under?

    Hi PM3.141592
     
    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public.
     

    Please ask your question in the Forums Pro Windows XP IT.

  • How can I insert the apex user id in the table when connecting?

    Hello

    I created a database with SSO on application. As you know because, single-sign - on my users don't need to enter name of user and password to log into the application. When a user in my application login ID (email add) automatically appears in the upper right automatically. My question is how can I capture user ID in the user's my table when a connection of the user in the application?

    Appreciate any help.

    Thank you

    Mohammad

    Maybe my solution:

    1. Application-shared logic components, you have processes of the article.

    2. create processes with process Point: on the new Instance and text:

    declare
    l_exists integer;
    begin
    select count(*) into l_exists from user_objects
      where object_type = 'TABLE'
      and object_name = 'AUDIT_USERS' AND ROWNUM=1;
    if l_exists = 0 then
    execute immediate 'CREATE TABLE  AUDIT_USERS
           (WHEN DATE,
              USER_NAME VARCHAR2(30)
           )';
    end if;
    insert into AUDIT_USERS values (sysdate, v('APP_USER'));
    end;
    

    Concerning

    Ziut

  • Storage user IOM in database table

    Hello

    I am interested to know one thing. We can create the user of IOM, in which table that IOM users are stored in the database?

    Pls someone suggest me.

    -Deena.

    Deena wrote:
    Hello

    I am interested to know one thing. We can create the user of IOM, in which table that IOM users are stored in the database?

    Pls someone suggest me.

    -Deena.

    Most of the users profile information is stored in USR table in the schema of the IOM. Visit this link for more information on the tables of 10g of IOM.

    http://rajnishbhatia19.blogspot.in/2008/08/OIM-tables-descriptions-9011.html

    Published by: Karthik Perath on June 29, 2012 03:35

  • Wanted to access a user, and then from there to another user &amp; acess al its tables

    Hi all

    First of all, I want to access the user "VIKR" in order to create views in the VIKR dev01 database schema.
    Then, I want to get READ access to all the tables in two more (VIKRD, VIKRE) schema.

    Can help please. How to grant read access to all tables of a schema to another.

    Your help will be appreciated.

    You can write a bit of PL/SQL

    DECLARE
      l_sql_stmt varchar2(1000);
    BEGIN
      FOR t IN (SELECT * FROM dba_tables WHERE owner IN ('VIKRD','VIKRE'))
      LOOP
        l_sql_stmt := 'GRANT SELECT ON ' || t.owner || '.' || t.table_name || ' TO vikr';
        dbms_output.put_line( l_sql_stmt );
        EXECUTE IMMEDIATE l_sql_stmt;
      END LOOP;
    END;
    

    Depending on why you want to do this, you can prefer this access to a role and this role of VIKR subsidies so that you can then use the same role for other users to access the same set of objects. And, of course, when new objects are created in the schema or in the future, you will need access to these objects VIKR (or role).

    Justin

  • The user cannot see the tables

    Hello world
    I have a form where I can see all the data, run a query, but today, I created a new user, but when I run the same form, I'm not able to see all the data. Also, I went to sql and connected with the Preobrajensky of this user and when I run the following:
    Select * from cat;
    I'm not able to see the tables I created with the other user.
    Can someone help me please?

    Yes, grants and synonyms must be done for each table.

  • OBIEE 11g - lock dimensions tiles so that users cannot modify a table / pivot

    Hi, in OBIEE 11 g, is it possible to "lock" the tiles so that users cannot re - arrange the dimensions of a table / pivot / graph? In general, we would like to have this feature, users, but for a couple of key reports, we might want to "lock it" so end users can not change.

    Thanks in advance!
    Scott

    Hi Scott,.

    Answer is no. It's still a bug with no workaround.

    Rgds,
    DpKa

  • When is a user created in the table record of $ WWSEC_PERSON?

    Hello-

    We use the OID for our SSO in the Oracle Portal. When we sync-> OID AD, when I ask the portal table $ WWSEC_PERSON and new users are not present. I must go to the Administration page of the portal, one of the users query and define a default group. After this action, they will have a record in the table for $ WWSEC_PERSON.

    The reason Im asking we try to automate the assignment of default group using the wwsec_api.set_defaultgroup api, but because these users are missing from the table of $ WWSEC_PERSON, they have obviously not possible to assign a group.

    Is there a way to force new users in the portal DB table? At all automated type of assignment?

    Thank you
    Brian

    I found this ODS. DS_ATTRSTORE comes in very handy to query OID using SQL data. There are several records attribute for each entry. The "uid" attribute contains the user name and "createtimestamp" contains the timestamp for when the user has been created in OID after being synced from AD. The attribute "orcldefaultprofilegroup" stores the default portal for the user group too.

  • ((Password of SQL DEVELOPER user name? -access TABLES APEX))

    How do you get tables APEX SQL DEVELOPER?

    What should I use as a name of USER and PASSWORD
    inside SQL DEVELOPER?
    ____________________________________________



    Hello

    I installed on my APEX machine.

    WINDOWS 7 PROFESSIONAL 64-BIT.


    I also installed:

    ORACLE XE

    and

    SQL DEVELOPER.


    I have applications that I created in the APEX
    with different paintings.

    ________________________________________

    Question:

    **********************************
    How can I access my APEX tables of
    within SQL DEVELOPER?

    Should what USER name and PASSWORD I use?
    **********************************


    I can do this with
    HUMAN RESOURCES

    SQL DEVELOPER USERNAME = HR
    PASSWORD = HR

    It works very well.
    ..................................................................

    But what of my own TABLES APEX
    I created inside my own workspace
    inside the APEX?

    For example:

    CONNECT TO APEX:

    http://127.0.0.1:8080 / apex /.

    If my

    APEX DAVID_WS = WORKSPACE

    SCHEMA = DAVID_SC

    APEX USERNAME = DAVIDAPEX_UN

    APEX PASSWORD = DAVIDAPEX_PW

    ..............................................................

    LOGIN TO THE ADMIN OF THE APEX:

    http://localhost: 8080/apex/apex_admin

    APEXADMIN USERNAME = DAVIDADMIN_UN

    APEXADMIN PASSWORD = DAVIDADMIN_PW

    ..............................................................


    So, given the 6 above
    NAMES and PASSWORDS above:


    SQL DEVELOPER USERNAME =?

    SQL DEVELOPER = PASSWORD?

    ..............................................................

    Thanks a lot for your help!

    David

    ________________________________________________

    .

    Published by: DAVID888 on February 3, 2011 23:53

    You tables apex are in the schema attached to the workspace of your applications.

  • When you connect, SQL Developer, you use the schema to username and password
  • When you connect using your developer account, you use the Apex workspace account details (but when change the DB using the workspace that it accesses the schema using the schema and password you had linked to the workspace)

    Hope that's clear.

  • As a record not logged user in the underlying table apex

    Request Express 3.0.1.00.08

    I have a table with a column with the following DDL for a column:

    ACTIVATE THE 'CREATED_BY' VARCHAR2 (20 BYTES) BY DEFAULT USER NOT NULL,.
    It works fine when I am connected to the database using SQL or SQL Developer * more but I use the apex to insert records into the table.

    I created a detailed form of Mater which allows INSERT, UDATE and DELETE. This form has, as one of its columns, a column named 'CREATED_BY' for this column, I would like to the logged in user to be registered in the database. I tried to do it by doing the following:

    1. I placed an element named P3_USER on this page and makes its source = & APP_USER.

    2. in the following location "Home > Application Builder > Application 294 > Page 3 > report attributes > column attributes ' under the heading 'Tabular form Element' I made the default Type = Item (name of the application element or page) and made default = P3_USER

    When I hit the 'Add Row' button on my form it correctly dispays the logged in user (BEND) in the column "CREATED_ON", but when I hit "apply" the database stores the string "APEX_PUBLIC_USER". This is not correct because I'm logged into the system and the P3_USER element displays the word "BEND" as long as the current user, not the word "nobody".

    If anyone knows how to do so that he can accept the default value.

    Thank you
    Ben

    Sorry my bad, you can't use it in the default clause. It would be the best place to put this code in a trigger.

    CREATE OR REPLACE TRIGGER APX_TABLE_TRG
    BEFORE
    INSERT OR UPDATE ON APX_TABLE FOR EACH ROW
    BEGIN
    IF INSERTING THEN
        IF :NEW.CREATED_BY IS NULL THEN :NEW.CREATED_BY := NVL(V('APP_USER'),USER) ;  END IF ;
    ELSIF UPDATING THEN
        :NEW.CREATED_BY := CASE WHEN V('APP_USER') IS NOT NULL THEN
                        V('APP_USER')
                   ELSE
                        NVL(:NEW.CREATED_BY,USER)
              END;
    END IF;
    END;
    /
    

    Thank you
    Manish

Maybe you are looking for

  • MacBook Pro 2012 does not SSD

    Hello So a few months ago, I upgraded my MacBook Pro (13-inch, mid-2012, OS X 10.10.5) with a SSD Samsung 850 Evo. Things were much faster and the other Corsair CMSA16GX3M2A1600C11 Apple Mac 16 GB (2x8GB) was also nice. One day, the Macbook has no mo

  • Adding a subtitle in a movie made the shift of the film (i.e. causes 2 second rule before title views)

    Whenever I try to add a subtitle in my film, it takes a few seconds for the title to display. Within these two following seconds, my movie made a break and then again when the title is displayed at startup. Any ideas on how to remove this delay if th

  • Windows partition under windows USB problems

    So, I created my windows 7 Home Premium on my mac, but I cannot get the USB to connect to windows to download all the drivers for Windows runs correctly. USB works on the Mac partition, it does everything just not on a windows. What can I do to fix t

  • Time Capsule hidden files

    How are you? I have a big problem, I made a copy of my macbook to time capsule 3 gen and delete of macbook. Now I need to use my files and I can't, they are transparent and do not open but to inspect the show that using 30 GB. How can I solve this pr

  • cannot sync outlook calendar to my new iphone

    I'm trying to sync my outlook on my I phone calendar.I don't get the same choices when I click the device tab and then news. I see 3 boxes that mention my contacts, calendar, and bookmarks are in sync with my iPhone live Icloud. However. the synchron