Read about the table of peoplesoft

Hello
on FSCM91, 8.52 tools, Oracle 11 g R2 DB,.
I want to create a user to be able to read all the tables in the peoplesoft owner SYSADM.

I gave him:
Grant select on a table;

But when he select in psoprdefn (for example) oracle said: there is no table. Because the user should issue:
Select * from sysadm.psoprdefn;

Is other than to create synonyms for all tables sysadm, possible (to avoid creating 65000 synonyms)?
We don't want to alter session statement to each connection.
Thank you.

No, I mean really myuser[sysadm]@mydb
You don't have to know the password of sysadm, connect you with your user as sysadm habe. Then you become sysadm queries on the tables of the sysadm as you were sysadm.
To learn more:
http://docs.Oracle.com/CD/E11882_01/network.112/e10744/concepts.htm#DBIMI223

Nicolas.

Tags: Oracle Applications

Similar Questions

  • Need information about the Tables in database in Oracle Apps

    Hello

    I am looking for information about the Tables in database in Oracle Apps.

    Is it possible that we could see the (column name, description of each column, the primary key, foreign key etc.) the table structure in database (e.g. HZ_PARTIES, CS_INCIDENTS_ALL_B, csf_debrief_headers) used in Oracle 11i applications?

    ETRM. Oracle.com

    concerning

    Pravin

  • Anyone has idea about the table "BIN$ IdkH3La7RVy0VEiT + 5ag == $0.

    Hi all

    Anyone has idea about the table "BIN$ IdkH3La7RVy0VEiT + 5ag == $0 ' in Oracle 11 g.

    When I ran a query such as "Select * tab '.» I found a table called ' BIN$ IdkH3La7RVy0VEiT + 5ag == $0. When I select the data in this table, I found the data. And these data are the same as the data in the other table in the same schema. And what is the concept on this table.

    and on the last thing is I tried to remove data from the table ' BIN$ IdkH3La7RVy0VEiT + 5ag == $0 "but the data is still there in this table, even though I am committed it.".

    Well, these are the tables that you have removed from your database.

    This feature is presented in 10g. When you delete a table, he goes to the basket just as any file goes into windows.

    If you use-->

    purge recyclebin

    It will delete the entire table at all times.

    If you want to retrieve any table of the Recycle Bin, then you can use->

    fall of flashback table emp tobefore

    Please see this link->

    http://www.Oracle.com/technology/pub/articles/10gdba/week5_10gdba.html

    Kind regards.

    LOULOU.

  • How do to know all the tables on peoplesoft (on Oracle 8.1) with data

    I need to know all the tables on peoplesoft (on Oracle 8.1) < strong > with < facilities > data
    and ignore the tables without data.

    It takes to write a pl/sql procedure or is there an easy solution?
    I wrote an example of code, but I am disconnected programming
    for the long and I need help.
    Thanks in advance
    Pls answer
    _______________
    Cursosr curtab is select table_name from dba_tables;
    curtab() loop
    Select count (*) x from curtab;
    If x & gt; 0
    UTL_FILE. Write ('curtab')
    on the other
    null;
    endif;
    end loop;
    ____________________

    Julia wrote:
    I need to know all the tables on peoplesoft (on Oracle 8.1) with data
    > & ignore tables without data.
    >
    > It takes to write a pl/sql procedure or is there an easy solution?
    > I wrote a code example, but I am disconnected programming
    > for a long time and I need help.
    > Thanks in advance
    > Pls answer
    > _______________
    > Cursosr curtab is select table_name from dba_tables;
    > curtab() loop
    > select count (*) x from curtab;
    > If x > 0
    > utl_file.write ('curtab')
    > other
    > null;
    > endif;
    > end of loop;
    > ____________________

    Consider using the user_tables and it works the relevant schema rather than dba_tables breast or of all_tables as these allows you to specify the schema name too will require.

    set serveroutput on;
    
    DECLARE
      cursor curtab is
        select table_name
        from   user_tables;
      --from   all_tables where owner = '';
      v_cnt NUMBER;
    BEGIN
      FOR t IN curtab
      LOOP
        EXECUTE IMMEDIATE 'select count(*) from '||t.table_name INTO v_cnt;
        IF v_cnt > 0 THEN
          DBMS_OUTPUT.PUT_LINE(t.table_name);
        END IF;
      END LOOP;
    END;
    /
    

    Or...

    Ensure that statistics were collected for the schema and examine the value of num_rows in the user_tables view. ;)

  • DB file sequential reads on the table scan complete and LRU (new)

    I would like to add a question on the subject

    scan of full table and LRU

    According to MOS doc ument 1457693.1

    «.. signs diluvium readings of the caching blocks can be divided into a number of small multiblock and self-contained bed. »

    The question is if sequential readings of db file submitted by a FULL SCAN operation will be cached on LRU or MRU list?

    I'm afraid the flushes of heat/floods the buffer cache with a lot of FULL SCAN db file sequential reads.

    For which direct path series reason readings will be inapplicable, so using this new feature of 11g is out of scope for this question.

    Thank you for your interest,

    Rainer Stenzel

    There are a few different patterns of behavior depends on the size of the table (relative to the size of the buffer cache), but the key question is probably "readings will increment the counter of touch" - because if they are not the blocks will fall the LRU list fairly quickly, if they do then the blocks could (after a few tablescans) eventually be promoted in half hot from the cache.

    I did some quick tests (that requires a little care in the Installer) which suggest the number touch was not incremented has therefore not had any effect on the question of if the block would get preferential treatment when they have reached the end of the LRU.

    I'm a little puzzled by your expression: "cached on LRU or MRU list" - it's not two different lists; but people talk about "the end of the MRU of the LRU list.

    Concerning

    Jonathan Lewis

  • read the values of an array element and by sending a digital output to a designated channel according to the value read from the table

    Hello world

    could someone help me before I get out of my hair. Here's my problem.

    I read 3 values of an array of 3 elements i.e. 1,2,3. These values are then compared to a constant value, example if the first element of the array is 1 and it meets the comparison condition can send a digital camera of output for that channel on data acquisition

    I want to be able to send a value from a table to its corresponding comparison and then on its designated channel on the acquisition of data, the whole point of this is due to the fact the table element will not always read the value 1,2,3 for example could be 2,3,1

    Here's one the vi I have so far

    If someone could help it would be much appreciated

    all the best

    brand

    Take time to explore the many examples included with LabVIEW that cover the basics.

    -Indexing table

    -reading a spreadsheet file

  • little binary string in array (of TCP read) to the table of Boolean LV (and back)

    I would like to ask what is the easiest way for the next conversion? We use aTCP Read function to read an incoming binary string to a S7 API using LabVIEW. We know that LabVIEW stores a Boolean value to 8 bits. The incoming binary string contains 14 bits (representing 14 indicators of status). What is the best way to convert these values of 14-bit LabVIEW Boolean table?

    In addition, we send a LAbVIEW Boolean table in the PLC data (to write a TCP) string containing status bits.

    Thank you very much!

    Martins wrote:

    This 30 bytes contains some data more, including 14 bit flags (size is 14 bits). Since the PLC cannot put 'together' (16-bit) words at his side before sending data TCP, 14 bits is padded with 2 bits holding no valueable info.

    Then the solution is simple.  Take your 2 bytes and unflatten in a U16.  Then use Boolean table number.

  • Reading about the digital data into the Scanner, followed of a string

    I am a student, new to Java and will be picking up in the semester at College next.

    I did my self-study using online tutorials and noticed that when I do this:

    Entrance to the parser = new Scanner (System.in);
    System.out.Print ("enter a number :");
    Try
    {
    double d = input.nextDouble ();
    System.out.println ("the number is:" + d);

    System.out.Print ("enter a number :");
    String s = input.nextLine ();
    d = Double.parseDouble (s);
    System.out.println ("the number 2 is:" + d);
    }
    catch the exception here irrelevant code

    Reading the data for education String s = input.nextLine (); is ignored. I guess it's because of the character "\n" remains in the buffer, am I right?

    My solution would be to put a statement (); input.nextLine before the String s = input.nextLine (); and it works. But it feels inelegant to remove the newline like that. Is there a suitable or more 'recognised the market' best way to do this?

    863720 wrote:
    I guess it's because of the character "\n" remains in the buffer, am I right?

    Yes.

    My solution would be to put a statement (); input.nextLine before the String s = input.nextLine (); and it works. But it feels inelegant to remove the newline like that. Is there a suitable or more 'recognised the market' best way to do this?

    It is the "standard". I wouldn't be too worried about this, the Scanner also is widely used in the real world as tutorials might make you believe.

  • Is the rumor that I just read about the new versions of firefox, get attached to her true identity? If it is, WHY? Why would you ruin your browser privacy?

    It seems, confidentiality and integrity is under attack everywhere, even Firefox? I do not use firefox for something illegal, but I still enjoy my privacy. Then, is the true rumors?

    Yes, said exactly what Philipp. Also Klint, I was about to give you the same link you found in this blog post, but he felt old and I couldn't find a date anywhere on the page (I hate blog posts that have no dates!). But those are early concepts and a lot has changed since then.

    In any case, I found a great Youtube video explaining what Persona is here:

    http://pyvideo.org/video/1764/beyond-passwords-secure-authentication-with-Mozi-0

    And a few articles explaining more on Persona:

    https://support.Mozilla.org/en-us/KB/what-persona

    https://support.Mozilla.org/en-us/KB/what-is-persona-and-how-does-it-work

    The important thing to know is this is not compulsory and you are not deceived by an account. Also, there seems to be some confusion about what to call it: identity or Persona. The identity is the name of the team and Persona is the name of the project. Identity team and manages the connection of Persona project.

    I confused me myself and I hope that the good word (Persona) is used by the media in the future so that people can find information on Persona when they search.

  • Empty text box value when reading about the LV2012 development system but no Production

    Development platform: 32-bit Windows 7, LV2012 Professional Development System.

    Production of platforms: Windows XP.

    We have a test application, we have developed (in haste, I might add) who has a curious problem.  As part of the installation for each test, read us a text box with a serial number entry and record them in the log files.  Series enough.

    This works very well on production machines - no apparent problem.

    However, on the development computer, when I try to read the text box, all I get is an empty string.  I tried to read directly from the Terminal, as well as using a property value box.  Each time, there is nothing in the string.  This is even though I'm looking at the text box and there are visible data in it.

    Clear the text box repeatedly, I'm looking to see if any of those that occur at the wrong time.  And, indeed, I am looking a probe value of ' ' from the property node Value with the string "1234" visible in the text box while NONE of the compensation functions have been affected.

    The test application uses a pretty standard user interface event loop model, with an event loop manages the user input and the other event loop manages the business logic.

    Anyone have any idea what can cause this, or a better search string to find clues?

    Thank you

    Geoff

    As promised, I did go to the bottom of it.

    Simply enable "update of value while typing" gave me the result I expected.

    To explain: I had a key event down to the first text box that has been copied to this text box.  Whenever a key was hit in this text box, the value would be read and updated.  I did not have all the events for the new text box.  It has not been updated to what some other events.  At that time, it was apparently too late (most of the time on the development computer) and occasionally on the Production machine.

    Activation of the "Update value while typing" indicator means that the value field would properly up-to-date each time he has been seen/accessible.

    Life is a learning experience...

  • I just read about the fake youtube work turn-by-turn. My question is, it also works for other site then youtube sinds you activade the youtube app

    Can I also watch flash movies on another site such as daily motion etc or is - this work-a-round only for youtube video because (as I understand) it activates the youtube of your phones app

    p. s.
    I have not yet downloaded the browser because of it...

    Yes, Firefox for mobile (we hope) will support Flash with the release of version 13. http://www.Mozilla.org/en-us/mobile/13.0a2/auroranotes/

  • where can I read about the use of increment in advanced actions?

    I'm working on an interaction that is way out of my League, and I would like to try experimenting with increment in a tip action, but can't seem to find any introduction of posts on how to use it. Anyone know of a good place to start?

    If you had really explained why you wanted to use increment, you must have obtained a response immediately.

    Here's a possible workflow:

    1. Create a variable user for each button with a default value of 0 (will be treated as a Boolean value); tagged v_test, v_questions and v_resources
    2. do not increment (makes no sense) but entitled to turn this variable to 1 when the button is clicked. This means that it will not be incremented at all, but will always be 1 when the button was clicked, regardless of the number of clicks
    3. summarize the three variables with the same action in a fourth variable user v_sum
    4. Add the decisions to see the State in which must be applied.

    This means that you will need a conditional action for buttons, something like this (not a test, sorry)

    Decision 1 'Always' (imitated standard action)

    IF 1 is equal to 1

    Assign the v_test with 1

    Expression v_sum = v_test + v_resources

    Expression v_sum = v_sum + v_questions

    ... what you want to do as a 'Show '.

    Decision 2 'CheckFirst '.

       IF v_sum is equal to 1

    Change the State of the arrow for...

    Decision 3 "CheckSecond".

       IF v_sum is equal to 2

    Change the State of the arrow for...

    Decision 4 "CheckThird".

       IF v_sum is equal to 3

    Change the State of the arrow for...

    If you navigate away this slide with the buttons, use a standard action for the buttons (like the first decision) and put the other 3 decisions in a conditional action triggered by the event to enter the slide.

  • Hello Mr President! I have a few questions about the Word report generation please.1.How can I add a border to a page in word? 2. How can I add gridlines to a table generated related word?. Can 3. how I add a border to a picture of the Word report?. Thank

    Hello!

    Sir, I have a few questions about generating word reports using (C language in labwindows) please.

    1. How can I add a border to a page in word?

    2. How do I add border lines and grid to a table generated in Word report (not "cvi control table"inserted from gui, I wonder about the table generated in Word report)?

    3. How can I fill a table cell of report word with the data type other than 'character '.

    And sir a question on the use of the timer in labwindows cvi please.

    Sir, I'm trying to set a time minimum interval timer to 1millisecond (0.001 s), that I have set, timer cares about the interval set by me he only meets the minimum default time interval which is, I think as 10milliseconds (I'm using windows xp service Pack 3 version 2002).

    Concerning

    Imran

    Pakistan

    Have you read this statement ? It explains how to set the registry value:

    If the REG_SZ useDefaultTimer does not already exist, you must create it under HKEY_LOCAL_MACHINE\SOFTWARE\National Instruments\CVI Run-Time Engine\cvirte. "" This can be done navigate to the appropriate folder, and then click Edit "New" string value. Then, click on means the name of the new value created, select Rename, and then specify useDefaultTimer as the name. Finally, double click on the name and specify the value True or False.

  • READ the TABLE of another schema

    Hello
    pls help me.

    I want to read the table of another schema that is declared in the application of the apex.

    SELECT * FROM DBA_ROLE_PRIVS;
    (SELECT * FROM sys.) DBA_ROLE_PRIVS: auch bad)

    The owner of this table is SYS.

    Error: The Table is unknown or cannot be found.

    my real schema is GCs.

    How is the select statement for this case for reading in the table (or tableview) of another schema?
    many and many thanks for your help.
    TL

    The SYS schema is a special schema in Oracle. You must explicitly grant the user rights by selecting tables and views sys.

  • Questions on the tables of materialized views and MV newspaper

    Hi all

    Have some questions about Materialized View.

    (1) once the materialized view reads the records from the table MLOG, reviews the MLOG get purged. fix? or is that not the case? In some cases, I see still (old) records in the MLOG table even after updating MV.

    (2) how the table MLOG distinguishes between a reading which comes from a MV and a reading that comes from a user? If I execute manually
    "Select * < table MLOG > ' could get record of the table MLOG redacted all the same way as it does after a refresh of MV?

    (3) one of our MV updates crashes intermittently. Based on the events of waiting I noticed that it was a 'db file sequential read' against the main table. Finally I had to put an end to the update. I don't know why it was sequential reading on the main table when she should be reading the table MLOG. Any ideas?

    (4) I saw 'file db scattered read' (full table scan) usually on tables, but I was surprised to see 'db file sequential read' against the table. I thought sequential read occurs normally against the index. All the world has noticed this behavior?

    Thanks for your time.

    (1) once all the registered materialized views have read a particular line in a trunk of materialized view, it is removed, Yes. If there are multiple materialized views that are based on the same newspaper, they would all need to refresh before it would be safe to delete the log entry for MV. If one of the materialized views is no incremental updating, there may be cases where the log purge automatically.

    (2) No, your query does not cause anything be served (although you wouldn't see something interesting unless you get to implement a lot of code to analyze change vectors stored in the journal). I don't know the exact mechanism used by Oracle has been published, if you could go through and draw a session to get an idea of the moving parts. From a practical point of view, you just need to know that when you create an updatable materialized view fast, it will register as interested especially newspapers MV.

    (3) it depends on what is stored in the log of MV. The update process may need to recover specific table columns if your log stores just the fact that the data for a particular key changed. You can specify when you create a materialized view that you want to store specific columns or include the new clause values (with the NEW VALUES INCLUDING). It is perhaps beneficial (or necessary) for the refreshment quick process, but it would tend to increase the storage space for the materialized view log and increase the cost of the maintianing the materialized view log.

    (4) sequential reads on a table are perfectly normal - it just means that someone looking for a block of data in the table (i.e. looking a line in the table of ROWID based on the ROWID in an index or a materialized view log).

    Justin

Maybe you are looking for