Contradictory Display of parameter shared_pool_size?

Hello All,
I want to change the value of the parameter shared_pool_size. I am on Oracle 9i and I confirm that dynamic SGA is activated.
I use brtools to change this parameter and use scope=spfile.
After I change the parameter I go back to the Display parameter menu and when I display this parameter value it shows,
Parameter value=<old value> Why?
Value in spfile = <new value>
when i give the cmd show parmeter from SQL prompt it displays <old value>. Why???
Now even if i use scope='memory' or 'both' the outputs are,
In brtools Menu,
Parameter value=<old value>
Value in spfile = <old value>
and through sql prompt -> <old value>
can someone please explain?
I understand this parameter change doesnot require a restart because Dynamic SGA is activated but even a restart of DB doesnot help.
Thanks,
Bidwan

Hello All,
After executing the command SQL> create pfile from spfile;  i restarted the insstance
SQL> startup
ORACLE instance started.
Total System Global Area  219750092 bytes
Fixed Size                   454348 bytes
Variable Size             134217728 bytes
Database Buffers           83886080 bytes
Redo Buffers                1191936 bytes
Database mounted.
Database opened.
SQL> show parameter shared_pool_size
NAME                                 TYPE        VALUE
shared_pool_size                     big integer 92274688          <---Old Value      
SQL> exit
Disconnected from Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
F:\Documents and Settings\abcadm.HOME>brtools
BR0651I BRTOOLS 6.40 (15)
Information about database parameter 'shared_pool_size'
1 - Parameter description (desc) . size in bytes of shared pool
2 - Parameter type (type) ........ big integer
3 - Modifiable attribut (modif) .. both
4 - Defined in spfile (spfile) ... yes
5 - Database instance (instance) . *
6 - Defualt value (default) ...... no
7 - Parameter value (value) ...... 92274688                    <---Old Value
8 - Value in spfile (spfval) ..... 91274688                        <---New Value
9 - Comment on update (comment) ..
My Pfile :
initABC.ora
*.background_dump_dest='E:\oracle\ABC\saptrace\background'
*.compatible='9.2.0'
*.control_file_record_keep_time=30
*.control_files='E:\oracle\ABC\origlogA\cntrl\cntrlABC.dbf','E:\oracle\ABC\sapdata1\system_1\cntrl\cntrlABC.dbf','E:\oracle\ABC\saparch\cntrl\cntrlABC.dbf'
*.core_dump_dest='E:\oracle\ABC\saptrace\background'
*.db_block_size=8192
*.db_cache_size=81920000
*.db_file_multiblock_read_count=8
*.db_files=254
*.db_name='ABC'
*.dml_locks=4000
*.enqueue_resources=8000
*.fast_start_mttr_target=900
*.hash_join_enabled=false
*.log_archive_dest='E:\oracle\ABC\oraarch\ABCarch'
*.log_archive_start=true
*.log_buffer=1048576
*.log_checkpoint_interval=0
*.log_checkpoint_timeout=0
*.log_checkpoints_to_alert=true
*.open_cursors=800
*.optimizer_features_enable='9.2.0'
*.optimizer_index_cost_adj=10
*.optimizer_mode='choose'
*.pga_aggregate_target=31457280
*.processes=80
*.remote_os_authent=true
*.sessions=96
*.sga_max_size=209750092
*.shared_pool_reserved_size=9011200
*.shared_pool_size=91274688
*.sort_area_retained_size=0
*.sort_area_size=2097152
*.statistics_level='typical'
*.timed_statistics=true
*.transaction_auditing=FALSE
*.undo_management='AUTO'
*.undo_retention=43200
*.undo_tablespace='PSAPUNDO'
*.user_dump_dest='E:\oracle\ABC\saptrace\usertrace'
*.workarea_size_policy='AUTO'
Can someone thow some light now?
Thanks,
Bidwan

Similar Messages

  • How do you display a parameter form built from a report?

    Does anyone know how to display the parameter form from building a customized report, as a portlet on a page? Everytime I try, I get the report, which will return no records because it does not first ask for the query parameters.
    thanks!
    null

    You don;t select Run to Run the report with
    parameters - you select the Customize option.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sarah Lo ([email protected]):
    Does anyone know how to display the parameter form from building a customized report, as a portlet on a page? Everytime I try, I get the report, which will return no records because it does not first ask for the query parameters.
    thanks!<HR></BLOCKQUOTE>
    null

  • How to display  Reports parameter form in Oracle Forms 10g.

    hello,
    am migrating from Forms 6i applications to Forms 10g.
    one of my application contain report, that report display parameter form
    I wrote below code for WHEN-BUTTON-PRESSED Trigger
    DECLARE
    pl_id      ParamList;
    v_report_id report_object;
    v_report varchar2(100);
    vjob_id varchar2(100);
    vc_rep_status varchar2(100);
    BEGIN
    pl_id := create_parameter_list('my_list');
    add_parameter (pl_id,'P_HOSPITAL_ID',text_PARAMETER,
    :bm_hospitals.hospital_id);
    add_parameter(pl_id,'PARAMFORM',text_PARAMETER,'NO');
    v_report_id := FIND_REPORT_OBJECT('bm_r001');
    v_report := RUN_REPORT_OBJECT ( v_report_id,pl_id );
    vjob_id := substr ( v_report, length(<reportservername>)+2,
    length( v_report) );
    vc_rep_status := REPORT_OBJECT_STATUS (v_report);
    IF vc_rep_status = 'FINISHED' THEN
         WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id||
    '?server=rep_mohahubkpcomp_ORaHOme_IAS'||'&userid=
    bedman/bedman@bedman'||'&paramform=yes','_blank');
    ELSE
         message ('Report failed with error message '||vc_rep_status);
    END IF;
    Destroy_Parameter_List(pl_id);
    END;
    The Above code is running report and displaying Output perfect but cannot
    display the Parameter Form at runtime.
    any help in this very thankful.
    Regards
    Gagan.

    In Your code there is a line:
    add_parameter(pl_id,'PARAMFORM',text_PARAMETER,'NO');
    which actually disables the report parameter form.
    The line:
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id||
    '?server=rep_mohahubkpcomp_ORaHOme_IAS'||'&userid=
    bedman/bedman@bedman'||'&paramform=yes','_blank');
    displays the report to which vjob_id refers. At this point the report is competed so the parameters userid and paramform are useless.
    Hope this helps.
    Regards
    Bekcic Aleksandar

  • Display Multiple Parameter Values in Specific Format

    In CR XI, I have a string parameter that allows single and multiple values.
    Values are Ward 1, Ward 2, Ward 3, Ward 4
    Iu2019m still a newbie at Crystal and canu2019t figure out how to display the parameter values in the report header in a specific way. Join({?ward},",") works fine to show the values selected, but the format is awkward.
    Would love to hear any suggestions on a formula that will display the parameter values in the header as follows:
    For a single parameter value:     Ward 1
    For two parameter values:     Wards 1 and 2
    For three parameter values:     Wards 1, 2 and 3
    If all four values are selected:     All Wards
    Hope I made my question clear, and thanks in advance!

    Thank you so much for your response; it does work, at least partially.Certainly is pointing me in the right direction.
    Is it possible to modify the case statement to add more arguments? I tried, but it didn't work correctly, although that is likely user error.
    For instance, if selecting a single value, it could any of the wards, not just Ward 1. And multiple values could be Wards 2 and 3, or Wards 1 and 4, or Wards 2, 3 and 4. There are at least a dozen different possibilities, and I need a formula  or case statement to account for all those possibilities.

  • Display Report Parameter Form on Web Browser

    I have prepared a report (with a user parameter form )using Report Developer. Then I call the report in a web-based application through the web-browser. the parameter form display normally, except that there are two buttons on the top : submit and return. Also, the layout of the parameter form is not consistent with the style of my application.
    1. Can I customized the layout of the parameter form so that it can have consistent style with my web-based program ? If yes, how?
    2. Can I suppress the buttons shown on the parameter form ?
    (Our Report Server is 9iAS )

    Hi
    Reports built-in parameter form is deliberately fairly simple in capabilities (otherwise, you'd have all the functionality of Forms inside of Reports). However, with JSPs in Reports 9i, you can go farther to create a custom parameter form of your own liking.
    Thanks
    The Oracle Reports Team

  • Displaying second parameter based on first parameter

    Dear Developers,
    In the parameter form or reports, I want to pass value selected
    in the first parameter to the second parameter
    ie. based on the first parameter selected, I would like the
    query written in the second parameter for
    displaying list to display only those values that are associated
    with the first parameter.
    How can I do this?
    I do not want to call report from form with preselected
    parameters.
    Awaiting speedy reply
    Gaurav

    You can't do this in Reports. You need to do it in Forms

  • PDF Not Displayed After Parameter Form Submitted

    We are moving a Forms6i application to web deployed Forms10g. Reports with parameter forms are being called using web.show_document(...) with the oracle.reports.utility.FrmReportsInteg JavaBean to hide database login credentials, as described in the Forms/Reports integration white papers.
    On our development server this process works as expected: the form displays a new browser window containing the parameter form with URL http://server/reports/rwservlet?userid=&report=report&desformat=pdf&destype=cache&paramform=yes, the parameter form is submitted, and the report output is displayed as a PDF embedded in the new browser window.
    However, on our customer's test server, after the parameter form is submitted, the Oracle Reports OracleAS Reports Services - Servlet Command Help page is displayed. Executing the rwservlet/showjobs command shows the job as being successfully completed. Clicking on the Job Name link redisplays the parameter form, and submitting this returns to the Oracle Reports OracleAS Reports Services - Servlet Command Help page.
    I have not been able to trace any other posts describing the same behavior on Metalink or OTN. Has anyone else seen this?
    Development server is OracleAS 10g (9.0.4.1) on Red Hat Linux, customer server is OracleAS 10g (9.0.4.1) on Solaris.
    Anyone explain this difference between the two servers?

    wonder if your problem is the host.domain name?
    It has to be the same name as the "host:" name that was entered in the "Register with Oracle Internet Directory" screen - while installing AS. Reason is that: when the .html is running, it has no connections to the AS, OID, SSO or anything else - it runs independentally. For it to go back into the oracle 'system', the full host.domain name is needed. So, if when the AS was installed, the "fully qualifed" domain name was not given, you may have problems and could need to reinstall AS again. (speaking from sad experience :) )
    regards

  • How to display the parameter in  the xmlp report ouput.--Urgent Requirement

    Hi All
    I have requirement of developing a report using xml publisher.Report has 10 parameters, I have to display the values of all the parameters in the report ouput.
    Thanks in advance

    yes using <?param@begin:PARAMETER_NAME?> will be good
    solution.
    when you use this,there will be no need of disturbing
    your RDF,no extra formulae columns,no exxtra summary
    columns.Hi All
    Thanks for the reply, it is working fine with <?param@begin:PARAMETER_NAME?>.
    Earlier I use to write all the parameters in the select clause and use it in rtf template.
    I think <?param@begin:PARAMETER_NAME?> this is the exact solution for displaying parameter values in the report.
    Thank you very much.
    Regards
    Srini.

  • Display selected parameter in portal report?

    How can one display the parameters, selected in the parameter form on the report?

    Thanks I found it
    Just select "Show Query Conditions" when creating the report.

  • Displaying HttpRequest Parameter in UIX page

    Hi team,
    On one page I select a value from a dropdown list - this gets saved as a request parameter on the sessionData (standard behaviour).
    16:06:57 DEBUG (JhsActionServlet) -Parameter Shipment: 121What I want to do is refer to that value in a subsequent UIX page. I thought that I would be able to use
    <dataObject select="Shipment" source="jheadstart:sessionData"/>but it returns null. Also, using a custom handler, I can access the value by using
    String shipmentId = sessionData.getRequestParameter("Shipment");
    or
    String shipmentId = sessionData.getAttribute("Shipment",true).toString();
    but not
    String shipmentId = sessionData.getAttribute("Shipment").toString();The last returns a NullPointer exception - which is no doubt why no value is displayed on my UIX page. How come using the overloaded version of the getAttribute method("Shipment",true) works but not just ("Shipment"). I thought the standard method is supposed to check in all locations (HttpSession, HttpRequest and ServletContext) anyway ??
    Also, what databinding do I need in my UIX page to access this "Shipment" request parameter.
    Many thanks,
    Brent

    Brent,
    Apart from what the standard method is supposed to do, is the difference that getAttribute(String, boolean) with boolean="true" not only checks the session but also the request itself (that's where the boolean is for). The getRequestParameter() only checks the request. That is why getAttribute("Shipment", true) and getRequestParameter() both get the value, while getAttribute("Shipment") doesn't.
    The request parameter is not automatically stored as a data object. You could do this using a custom action that retrieves the parameter using e.g. getRequestParameter(), create a UIX data object based on that and put that on the session. Than you can refer to it in a next page using getAttribute().
    Having said this, I wonder if there is not a much simpler method to retrieve request parameters from the session. If I were you, I would post these same question on the JDeveloper forum to see if that is possible.
    HTH, Jan Kettenis
    JHeadstart Team

  • Crystal Report in InfoView is not displaying the parameter

    Cheers All,
    We have a Crystal Report which is connected to the BEx query. We also have parameters based on variables in BEx.
    When we run the report directly from Crystal, everything is fine.
    However, when we run the report from InfoView, when I click on the "..." button beside the parameter to make the selection, everything hangs up.
    This (static) parameter is based on a variable which is based on a compounded characteristic 0ASSET_AFAB.
    The compunding keys are :1) Company code 2) Asset 3) Sub-asset.
    The user is providing the Company code in another parameter, but the user is not providing the Asset, nor the asset sub-number... so all the iterations of asset/sub-asset/depreciation area are displayed - and this works at BEx level, and it works when the report is run directly from the Crystal Reports, however this does not work when the report is run from the InfoView.
    What would be the best course of action?
    Regards,
    Dmitriy

    Hi Rajiv,
    In OIM 9.1 we are using the stored procedure to get the values for all the fields.In the stored procedure we are using the cursor to store the list of values but in the BI Publisher we are using the SQL queries to retrieve the values for the fields in the report. In sql queries we are unable to handle the list of values for the fileds like User Groups and Resources provisioned/deprovisioned.
    Please let me know the process even if we can get list of values for the fields using the SQL queries.

  • Display page parameter in a page

    hi,
    I have one page parameter and i want to display in another page using Dynamic Portlet. I used portal.wwpro_api_parameters.get_value('status_desc','a'); in <oracle>. But i wont display the value. Could please anyone help? Is there any other way to display it..?
    Thanks in advance

    But.....what do you want to display ?
    I you want the parameter name you can try to use:
    wwpro_api_parameters.get_names
    get_names
    function get_names(
    p_reference_path in varchar2
    ) return owa.vc_arr
    Returns a list of parameter names, given the portlet's reference path. If no names are found, an empty list is returned.
    Any user can use this function.
    Example:
    If a URL has these parameters:
    http://.......?empno=10&deptno=10&ref1.deptno=20&ref1.deptno=25&ref1.folderid=30
    where 'ref1' is the reference path of the portlet instance.
    Then this call:
    l_names owa.vc_arr;
    l_names := wwpro_api_parameters.get_names
    p_reference_path => p_portlet_runtime_record.reference_path
    Returns:
    deptno and folderid in l_names
    Parameters:
    p_reference_path - a unique identifier for a portlet instance on the current page. The reference_path is passed to the portlet's show procedure in the portlet_runtime_record.
    Returns:
    an ordered list of parameter names for a given reference path or and empty list if no parameters were found for that reference path
    Since:
    Oracle Portal 3.0.6.6.5

  • Error in displaying the parameter

    Hi Experts,
    I have a parameter of type char128 which is usedfor a filepath. but in the parameter if we enter the data which is more than 45 length. It is displaying only 45 charecters length when I saw in debugging mode the value is upto 45 charecters only. Please help me in getting the total value.
    Is their any restriction on length of parameter value. Please suggest.

    Hi,
    for this use this function module.so that it can display it full.
    PARAMETER P_FILE LIKE  IBIPPARMS-PATH.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          PROGRAM_NAME  = SYST-CPROG
          DYNPRO_NUMBER = SYST-DYNNR
          FIELD_NAME    = 'P_FILE'
        IMPORTING
          FILE_NAME     = P_FILE.

  • IE 11 not displaying report parameter window

    We have noticed that IE 11 is not displaying the input parameter window where user inputs their parameters like date ranges or other parameters. While parameter windows shows up in firefox.
    We are using crystal reports 2011 on tomcat 7 production servers.
    Does someone have a fix for that or any input on what can I do to fix the problem?
    Thank you.

    Update to SP 13:
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    And for "SAP Crystal Reports, developer version for Microsoft Visual Studio", post your queries here:
    SAP Crystal Reports, version for Visual Studio
    Many thanks,
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Conditional display of parameter based on another in a concurrent program

    I've a concurrent program with two parameters
    (PARAM1) STATUS ->
    Value set = NN_STATUS BASED ON TABLE NN_STATUS_LKP
    DEFAULT VALUE :SELECT LOOKUP_CODE FROM NN_STATUS_LKP WHERE LOOKUP_CODE IN ('REQUIRED','REJECTED')
    (PARAM2) NOTE -> Valueset 240 Characters
    I want second parameter to be displayed only if first parameter value is REQUIRED
    I searched this forum and I tried $FLEX$ with no luck?
    Thanks,
    Kiran

    Hi Sandeep,
    In my scenario,
    first parameter is based on Table But second parameter is based on standard value set i.e 100 characters . No table is involved.How to make second parameter depend on first?
    Thanks,
    Kiran

Maybe you are looking for

  • MOVING iTUNES FROM OLD EXTERNAL DRIVE TO NEW EXTERNAL DRIVE

    My iTunes folder is currently on an old exHD, and I want to move the folder to my new exHD. I tried "Consolidate," but it froze during the operation (twice). Then I dragged the folder to the new exHD and it copied it perfectly. But iTunes still reads

  • Efficient ways to make stopmotion animation in Flash

    Hello, I'm new to Flash (using Flash CS5.5 on Mac OSX) and am trying to make a stop motion animation using photos that were created in a layered psd file and then turned into individual jpegs. There are many of them (400 and will be more) and I'm try

  • Video front camera

    Hello forum, I tried three sony tablets at my company. After I upgraded to 3.2.1 I have a very dark picture on my front camera what I am not able to adjust. On the back camera the picture is okay. What is this problem? I have this when I open the def

  • Remapping § ± key to the ~ key?

    I've just bought a 15" MacBook Pro 2.16 GHz (Core 2 Duo) sold locally here in Kuwait. I'm assuming that it has a European keyboard (with Arabic imprinted on top of it). The tilde key ~ is to the right of the left shift key, and the key to the left of

  • ITunes 8.2.1 crashes every time it's opened

    I updated my iTunes to version 8.2.1 today, and now iTunes freezes and crashes within a few seconds each time I try to open it. I ran disk permissions repair, and restarted the computer, and the problem hasn't stopped. Does anyone have any advice on