Defender allowing omiga-plus to change browser not picked up on 3.5 hours scan

have problems with browsers being taken over but not picked up by defender cant seem to talk to anyone at microsoft

Harshit DBA india wrote:
I have already set memory_target and memory_max_target with enough space. but face same issue
SQL> show parameter memory
NAME TYPE VALUE
hi_shared_memory_address integer 0
memory_max_target big integer 12864M
memory_target big integer 12864M
shared_memory_address integer 0Hello,
That's what I am intending to say. When you have set MEMORY_TARGET and SGA_MAX_SIZE, Oracle gives preference to MEMORY_TARGET. Which is why the changes you make to SGA_MAX_SIZE would not be seen after you bounce the database.
Refer this What if I set MEMORY_MAX_TARGET and SGA_MAX_SIZE both?
If the reply seems to be helpful, then consider closing the thread by providing appropriate points.

Similar Messages

  • CBO not picking correct indexes or doing Full Scans

    Database version - 10.2.0.4
    OS : Solaris 5.8
    Storage: SAN
    Application : PeopleSoft Financials
    DB size : 450 gb
    DB server : 12 CPU ( 900 Mghz each ), 36 GB RAM
    ASMM - sga_target_size = 5 gb
    Locally managed tablespaces - MANUAL
    - db_file_multiblock_read_count - not set explicitly in spfile ( implicitly defaulted to 128 )
    - other optimizer related parameters are set to default
    - system_statistics - CPUSPEEDNW=456.282722513089, IOSEEKTIM =10, IOTFRSPEED=4096     
    - dictionary object system stats were last gather in Nov 09
    - stats on schema objs are gathered every night using custom script, but I have to say there are some histograms on some tables which were gathered by PS admins
    begin
    dbms_stats.gather_schema_stats(
    ownname=> 'SCHEMANM' ,
    cascade=> DBMS_STATS.AUTO_CASCADE,
    estimate_percent=> DBMS_STATS.AUTO_SAMPLE_SIZE,
    degree=> 10,
    no_invalidate=> DBMS_STATS.AUTO_INVALIDATE,
    granularity=> 'AUTO',
    method_opt=> 'FOR ALL COLUMNS SIZE 1',
    options=> 'GATHER STALE');
    end;
    Details :
    We are experiencing erratic database performance. It was upgraded from 9i to 10g along with PS software upgrade. A job that runs on one day in 12 hrs(that is high in itself) would take more than 24 hrs another day.
    We have Test and Staging envs on other servers which do not have performance issues of production magnitude. The test, staging dbs are clones of prod, created by ftp'ing files from one location to another, not sure if that makes any difference but just pointing out.
    On Prod db some symptoms which baffle me are :
    1) sql executing for over 40 minutes, check the plan and it is using an "incorrect" index, idx1. Hint sql with "correct" index, idx2, and it runs in few seconds. result set <400 rows. Cost with hint with idx2 is HIGHER. This scenario is still understandable as CBO is likely to pick a lower cost.
    - But why is there so much discrepancy in cost and response time?
    - what is influencing the CBO to pick an index which is obviously not the fastest response time?
    2) sql plan shows FTS , execution time , runs forever . But a hint with index in this case shows the cost is LOWER and response time is in seconds, so why is CBO not even evaluating this index path? Because as I understand the CBO, it will always pick the lower cost plan.
    What is influencing the CBO. Is it system stats? or any other database parameter? or the hardware ? the large SGA?? histogram ?? Stats gathering?? is there is any known issue with DBMS_STATS.AUTO_SAMPLE_SIZE and cardinaility?
    Where should I put my focus?
    What am I looking for ?
    I do have Jonathan Lewis's Cost-Based Oracle Fundamentals which I have just started so perhaps I will be enlightened but while I read it, it would be of immense help to get some advice from forum gurus.
    At this time I am not posting any exec plan or code, but I can do so if required.
    Thanks,
    JC

    Picking up just a couple of points - the ones about: why can performance change so much from one day to the next, and how can the optimizer miss a plan which (when hinted) shows a lower cost.
    NOTE: These are only suggestions that may allow you to look at critical code and recognise the pattern of behaviour
    Performance change:
    You are using "gather stale" which means tables won't get new statistics is the volume of change since the last collection is "small". But peoplesoft tables can be big, so some tables may need a lot of data to change (which might take several days or weeks) before they get new stats. The 10g optimizer is able to compare the high-values stored with the predicate values supplied in queries, and decide that since the predicate is higher than the known highest value, it should scale down its estimates of data returned. After a few days when the stats haven't changed, the optimizer suddenly gets to the point where the estimated data size is much too small and the plan changes to something that you can see is bad. The typical example here is a date column that increases with time, and a query on "recent data" - the optimizer basically says: "you want 9th Feb - the high value says 28th Jan, there's virtually no data". Keeping date and sequence-based high-values up to date is important. (See dbms_stats.set_column_stats).
    Lower cost plans available:
    Sometimes this is a bug. Sometimes it's an unlucky side effect. When a query has a large number of tables in a single query block, the optimizer can only examine a limited subset of the possible join orders (for example, a 10-table join has over 3million join orders, and the default limit is 2,000 checked). Because of this limit, Oracle starts working through a few joins orders in a methodical manner, then does a "big jump" to a different set of join orders where it checks a few more join orders, then does another "big jump". It may be that it never gets to your nice plan with the lower cost because it doesn't have time. However, by putting in the hint, you may make some of the orders the optimizer would have examined drop out of the "methodical list" - so it examines a few more in one sequence, or possibly "jumps" to a different sequence that it would not othewise have reached. (I wrote a related blog item some time ago that might make this clearer, even though it's not about exactly the same phenomenon: http://jonathanlewis.wordpress.com/2006/11/03/table-order/ ).
    Your recent comment about dynamic sampling is correct, by the way - by default (which for your version is is level 2 as a system parameter) it will only apply for tables which don't have any statistics. It's only for higher levels, or when explicitly hinted for tables, that it can apply to tables with existing statistics.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    "Science is more than a body of knowledge; it is a way of thinking"
    Carl Sagan
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Index not picked when bind parameter can be null?

    Hi,
    In my query i have a primary key say deptid and has an unique index defined.
    when i do a query as
    select * from dept where ((deptid = :pDeptId) or (:pDeptId is null))
    index is not picked up and a full table scan happens.
    Can one explain why?
    Thanks
    Manish

    Solomon Yakobson wrote:
    I purposely chose small table. Yes, optimizer calculated costs are such that FTS cost is same as combined cost of index fast scan + table access by rowid. And that is exactly what I am questioning. Set aside what you call "boundary" cases where rows are sparse enough (e.g. your example with lots of deleted rows) and similar scenarios (e.g. pctfree is very large, etc.) FTS is always less costly than index fast scan + table access by rowid by at least one IO. I understand, I am splitting hairs a bit since the difference is negligible, but still it is a sub-optimal plan.Solomon,
    and yes, in those circumstances you describe the FTS will be chosen, so what is your point? Your test case represents such an "odd" scenario (sparse, large pctfree, etc., less rows than blocks, a clustering factor of the index less than the number of blocks of the table), so what do you want to prove using this test case? It doesn't represent the "normal" circumstances where the FTS is less costly.
    In passing, the cost of the FTS and the combined operation are not the same in my default 10.2.0.4 database, the FTS is more expensive, as I've outlined previously.
    The reason: It takes at least 1 multi-block I/O request to read the 5 blocks of the table. The optimizer assumes that the time it takes to perform a multi-block read request is 26ms when using default NOWORKLOAD system statistics with 8KB default block size. It assumes further it takes 12ms to perform a single-block read request, so the cost (expressed in single-block reads) of performing a single multi-block read request is 2.16. Since Oracle 9i, there is a hidden parameter "_table_scan_cost_plus_one" set to "true", it used to be "false" in 8i, making the cost 3.16, so we end up with a rounded cost of 3 for the FTS.
    The cost of the combined index + table access is 2, one I/O for the index, plus one I/O for the table access. So from an optimizer perspective this plan is not sub-optimal, but the superior one, mainly due to the fact that one gets added to the table scan cost from 9i on, and you have the unusual clustering factor of 1.
    As you can see, it takes a lot of "boundary" conditions that this happens, and it's all down to the fact that the table is so small, that is has only 4 rows in 5 blocks, and the clustering factor of the index is less than the number of blocks of the table, which is quite unusual. A "optimal" clustering factor usually corresponds to the number of blocks of the table, a "bad" clustering factor corresponds to the number of rows.
    Therefore I suggested to "adjust" the clustering factor to a more usual value, but there is actually nothing usual about this test case since you have less rows than blocks.
    So I guess you can say whatever you want about this being a "sub-optimal" plan, but I really don't see the point it makes, given the flawed test case. Run it with a more reasonable setup and the FTS will be used in those cases where it is reasonable according to the inputs the CBO gets.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • INFO-RECORD CHANGE MODE  NOT ALLOWING.

    Hi,
    Transaction Code= ME12
    Vendor= xx
    Material= xxxxxx
    Purch. Org= xx
    Plant= x
    Info rec=&quot;blank--&quot;
    Info Category= standard
    Error Msg displayed-
             Missing authorization:Info rec change plant xx
    ABOVE THE ERROR WHAT COULD BE THE REASON?
    BUT that vendor and another material are allowing,but  above particular combination is not allowing.i checked source list ,MM-basic1 view there is no check and block.
    THANKS,
    KUMAR.

    Hi
    Are you sure that the other vendor and material that you are using or the same vendor and other material that you are using are all from the same plant.
    The error message specificaly says that user does not have authorisation for that Plant. So check with some other combinations in that plant.
    Also, on the screen on which it is giving this error message, in the address bar where you write the tcode, type SU53 and enter. It will take you to authorisation check screen and will display which authorisation are missing for the user. You can take this to your basis team and get the required authorisation.
    Regards,
    Vishal

  • System does not allow to me to change collect method in RZ20

    Hi.
    I Have the problem with my SAP R/3.
    I have productive, based on 4 application servers. In RZ20, alerts of  MTE Operating System for one application server is not work. In nodes properties I have collect method "CCMS_Cpu_Collect_c". On other application servers - "CCMS_OS_Collect". System does not allow to me to change collect method
    What will I do? Please help me.
    Edited by: Viktor Unsub on Jul 18, 2008 4:55 PM

    Hello Victor,
    the data collection method CCMS_OS_COLLECT is an ABAP report as you can see in the method overview in rz21. This report is used to collect the operating system data and send it to the CCMS.
    As soon as you install the sapccm4x agent on an instance the agent will take over the data collection for the operating system subtree (this is also described in [note 522453 |http://service.sap.com/sap/support/notes/522453]. Important: point 4. of the note!). I.e. as soon as the agent is responsible for the data collection you will see the mentioned CCMS_Cpu_Collect_c.
    If the MTE doesn't display data you should check if the agent is running.
    Regards, Michael

  • I am trying to manage my "Location Services" on my iTouch but the device does not allow me to make changes. The screen is muted indicating that changes cannot be made. Anyone experience something similar?

    I am trying to manage my "Location Services" on my iTouch but the device does not allow me to make changes. The screen is grayed-out indicating that changes cannot be made. Anyone experience something similar?

    Do you have any Restictions set? (Settings>General>Restrictions)

  • System should not allow to do the changes in PO once the ID created.

    Hi All,
    Once the Inbound Delivery is Created based on the Purchse Order, System should not allow to do the changes in the Purchase Order like Deletion of Item, etc..
    Any Configuration Changes is avaliable. ?
    Regards,
    Sudhakar

    Dear,
    Please check the staus in order
    Current order status xxxx does not allow goods receipt (Message no. C6009)? is this the message?
    This will not allow you to do GR for production order when you activate status profile "SAT1" in the production order. After that when you confirm order it will automatically assign next user status i.e. "SAT2" (if not assign it manually in CO02) it will allow you to do GR for that production order.
    Regards,
    R.Brahmankar

  • Why does Lion KEEP reversing changes you make in address book and other applications without your consent and without wanting it to??? Plus address book will NOT import old address book contacts from Snow Lepoard 10.6 and keep them.  This Lion OXS 7 is ..

    Why does Lion KEEP reversing changes you make in address book and other applications without your consent and without wanting it to??? Plus address book will NOT import old address book contacts from Snow Lepoard 10.6 and keep them.  This Lion OXS 7 is .. becoming very frustrating ... it will NOT keep changes made in the Address Book and it has destroyed my contacts which I only have electronically since 10.4 in my address book. I am NOT happy with this OS7 it has a lot of issues and faults.  How can one stop automatic reversing of data when inputting???
    Please help! 
    Wished I NEVER upgraded to this Lion!!!
    Carmelo

    Relax. Your address book database is corrupted.
    If you are syncing your Contacts with MobileMe or something else, disable it for now.
    Backup your address book by going to File>Export>Address Book Archive.
    Quit Address Book.
    Open your Library by holding down the Option (alt) key while selecting the Go menu in Finder. Select Library. Navigate into your Application Support/AddressBook folder and delete the addressbook-v22.abcddb file.
    Open Address Book. It will recreate the database from the raw data.
    See how that works. If it is ok, then reenable syncing and see how that works.

  • IOS5 Reminders, location disabled if location changes are not allowed

    Hi,
    the location feature of Reminders works, but as soon as I don't allow changes to Location, I can't add or remove a location to a reminder.
    Location service for Reminders is enabled, just changes are not allowed under Restrictions.
    This looks like a bug.
    thanks for any help,
    cheers,
    -g
    iPhone4, iOS5

    Same problem here. (iOS 5 / iPhone 4)
    Location reminders enabled in location service, changed in restrictions not allowed.
    Now I can only use time settings in the reminders app, the location function is disabled (grey).
    I do not want to leave the system open and allow changes to the location services - especially Find My iPhone - just to use this feature, but I would like a fix for this.
    Anyway to send a bug report for this somewhere?

  • Not Allowing "Next Patch" To Change Set

    I'm trying to solve a simple problem with MainStage 3.  I've got a number of sets with multiple patches in each, and I want to be able to switch back and forth between patches within sets without the danger of accidentally switching sets, since each set is on an individual click track.  I've mapped different keys to change patches and to change sets, but if I get to the last patch within a set I'd like the key that cycles to the next patch to not do anything.
    Basically, I want to switch sets only by using the key mapped to do specifically that, and I'd like the keys mapped to change patches not to have the ability to move from set to set.  Is this possible?

    See:
    *Firefox/Tools > Options/Preferences > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    The setting in "Tools > Options > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.
    See also:
    *https://support.mozilla.org/kb/settings-network-updates-and-encryption#w_general-tab
    *http://kb.mozillazine.org/accessibility.blockautorefresh
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Hi All,i am currently working on a flex application that will allow the user to change the language

    Hi All,i am currently working on a flex application that will allow the user to change the language within the application from english to Japanese and vice versa. And everything works fine.
    I am using flex 4.5
    We allow the user to save records with english or japanese texts.
    problem
    When the user manually enters Japanese text and tries to save it the record defaults back to the default name (which is in english). But if you copy the entered text and paste it and then save it.It works fine.
    Any idea , why this is happening?
    Please let me know if the question is not clear.
    Looks like there was already a bug
    https://issues.apache.org/jira/browse/FLEX-28894?page=com.atlassian.jira.plugin.system.iss uetabpanels:all-tabpanel
    Not sure why does it say , Resolved .
    -KB
    Message was edited by: bKartik.b

    By Payal integration , you mean paypal button html ? or payment gateway setup etc ? If its a gateway configuration for your site domain then single page for all layout will work , but if you are using button code for all renditions then you would need to create separate pages for all.
    Thanks,
    Sanjit

  • BB 9330 - turning off mobile network data services causes BIS WiFi connection to change to not connected

    re: v. 6.0.0.719 bundle 3084 platform 4.4.0.560 update
    1. History.
    a. Received BlackBerry Curve 9330 out of the box with bundle 2333 installed (but missing Verizon Visual Mail Message app.) Installed BB Desktop Software on laptop, connected smartphone to PC, Attempted to install bundle 3084, but initialization apparently failed, phone still showing bundle 2333 installed and no VVM app. Browser app unable to connect to network. On second try was able to complete 3084 install. Still no VVM app. Now some times the browser connects, sometimes it does not. Browser not connecting appears to be BB software bug. VVM issue appears to be one for the service provider.
    b. Data service is currently Verizon BlackBerry Social Messaging Data Package which is suppose to have BlackBerry Internet Services via WiFi per Verizon FAQ doc.
    2. Problem. With an active WiFi connection the Browser app is not connecting via WiFi giving a error message that WiFi service is required.
    Investigation found if mobile network data service was turn off in Mobile Network Options, the BlackBerry Internet Services connection status was changed from connected to "WiFi" to "not connected". Browser appears to work ok when mobile network data service is turned on. BIS connection to WiFi comes back on. Not sure at this point if web data is going via mobile network or WiFi.
    I am wondering if other BB 9330 Verizon users are seeing the same symptoms.
    Bill
    P.S. I could not find where to report this apparent software bug. So I hope is the right place.

    If you have your Mobile Network as well as Wi-Fi turned on, your phone will default to the Wi-Fi for browsing (assuming you have a strong Wi-Fi signal).  Leaving both on will allow you to browse as well as receive calls and texts.
    I hope that helps you. 
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • How can we find out data in an editable ALV grid has been changed or not?

    Hi Experts,
    How can we find out whether a data in an editable ALV grid has been changed or not.
    I am using the
    FM -> REUSE_ALV_GRID_DISPLAY_LVC
    for ALV display.
    I have to chekc whther data has been changed or not befor saving. if changed then only i want to
    SAVE
    . I cannot use the internal table comparison method for this purpose also i am not using OOP ALV.
    So kindly sugest me an alternative.
    Thanks and Regards,
    Shahana

    Hi,
    Thanks for your answer. I already saw this post.
    See this method.
    CALL METHOD reuse_alv_grid->check_changed_data
    IMPORTING
    e_valid = lv_check.
    This will update the internal table with the edited values. Then we can go for internal table comparison.
    But my scenario will not allow me for itab comparisons.I just want to know the ALV data has been changed or not.
    Regards,
    Shahana

  • Payroll area change is not possible

    Hi,
    When we are doing promotion action, i.e, one paryoll area to another paryoll area, In actions whatever the date we are giving is taking, but when come to org assignment it is not allowing to save with that date  and throwing error " payroll area change is not possible at the end of payroll period"
    For example: In Actions start date is 04.01.2010, in org assign is not allowing to save the entry with that date, but if we give 01.01.2010, it is allowing to save the record. As paryroll period is starting of the month to end of the month, that is the reason it allowing the start date of the month in org assign, but user wants the record from his desired date..
    Please help me on the issue.
    Thanks & Regards
    Kumar

    Hi Kumar,
    Mid-payroll payroll area change is allowed for only a few countries including:
    Canada (country grouping 07), the United States (10), South Africa (16), Mexico (32), Taiwan (42), Finland (44), and Spain (04)
    Please check the notes below for further reference:
    1104733
    849363
    744563
    Regards,
    Dilek

  • Display some constant in the input field and allow the user to change it.

    Dear All,
    I have a requirement in WDA to display inputfield with some constant initially and allow
    the user to change that value according to his wish.Currently I am using UI Element
    InputField for this,but I am not able to show the constant initially.
    How can I achieve this pls suggest.
    Thanks,
    Reddy.

    Hi sudhir,
    To display with default values, you need to write your code in wddointi method.
    Check this code..
    * navigate from <CONTEXT> to <INPUT> via lead selection
      lo_nd_input = wd_context->get_child_node( name = wd_this->wdctx_input ).
    * get element via lead selection
      lo_el_input = lo_nd_input->get_element( ).
      lv_ship_point = '1001'.
    * set single attribute
      lo_el_input->set_attribute(
        name  =  `SHIP_POINT`
        value = lv_ship_point ).  // Now ship_point have initial value 1001.
    Cheers,
    Kris.

Maybe you are looking for

  • Creating a logical link in the Workarea

    Hi All,   I would like to create a logical link in the workarea of the workcenter.   For Ex: If i have assigned a business role SERVICEPRO, When I click on the workcenter (ServiceOrders), now a workarea will open with options SEARCH, CREATE, ALERTS,

  • Differing CMYK in Acrobat and Photoshop (same file)

    Hi, I posted this in the Acrobat forum and haven't had a response yet. I am also posting here since it is related to both Acrobat and Photoshop, in case someone in the Photoshop forum can respond. Thanks. I read different CMYK values for the same PDF

  • Weird Registration Prob

    Hey everyone... I'm having a weird registration problem. So I just got a Creative Zen Vision 60GB and I installed it comepletely and after about a week I started getting a pop-up screen on my desktop that says "Gentle Reminder: Register your Creative

  • As XI developer what are the roles and authorization i shoul have in realti

    Hi Experts,                 As XI developer what are the roles and authorization i shoul have in realtime, as a dveloper is it possible for me to crate namespace and business system, can any one please exaplain me abt business system  in real time sc

  • Linker Error

    I am try to compile a code sample for a piece of 3rd party software using the provided Makefile for my environment which is solaris. The code is written in C++. I keep running into the same linker error and cant seem to pinpoint the problem. Any help