How to see all sql statements on sql commands under history link

Hi All,
How to see the all the sql history on sql commands tab.
I want see all sql statements.
Where to set if we need to store more sql statments in history.
We are using Apex3.2 and 10g database(EE).
Thanks,
Nr

I just checked the source code of the SQL commands history region and that report fetches a maximum of 1000 records. I don't know if you change the setting somewhere in the builder, but seeing the code it looks as though 1000 is hard-coded in the report definition(apex 4.0).
If you need to see all the command history,you can query the original table: APEX_040000.WWV_FLOW_SW_SQL_CMDS
Note that is an internal table used by apex and hence you might not find any documentation about it(google got me one valid hit: Identifying Inactive Workspaces which seem to confirm the table's use).
Anyway, here's what you need to do, ask your dba to grant your workspace user select access on this table
Connect as dba user and run
GRANT SELECT ON APEX_040000.wwv_flow_sw_sql_cmds to '<WORKSPACE SCHEMA>'Now you can run the following command from your workspace to see the entire command history using
select * from APEX_040000.WWV_FLOW_SW_SQL_CMDS where parsed_schema = '<WORKSPACE SCHEMA>';You might want to revoke the grant once you have seen the data/taken out an export due to security issues.

Similar Messages

  • How to see all music categories in iTunes Store?

    When I enter in iTunes Store I see just standard categories: pop, alternative, rock and even others.
    But I often notice interesting categories like "music of 70s", "music of 2000s" and others. How to see all these additional subcategories?

    Click the Browse link under the Quick Links:
    and the select "Music".
    Regards.

  • How to see data modeller reports in sql developer?

    How to see data modeller reports in sql developer?

    1) export your design to existing schema in Oracle database
    2) define connection to that schema in SQL Developer
    3) find "Data Modeler Reports" in reports window of SQL Developer - probably "design rules" are more interesting here
    Philip

  • Usage of Xopen SQL states and SQL Exception?

    Hi
    Is there way to make full use of SQL Exceptions?
    Has anybody used sql states from sql exception?
    It is specified in the API reference that an sql exception object contains an xopen sql state which is a string. But the states in specs are defined as class, subclass.
    The question is how can i make use of these java strings to interpret what exactly happened at the database? Are they really useful? If they are, any utilities which converts these strings to a meaningful message? Any pointers on these question would also help me.
    Thanx in adv.
    Giridhar

    SQLException has inherited a method getMessage() which seems to be quite useful.
    For situations where you want to check on a specific one of several possible (or expected) states (like: maybe the table is not yet created ...), I think you can quite fine use getSQLState() and also getErorCode(). Try out in tests, which information is returned by which constellation, then you can use it for making decisions in your program logic.
    But be aware, that all these informations probably are DBMS specific!

  • Copying and pasting sql statement in sql*plus

    how do you paste sql statement in sql*plus...I have tried the following options, getting the windows interface for this following the documentation below but that didnt work
    http://download.oracle.com/docs/html/A88829_01/ch3.htm
    then i tried creating a simple .txt file with my sql statement and tried running it using @name(where name is the name of the file) and it is giving me the following error SP2-0310: unable to open file "firstscriot.sql

    Hi,
    Using the command-line interface, copying is a pain. Right click on the title bar at the top of the window, then click on "Edit" and "Mark". After you highlight the text you want to copy, you can press the Enter key to copy it.
    To paste, simply right-click. It doesn't matter how the copy buffer got filled (the cumbersome process I described above, using Control-C in Notepad, or whatever).

  • How to see all the list of tables in APEX

    Hi
    COuld anyone of you help me find out how to see all the tables present in APEX ?
    I can see all the list of tables when i give the command : select * from tab
    But apart from finding like this , is there any way to find out all the list of tables ?
    Regards,
    Tasha

    Hi Tasha,
    For Apex 3.2 ;
    select * from dba_tables where owner in
    (select workspace from APEX_030200.APEX_WORKSPACES)
    tab is a synonym for user_tables
    http://www.oreillynet.com/pub/a/network/2002/10/28/data_dictionary.html
    hope this helps you
    regards
    mozkavra

  • How to see all the tables in ABAP

    how to see all the tables in ABAP
    i need to see all the tables present in tcode se16.

    Hi Thiru ,
    its tough to give all.so pls see the below links u can get all.
    http://www.erpgenie.com/abap/tables.htm
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=listofalltablesin+abap&cat=sdn_all
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.sap-img.com/ab017.htm
    http://abap-gallery.blogspot.com/
    thanks
    karthik

  • Mobile Version: How to see all highlights and notes we made in a PDF document?

    Mobile Version (Android): How to see all highlights and notes we made in a PDF document?

    I'm moving your topic to the Android forum.

  • How to see all standard report in sap pm

    hi
    urgent
    can somebody tail me
    how to see all standard report in sap pm

    hi
    manoj
    youcan see all the reprts in sap
    in trs SAP1
    OF ALL MODULES
    YOU REQUIRE ANY Ifurther information mailme back

  • How to see all  psa  data   in bi-7

    how to see all  psa  data   in bi-7  all info area

    Hi,
    In BI 7.0 you wont find PSA tab in RSA1 (data warehousing workbench), for that you need to use RSA1OLD tcode.
    Other way is to go to the datasource and then right click->manage there you can find option to check all PSA requests which were staged from that datasource.
    Hope it helps....
    Cheers,
    Habeeb

  • How to see all my posts in OTN?

    How to see all my posts in OTN?
    If I click on my username it shows recent posts only.
    Since I need to see all of my posts, I may not remember all key words to seach

    John,
    Have a look at the following thread:
    Searching for your own posts
    Searching for your own posts
    You can also use Google to find your own posts as most of the threads are indexed properly in Google search; I usually use this method to find my own posts.
    Regards,
    Hussein

  • How to see all connected SSH users?

    For lack of a better place, I'm putting this in the "installation" section...
    I would like to know how to see all SSH connections. I thought I could use the command "who", but that only shows me as connected (when I know there are definitely others connected.
    Does anyone know the command I can use to check?
    Thanks!

    I'm not sure why 'who' isn't showing other ssh users (it seems to work fine for me) but I thought I'd also mention that OS X also ships with lsof, so you could also find all processes and users using the ssh port with:
    lsof -i :ssh
    Check the lsof man page for more information. It's a pretty handy command, although there are a lot of options to figure out...

  • In Layoout how to see all the lead columns presented in that.

    Hi Friends,
    Could you please suggest me how to see all the lead columns presented in the Layout.
    Appreciate your help through points.
    Regards,
    PJ

    Hi Ravi,
    When I opend the layout in change mode we are able to see the Layout, when click on continue we can see Header area,lead coulmns,data columns. In Lead columns I am able to see only 20 rows only. But I want to see all rows in that lead columns. When click on continue we are able to see the layout in ALV grid format. In that we can see lot of rows. Now my question is How to see all the rows present in Lead columns. Still if you have any details please give me ur id I will send some screen shots or give ur no. I will talk to you.
    Thanks & Regards,
    PJ

  • How to see all the enterprise services in a Discovery system

    Hi,
    Please let me know how to see all the enterprise sevices in a  discovery system.
    Please let me know how to load the enterprise services into webdynpro from discovry system
    Thanks and Regards,
    Naveen N M

    Hello all,
    I can't figurate how to list all the root directories
    (C:/> , D:/>, E:/> etc.) in a system.
    I know how to recursively check the content of a
    directory and all its subdirectories when a
    predefined path is defined. However what I' d like to
    do is actually give the option to pick one of the
    root directories to start the iteration. I have been
    looking around but I can' really find anything
    helpful.
    If any of you has any idea on how to achieve the
    above objective some clarification would be really
    appreciated.
    Thanks in advance for your help!How to installing the Javax.comm package

  • How to see all GL A/c List & Chart of Accounts list

    Pls tell me, How to see all created GL A/c List & Chart of Accounts list

    Dear Jaheer,
    For all Gl account please use T code-S_ALR_87012333,Just give company code and execute.
    For All COA list Please use T code-S_ALR_87012326,just execute after entering the T code.
    Hope this will solve your requirement.
    Regards
    Eugene

Maybe you are looking for

  • Wacom Problems Intuos4 iMac 27"

    I am getting the "A supported tablet was not found on the system" on the System Prefs. It is plugged in. I have installed the latest drivers. I have even removed and reinstalled using the Wacom Tablet Utility as per discussions I have found here. I h

  • How to display desktopt in 16x9 using a projector?

    I have my macbook pro hooked up to a projector via vga. The projector is setup for widescreen 16x9.. Will my macbook pro show my desktop and programs in widescreen 16x9? How do I do this? Thank RD

  • Mobile me album file names lost

    I have used iPhoto to add two albums to my mobile me gallery and in the process have lost a lot of the file names. I am displaying the photos online so people can choose which ones they would like to order so really need the names/numbers. Is there a

  • Sending IDOC without any mapping

    Hi, My requirement is to push the IDOC from SAP system to the external party. We dont need any mapping.Simpky to push and send to third party. Can you please tell which all objects need to be created for this scenario. Thanks, Vikas

  • Turn off Color Management

    Hi: Due to the workflow within my organization and the print requirements, we set Color management in Acrobat 7 to Off Edit -> preferences-> Color Mangement Color setup Settings: Color management off I need to do this in an enterprise installation wi