Limit the results by rank

Hello

I have a question that results in something like the following:

region, value
1, 10,
1.15
1.16
1.20
2.12
2.23
2.35
3.12
3.14
3.15

What I want to achieve is to get the X top results (sorted by the column 'value') for each region. So if X = 2, I want the results to be like this game:

1.20
1.16
2.35
2.23
3.15
3.14

How is that possible? Thanks in advance.

Hello

with sample as(select 1 region,10 value from dual union allselect 1 region,15 value from dual union allselect 1 region,16 value from dual union allselect 1 region,20 value from dual union allselect 2 region,12 value from dual union allselect 2 region,23 value from dual union allselect 2 region,35 value from dual union allselect 3 region,12 value from dual union allselect 3 region,14 value from dual union allselect 3 region,15 value from dual )select region, valuefrom(select region, value, rank() over (partition by region order by value desc) rk  from sample)where rk<=:rk_var

Note: assuming that your db version is at least 8.1.6
My greetings
SK

Tags: Database

Similar Questions

  • The results of F1-QUERY-how to restrict or to SQL with the role of access to the data?

    Hello

    With the help of CC & B 2.3.1.

    I'm configuration of a Zone of F1-OF-QUERY to get and display customer information as level account; the filter criteria will be Geo val SP.

    With our application, we use access to accounts and groups access to the data on users roles to restrict access to sensitive accounts, such as VIP.

    What keywords should I use in the SQL statement to limit the results only for group accounts to which access is included in the Dar of the user?

    Example: If the user has DAR 'STANDARD', it won't see accounts with group access 'VIP '.

    I tried unsucessfully: USER: USER ID,: USER_ID.

    Unsucessfull example:

    Select dar_cd, user_id, expire_dt
    of ci_dar_usr
    Where user_id =: USER_ID
    and expire_dt > =: F1

    Thks,

    Fabien

    Hi, Fabien,

    If you are looking to determine the current user in the box,
    the keyword to use is: USERID

    You can check the zone of F1 "F1-FAVSCR" for its use.

  • limit the number of query results for content Presenter CMIS

    Hi dear,

    I have a problem. I added content present on my page in Jdev ide, not at run time. And I need a query including the limitation of the number of results.

    My query is: ${' SELECT * from ora: t:IDC:GlobalProfile WHERE the ora: p:xRegionDefinition =-"CSGMNEWS_REGDEF\" ORDER BY ora: p:dInDate DESC'}


    I just want to add a number parameter.

    Can you help me please? How can I limit the number of results?

    Kind regards

    Yacouba

    Published by: erdo on 21.Mar.2013 18:37

    Hello.

    Content Presenter has a setting (maxResults) to set the maximum returned results:

    Sample:

    xmlns = "http://xmlns.oracle.com/adf/controller/binding" Refresh 'ifNeeded' = >







    When you add your CP to a page at design time, you can access the pageDefinition and provide more values for attributes of CP.

    I hope this help you.

    Kind regards.

  • Limit the number of results when searching for users?

    Hi all.

    The following rule works very well:
      <invoke name='toList'>
        <invoke name='listObjects'>
          <ref>context</ref>
          <s>User</s>
          <map>
            <s>conditions</s>
            <list>
              <new class='com.waveset.object.AttributeCondition'>
                <s>DEFERREDTASKDATE</s>
                <s>notPresent</s>
                <s></s>
              </new>
            </list>
          </map>
        </invoke>
        <s>name</s>
      </invoke>
    But in the production environment, we want to limit the number of results to a manageable level, say 200 users. I tried resultLimit and LignesMax in the stock option plan, but nothing helped.
    Pointers to help me in the right direction?

    Best regards
    Stefan

    The JavaDoc for AttributeCondition does not list these operators or conditions.

    You will need to add conditions to your query that limits the response by other means.

    I don't know what your user name looks like, but for us, we have an ID for each account that you could put limits to

    i.e.

    UserID > current_place and userid< current_place="" +="">

    that, if the user name is a number, would limit the answer to a maximum of limit, but if no user is in the meantime it would obviously be zero.

    the alternative is to create your own rule to query the repository on your own and use the resulting data to browse normal calls.
    It's a bit heavy if you use attributes that are not available at hand, only existing in the xml BLOB

    I also think that you could make your own javaclass and do the same thing, but I'm just not proficent in java as to who try here: P

  • Combine two results of the query with rank

    Dear all,

    I'm an analyst working DB for the first time:

    I have two requests:
    1)
    Select * (select 'CAFNo', 'ActionDate', 'ActionDetail', rank() on rnk (partition by order of 'CAFNo' through 'ActionDate'),
    of 'ABC '.
    where 'ActionDetail '.
    as 'FIU successfully presented and routed to the fulfillment team %')
    where rnk = 1

    Results in
    CAFNo', 'ActionDate1', 'ActionDetail '.

    2)
    Select * (select rank() on rnk (partition by order of "CAFNo" by "ActionDate"), 'CAFNo', 'ActionDate', 'ActionDetail'
    of 'ABC '.
    where 'ActionDetail '.
    like '% customer ID %')
    where rnk = 1

    Results in
    CAFNo', 'ActionDate2', 'ActionDetail '.
    ---------------------------------------------------------------------
    I would like to combine the results of two as:
    No College, Actiondate1, actiondate2, ActionDetail

    I tried the full outer join and other options but without success. Help, please
    Please share concept to join the two results not the actual query.
    with t as (
               select  "CAFNo",
                       "ActionDate",
                       "ActionDetail",
                       case
                         when "ActionDetail" like '%Customer ID%' then 2
                         else 1
                       end weight,
                       rank() over(
                                   partition by "CAFNo",
                                                 case
                                                   when "ActionDetail" like '%Customer ID%' then 2
                                                   else 1
                                                 end
                                   order by "ActionDate"
                                  ) rnk
                 from  "ABC"
                 where "ActionDetail" like '%Customer ID%'
                    or "ActionDetail" like 'CRF successfully submitted and routed to Fulfillment Team%'
              )
    select  "CAFNo",
            max(
                case weight
                  when 1 then "ActionDate"
                end
               ) "ActionDate1",
            max(
                case weight
                  when 2 then "ActionDate"
                end
               ) "ActionDate2",
            max(
                case weight
                  when 1 then "ActionDetail"
                end
               ) "ActionDetail1",
            max(
                case weight
                  when 2 then "ActionDetail"
                end
               ) "ActionDetail2"
      from  t
      where rnk = 1
      group by "CAFNo"
    /
    

    SY.

  • Limit the number of CMIS query results

    Hello
    Can we limit the number of CMIS query results
    my query is
    SELECT * from ora: t:IDC:GlobalProfile WHERE the ora: p:xRegionDefinition AS \'ALERTRD\'
    I want only newer 2 alerts to display.

    Thank you

    You use the CMIS query in a workflow of presenter content in WebCenter Portal? These documents provide a maxResults parameter to set.

  • Limit the length of the result of the LISTAGG?

    Is there a way to limit the length of the result of LISTAGG()?

    I have two reasons for this:
    -VARCHAR2 limit of 4000 bztes
    -J' I need only the top 10 items (lines)

    The query I use is:
    select count(order_id) numOfOrders, order.store_id,  store.PhoneNr,
           LISTAGG( order_Id, ', ' ) WITHIN group ( ORDER BY Order_Id)  as first_ten_orders
         from t_orders order
         inner join store on store.store_id=order.store_id and (store.PhoneNr is not null )
         where order_status_id in (1,2,6) and order_date!=shipped_date
         group by order.store_id, store.PhoneNr;
    This is a list of orders not shipped, grouped by stores (only those with phone numbers), listing the ID of the base, phone number, number of orders not shipped and the list of command IDS.

    I want to restrict the list order ID, for example to the first ten items.

    How can I do?

    Is to use a function (custom) to cut the result string, but then, I would still have the first problem of VARCHAR2 length overflow in the case of many orders.

    Hello

    Here's one way:

    You can use the analytic DENSE_RANK function to find who are the first 10 order_ids and a CASE expression allows to return the order_id for these 10 and null for all others. LISTAGG, like other aggregate functions ignore NULL values.

    WITH     got_display_order_id     AS
    (
         SELECT       COUNT (order_id)     AS cnt
         ,       order.store_id
         ,       store.phoneNr
         ,       CASE
                    WHEN  DENSE_RANK () OVER ( PARTITION BY  order.store_id
                                                           ,            store.phonenr
                                   ORDER BY      order_id
                                    ) <= 10
                    THEN  order_id
                END                           AS display_order_id
         FROM       t_orders     order
         JOIN       store               ON     store.store_id     = order.store_id
                                   AND      store.PhoneNr      IS NOT NULL
         WHERE     order_status_id     IN (1, 2, 6)
         AND       order_date          != shipped_date
         GROUP BY  order.store_id
         ,            store.PhoneNr
         ,       order_id
    )
    SELECT    SUM (cnt)          AS numOfOrders
    ,        store_id
    ,       PhoneNr
    ,       LISTAGG (display_order_Id, ', ' ) WITHIN group (ORDER BY display_Order_Id)
                                 AS first_ten_orders
    FROM        got_display_order_id
    GROUP BY  store_id
    ,            PhoneNr
    ;
    

    If you would care to put a bit of data samples (CREATE TABLE and INSERT statements) and the results desired from these data, then I could test it.
    To simplify the analysis, let's say you want to only see the first order_ids of 2 or 3. Change the results for 10 will be negligible.

    Published by: Frank Kulash, 11 April 2012 10:37

    Published by: Frank Kulash, 11 April 2012 10:46
    The PARTITION that is added BY clause anlaytic DENSE_RANK.

  • How to limit the number of result of a function of a condition webapp

    I'm working on a Web application. I want that it displays results 'only one' if the condition is met. This is my code:

    {module_webapps id = render "29947" = "item" filter = 'all' hideEmptyMessage = 'true' number of lines = '1' collection = "latestMonthlywinner" sortType = 'date' template =""}

    {% for article on latestMonthlywinner.items-%}

    {% If item.typewinner == 'Monthly'-%}

    < div class = "W-matieres2 line" >

    < div class = "w - col w-col-7 w-col-stack matieres2-col" >

    < div class = "content-textblock-1 t2new" > {{item.releaseDate | date: "MMMM"}} {{item.itemId}} < / div >

    < a href = "promotions - starwinner.html ' title = 'See the testimony of the Star winner' class ="happy btnlink w-button"> PAGE of the WINNER of STAR VIEW < /a >

    < / div >

    "< div class ="right w - col w-col-5 w-col-battery matieres2-collar"style =" background-image: url ({{item.monthWinnerpic}}); background-position: 50% 50%;  background-size: coverage; height: 100%; padding: 9% 2%; background-position: 50% 50%; "> < / div >

    < / div >

    {endif %}

    {% endfor}

    Please can someone tell me what I do wrong. The results I get, is that it shows all results. But I just that it displays on the results. Will be more appreciated if I can get help.

    Everything done loop is to find WHAT have months in this State.

    If you want to stop when it finds the first of that you will need to use the loop of the PAUSE method:

    Logic tags | Business catalyst support
    {% break %}

    This should go just before the endif.

  • Limit the search results with ", not".

    Is there a way to limit the search using the 'no '? For example, I searched for the industrial paper rolls and got pictures of toilet paper. I would have liked to find rolls of paper, excluding the toilet in the description of the image.

    Its possible using the sign less would help in that way it helps to google search.

  • to limit the values in the chart

    I want only top 10 accounts to display in the chart based on their balances and I created a calculated column in the results ranking and added the same graph. But I want only first 10 rows instead of every row to display. Thanks in advance

    If this to IR as follows.

    Create a Table of results.
    Set filter/limit on column of row to the value you want.
    Build the graph of Table

    -wayne

  • How can I limit the number libraries which is to find Photos

    How can I limit the number libraries which is to find pictures?

    I have about 10 libraries I've migrated opening today.

    I followed the advice I got from leonie, (level 10) below.

    Photos will create a new library of Photos in your iPhoto library.  The new library will be named as the iPhoto, with the extension ".photoslibrary" library and your original library will have a new file name extension ".migratedphotolibrary".  Rename the resulting ".photolibrary", so you will always be able to open in Aperture. The icons of libraries will change also. New photo library will display an icon of 'fan photos' with the flower of the Rainbow.


    So, I have now two files in my folder "Images".   One is called "Photo library" (these are ALL of .photoslibrary) the other is 'BACKUP ONLY iPhoto libraries' (these are ALL of .photolibrary).

    When I hold down the option key and start the Photos is to find all the libraries of two files above. How can I say Photos don't not to look in the old folder "iPhoto library"?

    This isn't a feature of Photos

    You can request that Apple itself - http://www.apple.com/feedback/photos.html - but not, it is not an option

    LN

  • check a result using lines that are different to the result

    Hello

    If anyone can help, I have Writer's block!

    I created a VI to create lines of limit for a test.  The VI creates a limit minimum and MAXIMUM by a user entered a frequency, the minimum and maximum limits by using a table.  The example I have is:

    Frequency Min Max

    2 MHz 0-10

    3 0-10 MHz

    3 MHz 0-12

    4 MHz 0-12

    This creates a line on my chart XY.

    When the test has been done, I want the result to check for stored limits.  So far I've posted online time result and limits on the XY graph, but I have trouble controlling the result that the table of results is different.  The results of the example that I have are:

    Result of frequency

    1 MHz - 9

    1.5 MHz - 11

    2 MHz - 12

    2.5 MHz - 11

    3 MHz - 12

    3.5 MHz - 13

    4 MHz - 13

    So in order to visually check the result I skip the first 2 frequencies and check others.  Y at - it a simple way to interpolate the berries to compare or will I have to wrap around the test frequency checking to check the limit or not.  An idea that I had been to calculate the increase in frequency of test and then recreated the table row limit to match the table of results.

    Any help would be appreciated!

    Try this it does all of the verification graphic design limit and anything that you want I think.

  • Can someone help me interpret the results of a log cbs.log file?

    My laptop worked little strange - gel sometimes and only excessively slow.  I ran chkdsk /f checks and / r.  Both went well.  I then ran sfc/scannow.  The results of this analysis are displayed below.  I'm not a pc expert, so I don't know if I'm all together or if there is something else, I have to do.  Specifically, the last line of the cbs.log file says, "Verify and Repair Transaction completed. All of the files and registry keys listed in the framework of this operation were properly repaired".

    Any help would be appreciated!  Sorry for the text copy/pasted for a long time.  I cut about 99% of the out and about 1% of the folder (due to a limit of 60 000 characters) just left.  I couldn't find a way to attach a file.

    Thank you!

    POQ 64 ends.

    2012-10-09 22:06:25, Info CSI 00000171 [SR] check complete

    2012-10-09 22:06:26, info CSI 00000172 [SR] components check 100 (0 x 0000000000000064)

    2012-10-09 22:06:26, transaction Info CSI 00000173 [SR] beginning verify and repair

    2012-10-09 22:06:37, info CSI 00000174 Member \SystemRoot\WinSxS\amd64_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6002.18005_none_2ce6c04cdc275758\settings.ini file hashes are not actual file [l:24 {12}] "settings.ini": "

    Found: {l:32 b:sKFy6962 + 2YBWdYMZ6Z/UOVMGpEOdEczYmmYd2o9CE4 =} expected: {l:32 = b:v6OQf2AJO5FVbRBJuIwXxkdkCoOaSk3y0ol6uTH491o}

    2012-10-09 22:06:37, info CSI 00000175 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:06:40, info CSI 00000176 Member \SystemRoot\WinSxS\amd64_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6002.18005_none_2ce6c04cdc275758\settings.ini file hashes are not actual file [l:24 {12}] "settings.ini": "

    Found: {l:32 b:sKFy6962 + 2YBWdYMZ6Z/UOVMGpEOdEczYmmYd2o9CE4 =} expected: {l:32 = b:v6OQf2AJO5FVbRBJuIwXxkdkCoOaSk3y0ol6uTH491o}

    2012-10-09 22:06:40, info CSI 00000177 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:06:40, info CSI 00000178 [SR] this element is referenced by [l:162 {81}] "' Package_17_for_KB948465 ~ 31bf3856ad364e35 ~ amd64 ~ ~ 6.0.1.18005.948465 - 60_neutral_GDR" "

    2012-10-09 22:06:41, Info CSI 00000179 repair results created:

    POQ 65 begins:

    2012-10-09 22:17:24, info CSI 00000301 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:17:24, info CSI 00000302 Member \SystemRoot\WinSxS\amd64_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6002.18005_none_2ce6c04cdc275758\settings.ini file hashes are not actual file [l:24 {12}] "settings.ini": "

    Found: {l:32 b:sKFy6962 + 2YBWdYMZ6Z/UOVMGpEOdEczYmmYd2o9CE4 =} expected: {l:32 = b:v6OQf2AJO5FVbRBJuIwXxkdkCoOaSk3y0ol6uTH491o}

    2012-10-09 22:17:24, info CSI 00000303 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:17:24, Info CSI 00000304 [SR] this element is referenced by [l:162 {81}] "' Package_17_for_KB948465 ~ 31bf3856ad364e35 ~ amd64 ~ ~ 6.0.1.18005.948465 - 60_neutral_GDR" "

    2012-10-09 22:17:24, info CSI 00000305 hashes for Member file? \C:\Windows\PolicyDefinitions\inetres.ADMX are not real file [l:24 {12}] "inetres.admx": "

    Found: {l:32 b:DjclSPQ + c3ju7E53XXW47eR94SH7ICruHSUKg8YAkO0 =} expected: {l:32 b:3 T / Xc + 0 k/wBxJ4k/vlPd86jLOYtWOjRsHrz0hHH9H8s =}

    2012-10-09 22:13:42, CSI 0000027e Info [SR] repair corrupted file [ml:520 {260}, l:64 {32}] '------? \C:\windows\policydefinitions"\[l:24{12}]"Inetres.ADMX' of the store

    2012-10-09 22:13:42, CSI Info 0000027f WARNING: file [l:24 {12}] "inetres.admx" in [l:64 {32}] '-? ' "" \C:\windows\policydefinitions' switching property

    Old: Microsoft-Windows-InetRes-Adm, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes-Adm, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:13:44, info CSI 00000280 hashes for Member file? \C:\Windows\PolicyDefinitions\en-US\InetRes.adml are not real file [l:24 {12}] "InetRes.adml": "

    Found: {l:32 b:8uqfOni5TmKQ2 + wymJKX9uLDOmUV2H1RKpYV3gacaRw =} expected: {l:32 = b:f2Ca02GHu2Yr3ccXiLvfpdfLkfeeDX2UExmZb6pQm2U}

    2012-10-09 22:13:44, info CSI 00000281 [SR] repair file corrupted [ml:520 {260}, l:76 {38}] '------? \C:\Windows\PolicyDefinitions\en-us"\[l:24{12}]"InetRes.adml' of the store

    2012-10-09 22:13:44, info CSI 00000282 WARNING: file [l:24 {12}] "InetRes.adml" in [l:76 {38}] '-? ' "" \C:\Windows\PolicyDefinitions\en-us' switching property

    Old: Microsoft-Windows-InetRes - Adm.Resources, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes - Adm.Resources, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:17:25, 00000306 CSI info [SR] repair corrupted file [ml:520 {260}, l:64 {32}] '------? \C:\windows\policydefinitions"\[l:24{12}]"Inetres.ADMX' of the store

    2012-10-09 22:17:25, info CSI 00000307 WARNING: file [l:24 {12}] "inetres.admx" in [l:64 {32}] '-? ' "" \C:\windows\policydefinitions' switching property

    Old: Microsoft-Windows-InetRes-Adm, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes-Adm, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:17:25, info CSI 00000308 hashes for Member file? \C:\Windows\PolicyDefinitions\en-US\InetRes.adml are not real file [l:24 {12}] "InetRes.adml": "

    Found: {l:32 b:8uqfOni5TmKQ2 + wymJKX9uLDOmUV2H1RKpYV3gacaRw =} expected: {l:32 = b:f2Ca02GHu2Yr3ccXiLvfpdfLkfeeDX2UExmZb6pQm2U}

    2012-10-09 22:17:25, 00000309 CSI info [SR] repair corrupted file [ml:520 {260}, l:76 {38}] '------? \C:\Windows\PolicyDefinitions\en-us"\[l:24{12}]"InetRes.adml' of the store

    2012-10-09 22:17:25, CSI Info 0000030a WARNING: file [l:24 {12}] "InetRes.adml" in [l:76 {38}] '-? ' "" \C:\Windows\PolicyDefinitions\en-us' switching property

    Old: Microsoft-Windows-InetRes - Adm.Resources, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes - Adm.Resources, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:17:25, created results CSI 0000030b repair Info:

    POQ 127 ends.
    2012-10-09 22:17:25, all repairs [SR] CSI Info 0000030 c
    2012-10-09 22:17:25, CSI Info 0000030 d [SR] validation of transaction
    2012-10-09 22:17:25, transaction CSI Info 0000030e Creating NT (seq 1), objectname [6] "(null) '"
    2012-10-09 22:17:25, CSI Info 0000030f NT created transaction (seq 1) result 0x00000000, manage @0x14c4
    2012-10-09 22:17:25, Info CSI 00000310@2012/10/10:02:17:25.662 CSI perf trace:
    CSIPERF:TXCOMMIT; 143298
    2012-10-09 22:17:25, Info CSI 00000311 [SR] check and complete repair operation. All of the files and registry keys listed in this operation were repaired successfully

    Hello

    As noted at the end of your message SFC/scannow points out that there is no rest
    questions that he can fix.

    More information on how to easily read the important information as SFC/scannow
    adds to the cbs.log.

    Many files that SFC cannot resolve are not important.

    Start - type in the search box-> find CMD in top - click right on - RUN AS ADMIN

    put the command from below (copy and paste) in this box and her and then press ENTER.

    findstr/c: "[SR]" %windir%\logs\cbs\cbs.log > sfcdetails.txt

    who creates the sfcdetails.txt file in the folder that you are in when you run it.

    So if you're in C:\Windows\System32 > then you will need to look in that folder for the file.

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    in Windows Vista
    http://support.Microsoft.com/kb/928228

    This creates sfcdetails.txt in C:\Windows\System32 find and you can post the errors in a message
    here. NOTE: there are probably duplicates so please only post once each section error.

    You can read the newspaper/txt files easier if you right click on Notepad or Wordpad then RUN AS ADMIN - then
    You can navigate to sfcdetails.txt (in C:\Windows\System32) or cbs.log (in C:\Windows\Logs) as needed.
    (You may need to search sfcdetails.txt if it is not created in the default folders.)

    =======================================================

    Troubleshooting:

    Use the startup clean and other methods to try to determine the cause of and eliminate
    the questions.

    ---------------------------------------------------------------

    What antivirus/antispyware/security products do you have on the machine? Be one you have NEVER
    on this machine, including those you have uninstalled (they leave leftovers behind which can cause
    strange problems).

    ----------------------------------------------------

    Follow these steps:

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    ==========================================

    After the foregoing:

    How to troubleshoot a problem by performing a clean boot in Windows Vista
    http://support.Microsoft.com/kb/929135
    How to troubleshoot performance issues in Windows Vista
    http://support.Microsoft.com/kb/950685

    Optimize the performance of Microsoft Windows Vista
    http://support.Microsoft.com/kb/959062
    To see everything that is in charge of startup - wait a few minutes with nothing to do - then right-click
    Taskbar - the Task Manager process - take a look at stored by - Services - this is a quick way
    reference (if you have a small box at the bottom left - show for all users, then check that).

    How to check and change Vista startup programs
    http://www.Vistax64.com/tutorials/79612-startup-programs-enable-disable.html

    A quick check to see that load method 2 is - using MSCONFIG then put a list of
    those here.
    --------------------------------------------------------------------

    Tools that should help you:

    Process Explorer - free - find out which files, key of registry and other objects processes have opened.
    What DLLs they have loaded and more. This exceptionally effective utility will show you even who has
    each process.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896653.aspx

    Autoruns - free - see what programs are configured to start automatically when you start your system
    and you log in. Autoruns also shows you the full list of registry and file locations where applications can
    Configure auto-start settings.
    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx
    Process Monitor - Free - monitor the system files, registry, process, thread and DLL real-time activity.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896645.aspx

    There are many excellent free tools from Sysinternals
    http://TechNet.Microsoft.com/en-us/Sysinternals/default.aspx

    -Free - WhatsInStartUP this utility displays the list of all applications that are loaded automatically
    When Windows starts. For each request, the following information is displayed: Type of startup (registry/Startup folder), Command - Line String, the product name, Version of the file, the name of the company;
    Location in the registry or the file system and more. It allows you to easily disable or remove unwanted
    a program that runs in your Windows startup.
    http://www.NirSoft.NET/utils/what_run_in_startup.html

    There are many excellent free tools to NirSoft
    http://www.NirSoft.NET/utils/index.html

    Window Watcher - free - do you know what is running on your computer? Maybe not. The window
    Watcher says it all, reporting of any window created by running programs, if the window
    is visible or not.
    http://www.KarenWare.com/PowerTools/ptwinwatch.asp

    Many excellent free tools and an excellent newsletter at Karenware
    http://www.KarenWare.com/

    ===========================================

    Vista and Windows 7 updated drivers love then here's how update the most important.

    This is my generic how updates of appropriate driver:

    This utility, it is easy see which versions are loaded:

    -Free - DriverView utility displays the list of all device drivers currently loaded on your system.
    For each driver in the list, additional useful information is displayed: load address of the driver,
    Description, version, product name, company that created the driver and more.
    http://www.NirSoft.NET/utils/DriverView.html

    For drivers, visit manufacturer of emergency system and of the manufacturer of the device that are the most common.
    Control Panel - device - Graphics Manager - note the brand and complete model
    your video card - double - tab of the driver - write version information. Now, click on update
    Driver (this can do nothing as MS is far behind the certification of drivers) - then right-click.
    Uninstall - REBOOT it will refresh the driver stack.

    Repeat this for network - card (NIC), Wifi network, sound, mouse, and keyboard if 3rd party
    with their own software and drivers and all other main drivers that you have.

    Now in the system manufacturer (Dell, HP, Toshiba as examples) site (in a restaurant), peripheral
    Site of the manufacturer (Realtek, Intel, Nvidia, ATI, for example) and get their latest versions. (Look for
    BIOS, Chipset and software updates on the site of the manufacturer of the system here.)

    Download - SAVE - go to where you put them - right click - RUN AD ADMIN - REBOOT after
    each installation.

    Always check in the Device Manager - drivers tab to be sure the version you actually install
    presents itself. This is because some restore drivers before the most recent is installed (sound card drivers
    in particular that) so to install a driver - reboot - check that it is installed and repeat as
    necessary.

    Repeat to the manufacturers - BTW in the DO NOT RUN THEIR SCANNER device - check
    manually by model.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    If you update the drivers manually, then it's a good idea to disable the facilities of driver under Windows
    Updates, that leaves about Windows updates but it will not install the drivers that will be generally
    older and cause problems. If updates offers a new driver and then HIDE it (right click on it), then
    get new manually if you wish.

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

    ===========================================

    Refer to these discussions because many more excellent advice however don't forget to check your antivirus
    programs, the main drivers and BIOS update and also solve the problems with the cleanboot method
    first.

    Problems with the overall speed of the system and performance
    http://support.Microsoft.com/GP/slow_windows_performance/en-us

    Performance and Maintenance Tips
    http://social.answers.Microsoft.com/forums/en-us/w7performance/thread/19e5d6c3-BF07-49ac-a2fa-6718c988f125

    Explorer Windows stopped working
    http://social.answers.Microsoft.com/forums/en-us/w7performance/thread/6ab02526-5071-4DCC-895F-d90202bad8b3

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • Is it possible to limit the number of windows that can be opened?

    Original title: options in window 7

    I have an autistic son who likes to play on the internet (usually from sesame street, Barney and AFV videos on you tube).  The problem I have is that it will sometimes open many windows which eventually slows down the computer and results in me having to close the windows as well as his frustration.  Is it possible to limit the number of windows that can be opened?

    Hi Brian,.

    Thanks for posting your question in the Microsoft Community. It seems that you need more information to improve the performance of your computer.

    With the current configuration of Windows, there is no option to limit the number of windows that can be opened. You can search the 3rd application using your favorite search engine, which helps you to limit the number of windows that can be opened.

    Warning: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

    Link reference for more information.

    8.1 Windows, Windows 8 or Windows 7 crashes or freezes.

    http://support.Microsoft.com/kb/2681286/en-us

    Note: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

    I hope this helps. Please let us know if you need assistance.

  • How can I limit the bandwidth for endpoint on the router from 1921 to mitigate impacts traffic bittorrent reviews?

    We have implemented an independent network for our wireless comments. It's an ADSL modem, enter a 1921 Cisco. I setup NAT and DHCP on the router and it is only accessible through the wireless connection. We have a connection 50Mbps and about 250 devices connected to it. Some of them use bittorrent and other file-sharing software to quickly eat bandwidth.

    Since the torrent software is adjustable to any port and cannot be blocked like this, I was wondering if there is a way to limit the bandwidth available to each device connection mitigate this.

    I put this in the Group WAN because it seemed appropriate as it performs the external connection. I know that the argument could be made for LAN, because it connects only within the corporate building and not to one of our service centers.

    Any help would be appreciated.

    Hi John,.

    I don't see anything wrong to apply a basic qos strategy, rank traffic using nbar to match with the bittorrent Protocol and other similar protocols. And then just Butterfly traffic down using a map policy.

    HTH

    Mike

Maybe you are looking for

  • Old iMac is unusably slow

    OK, I know that my old iMac is done towards the end of his life and I use my 2nd Mac now, but this iMac (version 7.1, dating back to mid-2007) is now almost unusably slow, in the respect that it takes a few minutes running until I can move the cursor

  • How can I correct the time on messages of a forum

    My messages for the ar15armory show a time of 6 hours after that I have validated

  • Qosmio G40 - 11 d - Driver GPU

    Hi all For some time I experienced problems with my GPU which are normal when using out-of-date drivers. The most annoying is freeze dry 2-3, after which everything turns back to normal and the system informs that "display driver difficulties blah bl

  • adding memory

    Can I buy any micro drive and add memory?  I bought a Lexar 8 gb microSDHC to add memory. My drive does not read it. I have a model e260. I like it. Want just more memory so that I won't have to keep deleting music out of player.

  • How to eliminate the Virus named web cocoa? Laptop is slow.

    Original title:-web of cocoa So, I think that this file is a virus. I was in Ecuador in the summer, and a friend told me about this program which allows you to view all megavideo without interrupting them.Now when I search for the term 'web of cocoa'