Question of the optimizer V9.2-> upgrade 11.2

Well I spent time this formatting and it cleaning to get an error when I tried to post it I hope it comes out ok.

Solaris 10

Versions of Oracle 9.2.0.6 and 11.2.0.3

In the middle to test an upgrade of a system 9.2.0.6 SAP 11.2.0.3 for production updated in September.

We had teams of application test various SAP transactions before and after the upgrade and save the time of transaction. Fortunately, we have a sandbox environment which is still in 9.2.0.4 so that we can easily test it side by side with an improved test environment. A specific transaction in SAP takes 30-60 seconds on the 11.2 system while it is running in 2 to 5 seconds on 9.2.0.4.

Most of the time in v11 is dedicated to this query that is executed 1000 times, as evidenced by a trace of SAP on the transaction.

  SELECT "KUNNR" , "KUNN2"
    FROM "KNVP"
   WHERE "MANDT" = :A0 AND
         "KUNN2" IN ( :A1 , :A2 , :A3 , :A4 , :A5 ) AND
         "VKORG" = :A6 AND
         "VTWEG" = :A7 AND
         "SPART" = :A8 AND
         "PARVW" IN ( :A9 , :A10 , :A11 )


The individual query is not slow, but when combined at runtime for 1000 executions is most of the runtime.

I threw together a plsql anonymous loop which took place this 1000 times, such as the SAP transaction. This works in the environment of V9 it runs in some secondes.2 with no change in the V11 environment it runs in about 60 seconds.

Just trying to get some information I did an autotrace in versions 9 and 11.

Plan of version 9 and autotrace.

Execution plan

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

0 SELECT STATEMENT Optimizer = CHOOSE (cost = 1 card = 18 bytes = 576)

1 0 INLIST ITERATOR

2 1 ACCESS TABLE (BY INDEX ROWID) OF "KNPV" (cost = 1 card = 18 bytes = 576)

3 2 INDEX (LINE SCAN) OF "KNVP___K" (NO ONE) (cost = 3 = 18 card)

Statistics

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

0 recursive calls

0 db block Gets

Gets 9 compatible

0 physical reads

0 redo size

Autotrace and plan for version 11

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

| ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |

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

|   0 | SELECT STATEMENT |             |    36.  1404 |     2 (0) | 00:00:01 |

|   1.  INLIST ITERATOR.             |       |       |            |          |

|*  2 |   TABLE ACCESS BY INDEX ROWID | KNPV |    36.  1404 |     2 (0) | 00:00:01 |

|*  3 |    INDEX RANGE SCAN | KNVP___K |    36.       |     1 (0) | 00:00:01 |

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

Information of predicates (identified by the operation identity card):

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

2 - filter("VKORG"=:A6 AND "VTWEG"=:A7 AND "SPART"=:A8)

3 - access("MANDT"=:A0 AND ("KUNN2"=:A1 OR "KUNN2"=:A2 OR "KUNN2"=:A3 OR))

(("KUNN2" =: A4 OR "KUNN2" =: A5))

filter ("PARVW" =: A9 or "PARVW" =: "PARVW" = or A10: A11)

Statistics

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

0 recursive calls

0 db block Gets

1009 becomes consistent

0 physical reads

0 redo size

The difference lies in the number of becomes coherent while the plan was that the same so started to play in the V11 environment, try to get it down to

the same number of consistent gets as V9.

It turns out that this seems to be something to change in the optimizer between versions 10.1 and 10.2. I could define optimizer_features_enabled in my session and change the behavior of the query. Do some research on google/support I hit on a quick comment by J. Lewis in this forum who could change the inlist 10.2 optimization. I also found various parameters that would change the behaviour that I did a few tests with them.

The rest of the present is now in version 11 and comes from the loop of PL/SQL which I ran the query 1000 times with.

Results of the v$ sql. The first has optimizer features value enabled 9.2.0.4 the second is nothing has changed.

SQL_ID HASH_VALUE PLAN_HASH_VALUE ELAPSED CPU BUFFER_GETS EXECUTIONS

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

856081986 4271490216 1000.05.06 cdb5x2hthdjk2 8000

81115016 4271490216 1000 74.40 7p32q202dbdw8 74,43 1009000

Dbms_xplan for the 2 sql_ids.

SQL_ID, cdb5x2hthdjk2, number of children 0

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

SELECT / * + opt_param ('optimizer_features_enable', '9.2.0'), loop_test

* / "KUNNR', 'KUNN2' SAPR3. "KNPV" WHERE "MANDT" =: B12 AND 'KUNN2 '.

IN (: B11,: B10,: B9,: B8,: B7) AND "VKORG" =: B6 AND "VTWEG" =.

: B5 AND "SPART" =: B4 AND 'PARVW' IN (: B3: B2,: B1)

Hash value of plan: 4271490216

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

| ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |

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

|   0 | SELECT STATEMENT |             |       |       |     3 (100) |          |

|   1.  INLIST ITERATOR.             |       |       |            |          |

|*  2 |   TABLE ACCESS BY INDEX ROWID | KNPV |    36.  1404 |     3 (0) | 00:00:01 |

|*  3 |    INDEX RANGE SCAN | KNVP___K |    36.       |     2 (0) | 00:00:01 |

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

Information of predicates (identified by the operation identity card):

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

2. (("VKORG" =: B6 ET "VTWEG" =: B5 ET "SPART» =: B4) filter)

3 - access ("MANDT" =: B12 AND (("KUNN2" =: B11 ou "KUNN2" =: B10 ou "KUNN2" =: B9 ou)))

((("KUNN2" =: B8 OR "KUNN2" =: B7)) AND (("PARVW" =: B3 OU "PARVW" =: B2 OU "PARVW" =: B1)))

SQL_ID, 7p32q202dbdw8, number of children 0

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

SELECT / * + loop_test_11 * / "KUNNR', 'KUNN2' FROM SAPR3. 'KNPV' WHERE

"MANDT" =: B12 AND 'KUNN2' IN (: B11,: B10,: B9,: B8,: B7) AND

"VKORG" =: B6 AND "VTWEG" =: B5 AND "SPART" =: B4 AND 'PARVW' IN (: B3)

(: B2,: B1)

Hash value of plan: 4271490216

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

| ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |

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

|   0 | SELECT STATEMENT |             |       |       |     2 (100) |          |

|   1.  INLIST ITERATOR.             |       |       |            |          |

|*  2 |   TABLE ACCESS BY INDEX ROWID | KNPV |    36.  1404 |     2 (0) | 00:00:01 |

|*  3 |    INDEX RANGE SCAN | KNVP___K |    36.       |     1 (0) | 00:00:01 |

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

Information of predicates (identified by the operation identity card):

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

2. (("VKORG" =: B6 ET "VTWEG" =: B5 ET "SPART» =: B4) filter)

3 - access ("MANDT" =: B12 AND (("KUNN2" =: B11 ou "KUNN2" =: B10 ou "KUNN2" =: B9 ou)))

((("KUNN2" =: B8 OR "KUNN2" =: B7)))

filter (("PARVW" =: B3 ou "PARVW" =: B2 ou "PARVW" =: B1))

Apart from a few differences numbers in terms of the difference is in the predicate section. In version 9, a PARVW is used in predicates access section while the default 11 a version is only used as a filter.

The definition of the index

INDEX_NAME POS COLUMN_NAME

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

KNVP___K 1 MANDT

KNVP___K 2 KUNN2

KNVP___K 3 PARVW

There are various options to deal with this included two hidden settings _optimizer_better_inlist_costing and _optim_peek_user_binds, both with an initial test that the application run as expected. Before setting either of those that we would have to do more testing and verification with support etc. So I hope a possible different difficulty perhaps in the way that we collect statistics or anything of the sort.

Is there something in the stats to look out for which could contribute to this?

Default statistics collection was 'for all columns size 1'. I played with various other options with no luck yet.

Our test is not finished, but we are a little worried that this could be a more general than just a query question since we have several transactions that show some runtimes longer 11.2

Post edited by: 892918

I have not sent/posted these traces because working with taken in charge, I think he found the problem and have implemented a workaround solution. Fortunately, so far, it's only this one request that we found with this behavior.

This seems to be caused by the fix for bug 4600710 - improve INLISTs costs in some cases (Doc ID 4600710.8). This query does not fit the description exactly but it it closes. index has 3 columns A, B, C with A and C is not selective but B is selective and C is used in a list.

We now have a few options at our disposal to deal with this request and other pop up.

(1) turn off the fix_control for this bug fix.

(2) manually, to lower the distinct values for column B which will use all 3 columns.

(3) use the advice, first_row (1), off _optimizer_better_inlist_costing etc..

(4) creates a new index on C, B and use a reference database to ensure that it is used.

We'll go with option 4 at this stage. It was the less risky option to affect the rest of the environment.

Thanks for your help.

Tags: Database

Similar Questions

  • Question about the Windows operating system upgrade

    If I were to upgrade to Windows Vista, when it is released in the future the warranty on my laptop is cancelled? And Toshiba install it for me at a lower price? (I know stupid Question but I was wondering)

    Hello

    First of all at the moment the Windows vista is not official on the market. AFAIK this lead on Windows Vista operating system will come at the end of the year or next year. Second, this unit was delivered with another Windows operating system. The Toshiba service partner can install your device only with the delivered operating system.

  • Quick question on the P.Pro CS6 upgrade

    You know, I always get great answers, suggestions and solutions here.  Not sure if this is the right place to ask.   If this isn't the case, please send me in the right direction.

    I'll upgrade the Pro CS4 P. to P.Pro CS6.  I'm not planning underway with all of the Suite. Can someone answer the question?

    I'll be able to import video exports CS6 P.Pro in Encore CS4 to make menus and burn DVDs / Blu - Ray?

    TKS, Tom B.

    Ah... you don't know that EncoreCS6 comes with PProCS6?

    2nd page http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html? promoid = KFPMZ

  • Question about the Satellite Pro M40X upgrades

    I bought it about 10 months ago, it works well, but now I have two questions:

    (1) the original 256 M RAM, I will still add a 512 m?

    (2) the original operating system is in Czech language, can I get an English recovery DVDs?, because I'll go to another country next month.

    Thank you

    Hello David

    1. your device can handle with max 1.5 GB of RAM. You can add tracking modules:
    PC2700 256 MB (PA3311U - 1 M 25)
    PC2700 512 MB (PA3312U - 1 M 51)
    1024MO PC2700 (PA3313U-1M1G)
    These modules are compatible and will have no problem.
    2. as far as I know you can't get recovery on another CD, but it is not important at all. To install the OS on another language, you can
    Use the Microsoft facilities (full version) CD. Download page for all the necessary drivers, tools and utilities that you can find on Toshiba.

  • Satellite P200-1BA - questions about the HARD drive RAM upgrade

    There is a 2nd internal HARD drive Bay, but not a female connector. Can I install it? How?
    There are 2 slots for RAM, all together 2 GB. Is it possible to exit an and instead place a token 2 GB to 3 GB total or should I always double channel pair RAM?

    It is not possible to install the second HARD drive. The laptop box is universal for all models P200, but some of them are delivered with 2 drives hard HDD upgrade is not possible.

    With the RAM modules, you can do what you want. To be more precise, YES! You can remove a 1 GB module and put 2 GB RAM. Please just use high quality Rams and not some products without name at low cost.

  • You have a question about the free Win 7 upgrade

    I just bought a HP Pavilan Elite e9120 PC. Now, it was announced in the store (best buy) this machine is eligible for the upgrade. I also checked with the shure viellot, what they said yes, it was to make. I whent to www.hp.com/windows7upgrade but I could not find my model. So what I'm asking is is it eligible or not. Thanks for the help!

    You can go to this link. Deliver the product no. and serial No. and you can order the upgrade from there. Or you can contact HP chat, they will guide you through it.

    https://www.hpwindows7upgrade.arvato.com/North_America/Endcustomer/

  • Question on the Windows Vista express upgrade terms

    Microsoft.com tell me that the machines of qualification will be eligible for an upgrade to Vista if purchased between October 26, 2006 and March 2007
    (http://go.microsoft.com/?linkid=5559472).

    I had ordered a L100 with XP Pro just before the arrival of the MS mail. Microsoft UK license Dept. had never heard of the plan when I called them this morning. Someone to Toshiba or elsewhere knows what it is all about and what

    I have to do to get Vista on favourable terms, the time is right?

    Hello

    I first heard about these terms.
    I studied a bit on the net and found this Toshiba site on this topic:
    http://www.toshibadirect.com/TD/B2C/ebtext.to?page=vistaupgrade

    Anyway, the Vista will come on the market next year and I think that before Vista is not official buy you can't wait no term. I think next year you can find more information about this action

    In my opinion, you should monitor the link above from time to time.

  • questions about the new SSD T530 upgrade

    I just bought a T530 that comes with a 500 GB 7200 RPM HARD drive. I bought a 256 GB Samsung SSD 830 and was trying to install this. The questions I have are:

    1. is it recommended I the SSD drive in the ultrabay housing and keep the HARD disk where it is? Or place the HARD drive in the ultrabay slot and have the SSD to the standard housing?

    2. is there a certain adapter that should be used on the installation of SSD or HARD drive in the ultrabay slot?

    3 are there settings that need to be changed when using an SSD?

    Thanks in advance.

    1. no difference whatever he is, although if you count hotswap in an optical device, it would be easier to have your primary OS drive.

    2. any generic SATA-UltraBay adapter should work. Make sure you have the size and the generation correct however.

    3. There are a few adjustments on swap files, defragment, etc. You should be able to find this information on the internet.

  • Question for the Vista Home Premium upgrade to Windows 7?

    After you run the Upgrade Advisor, I like Windows mail is compatible with Windows 7. How can I save my emails filed so I don't lose them when I do the upgrade? Thamks

    Windows Update has nothing to do with the upgrade of Windows. That being said...

    Your Windows Mail data will be preserved when you switch to Win7.

    Unlike Vista and Windows XP, Win7 does NOT have any default mail client. However, you can install Windows Live Mail (free) or another e-mail Client (e.g. MS Outlook, which is not free) and then import data from Windows Mail stored in your new email Client.

    You can find more help in this specific Win7 forum: http://social.answers.microsoft.com/Forums/en-US/w7network/threads

    You will find public support for Windows Live Mail in this discussion group: http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.windows.live.mail.desktop

    You will find support for MS Outlook in this public discussion group: http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.outlook.general

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Question of the OS and HD upgrade.

    Hello all, I have created a problem as part of my operating system is Windows XP Professional on two different hard drives.  I want to improve my OS and get new hard disks, but I have to buy a new version (for example Windows 7 complete) or can I just the upgrade (Windows 7 Upgrade).  I still got the liscense key, is that all I need if I want to upgrade and not pay for a new operating system?  Thank you.

    Version upgrade of Windows 7 is all you need. Note that you will need to do an installation "Custom" / cleaning of Windows 7 ". So back up your important data files and be prepaired to reinstall your applications.

    Windows 7 system requirements: http://windows.microsoft.com/en-US/windows7/products/system-requirements
    1 gigahertz (GHz) or faster 32-bit (x 86) or 64-bit (x 64) processor
    1 gigabyte (GB) of RAM (32-bit) or 2 GB RAM (64-bit)
    16 GB of disk space available (32-bit) or 20 GB (64-bit)
    (Note: 16 GB is a strict minimum and unrealistic, suggests at least 32 GB or more)
    Graphical device DirectX 9 with WDDM 1.0 or higher driver

    Windows 7 upgrade paths
    Microsoft has released a downloadable document from MS word with a list of paths to upgrade to Windows 7.
    http://www.Microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=e170eba1-5bab-401F-bbf5-00f0ee7fe0fb

    Price Windows upgrade matrix:
    http://www.microsoftstore.com/store/msstore/HTML/pbPage.Windows_Upgrade_Matrix

    Note: The 'Upgrade' from Windows 7 version you are the owner requires a previous version (and ligitimate) from Windows XP or Vista. If you do not meet these requirements, then you must purchase a full version of Windows 7.

    Windows 7 upgrade paths
    http://TechNet.Microsoft.com/en-us/library/dd772579%28WS.10%29.aspx

    Decrypt Windows 7 upgrades: the official rankings
    http://mossblog.AllThingsD.com/20090804/deciphering-Windows-7-upgrades-the-official-chart/
    (Save the graphic, and then open it using a photo editing software or Viewer to expand to a size more readable)

    Which is right for you?
    http://Windows.Microsoft.com/en-us/Windows7/products/compare

    List feature that provides each edition of Windows 7:
    http://www.SevenForums.com/tutorials/14422-compare-Windows-7-editions.html

    Microsoft product lifecycle
    http://support.Microsoft.com/lifecycle/search/default.aspx?Alpha=Windows+7

    Windows 7 Professional upgrade - Vista owners: be aware that the upgrade to Windows 7 Professional can be used only to perform a upgrade in place for computers that have Vista Business Edition. Unfortunately there is no indication on the box or retail in the EULA/license restrictions of invalid paths to upgrade to Windows 7 Professional.
    http://www.PAGESTART.com/windows7proupgade.html

    Windows 7 Home Premium Upgrade Update: $119.99
    Windows 7 Professional upgrade update: $199.99
    Windows 7 Ultimate Upgrade Update: $219.99

    Update of prices:
    http://www.microsoftstore.com/store/msstore/HTML/pbPage.Windows_Upgrade_Matrix

    Windows XP users have two options:
    1) begins with an upgrade in place to Windows Vista, followed an upgrade in place to Windows 7
    The key is that you need a Vista DVD. So if you have your old DVD of Vista, dust off it.
    Read the details here:
    http://www.PAGESTART.com/xpwin7inplaceupgrade01.html

    (2) the position of official Microsoft: Windows XP users must make a Clean/custom Setup.

    J W Stuart: http://www.pagestart.com

  • A few questions about the upgrade on Satellite A300-144

    Sorry for the typos, English is not my mother tongue.
    I want to ask some questions about the upgrade of a300-144.

    * Some info first.*

    CPU: T2370 ([http://ark.intel.com/products/34445/Intel-Pentium-Processor-T2370-1M-Cache-1_73-GHz-533-MHz-FSB]).
    Chipset: GM965 ([http://ark.intel.com/products/29821/Intel-82GM965-Graphics-and-Memory-Controller]).

    * Questions.*

    1. my frequency of laptop memory at 533 MHz, supports 667 MHz memory controller, memory modules can work at 667 MHz. Is - this because CPU FSB 533 MHz frequency and new processor at 667/800 MHz FSB will fix it or it is hardcoded in the BIOS?

    2 Intel said that the size of max memory for my chipset is 4 GB (2 x 2 GB), but Toshiba says that only 2 GB (2 x 1 GB), who is right?

    3 I know, taken of my CPU is μFCPGA-478 aka socket P, max FSB 800 MHz, max 35 W TDP, so T9500 ([http://ark.intel.com/products/33918/Intel-Core2-Duo-Processor-T9500-6M-Cache-2_60-GHz-800-MHz-FSB]) is a compatible processor or there are some limitations in the BIOS?

    > 1. My frequency of laptop memory at 533 MHz, supports 667 MHz memory controller, memory modules can work at 667 MHz. Is - this because CPU FSB 533 MHz frequency and new processor at 667/800 MHz FSB will fix it or it is hardcoded in the BIOS?

    The speed of the memory is related on the material. This means that the FSB is responsible for the limitation.
    If the FSB would allow support 667 MHz then the memory would also at this speed.

    > 2. Intel says that the size of max memory for my chipset is 4 GB (2 x 2 GB), but Toshiba says that only 2 GB (2 x 1 GB), who is right?
    The memory depends on the chipset. So if the chipset supports 4 GB of RAM, you should be capable of this move to 4 GB of RAM

    > 3. I know, my CPU is? FC-PGA-478 aka socket P, max FSB 800 MHz, max 35 W TDP, so T9500 (http://ark.intel.com/products/33918/Intel-Core2-Duo-Processor-T9500-6M-Cache-2_60-GHz-800-MHz-FSB) will be a compatible processor or there are some limitations in the BIOS?

    It might be possible that the new processor would be fully supported by the BIOS, but in most cases it should not be a problem if the chipset would support the new processor.
    But as far as I know the upgrade of the CPU is not supported by Toshiba or any other manufacturers of portable and its your own risk to run laptop with the new processor.

  • A few questions about the Qosmio F20 upgrade

    First of all, my English is not very good!

    I want to improve my laptop. I want a new graphics card and a new processor.
    My questions are what standard mxm has my cell phone (I have a GO6600)? Where can I buy a new one?
    The cpu can be improved? If so what CPU? Can be installed on a dual core?

    -Does anyone know how the open a Qosmio f20.
    I opened all the screws on the site but I can not open it... What should I do I open Notepad?

    My laptop dvd drive is very strong when I play games... it works all the time and I have made many drowning.
    Do you know how to reduce noise?

    thx for the answers

    Hardware upgrade on laptops is not comparable with the workstations where you can upgrade almost everything. Mainly on laptops, you can improve RAM, WLAN, HARD drive or maybe BT but all that s.

    Update graphics card is definitely not possible because the graphics card is part of the motherboard. Update CPU's might be possible, but certainly not recommendable. The construction of any material is designed by technicians and configured to provide optimal use. If optimal use, you understand very good performance but without the possibility to destroy the material. The common problem on mobile computing is heat and how to cool the hardware components.

    The best graphics card and CPU using the material temperature is much higher and the result can be permanent running fan or just property damage. If you think about all this stuff, I hope you understand that this type of upgrade can be very risky.

    If you need to better and more powerful portable computer the best option is to sell your old and buy newer with the best hardware configuration.

  • Questions about the upgrade to Service Pack 3.

    I want to install visual studio 2010 on my windows xp sp2 computer. But during the installation, we recommend that I needed sp3 to move forward. Is it possible if I get the windows xp disk that contains windows xp sp3 and upgrade my computer to sp3. Because the size of the service pack is huge in size in the microsoft Web site. I just want to know if I can upgrade my computer to sp3 using a disc of windows xp sp3.

    Hi Roland, Mathurin

    With the help of CD which has Windows XP with SP3 integrated must be in a clean install and this results in the loss of data and applications.

    The recommended way to upgrade your computer to SP3 therefore you download SP 3 and install or use a CD that has SP3 standalone.

    Let me know if you have any other questions.

    Kind regards

    Vinod gwenaëlle.

    The forum moderator.

  • Questions about the upgrade to the 4.0 unit

    Hi all

    I have a few questions before the server upgrade to 4.0 to 3.1.3 and install a new Server 4.0. We currently have 7 servers unit all current 3.1.3 running with digital networks. We are planning to upgrade a Server 4.0 and install a new server with 4.0 costs. This is the beginning of the upgrade of the entire company and my questions are the following:

    1 will update the AD schema during the installation/upgrade to 4.0 problems with the 3.1.3 other servers?

    2 since there isn't that one account of the unit currently with the 3.1.3 configuration, creating 4 new accounts unit cause any problem or should I / can I use the current to the unityadmin the unit account or one of the other 3 new accounts? I would like to start over again with 4 new accounts and not use the current service account and migrate to new accounts during the upgrade other servers.

    3. is there a problem to have 3.1.3 servers running jointly with 4.0 servers in general?

    My impression is that this is very well that I would no problem to start the 3.1.3 servers alongside with 4.0 servers, there should be no problem to use new accounts of the unit and this update of the AD schema should not be a problem for the old servers, but I want to make sure before doing the update/install.

    Oh, it's all run with Exchange 2000.

    Thanks for your time!

    Keith

    (1) it is backward compatible

    (2) creation of 4 new accounts will be fine.

    (3) you can run 3.1 (x) alongside with 4.x

    H. M.

  • Recently bought a laptop computer; A few questions about the offer Upgrade to Windows 8

    I have a few questions about the Upgrade of Windows 8 offer for new computers.  I recently bought a Toshiba Satellite S855-S5268 of amazon.com, which came with Windows 7 Home Premium.  Toshiba already has a beta version of drivers and utilities for Windows 8 for the S855 on their Web site.

    (1) I bought my laptop in July of this year, and I've not yet registered for 8 Windows Upgrade offer with Microsoft.  Am I still eligible to receive the upgrade, if I sign up soon?
    (2) if I buy the upgrade through this offer, I'll be able to download an ISO file so I can burn the installation media, or do I need to upgrade to Windows 7?
    (3) if I will be able to burn the installation media, I'll be able to erase my hard drive and do a clean install of Windows 8 (which I'd rather do, I have a lot of backups of my data).  I am aware that I would probably need to provide my product key Windows 7 Home Premium 64-bit OEM during the new installation, because it is an upgrade and not a full version; This isn't a big deal, because my Windows 7 Home Premium 64-bit OEM product key is stuck at the bottom of my laptop.
    (4) my current copy of Windows 7 is activated by seeing my BIOS (I have a traditional BIOS, not a UEFI).  If I had to switch to Windows 8 and decide then I'd rather back in Windows 7, for example, a few months later, I'll be able to do that (I burned recovery of Windows 7 with the Toshiba utility disks, which I did), and Windows 7 will continue to activate by seeing my BIOS, even after the installation (and later remove) Windows 8?
    Thank you very much!

    I have a few questions about the Upgrade of Windows 8 offer for new computers.  I recently bought a Toshiba Satellite S855-S5268 of amazon.com, which came with Windows 7 Home Premium.  Toshiba already has a beta version of drivers and utilities for Windows 8 for the S855 on their Web site.

    (1) I bought my laptop in July of this year, and I've not yet registered for 8 Windows Upgrade offer with Microsoft.  Am I still eligible to receive the upgrade, if I sign up soon?
     
    Yes, the registration period is between June 2, 2012 to January 31, 2013.
    (2) if I buy the upgrade through this offer, I'll be able to download an ISO file so I can burn the installation media, or do I need to upgrade to Windows 7?
     
    Yes, the Upgrade Wizard of Windows 8 will allow you to create a bootable DVD or you can grab the ESD file and save it.
    (3) if I will be able to burn the installation media, I'll be able to erase my hard drive and do a clean install of Windows 8 (which I'd rather do, I have a lot of backups of my data).  I am aware that I would probably need to provide my product key Windows 7 Home Premium 64-bit OEM during the new installation, because it is an upgrade and not a full version; This isn't a big deal, because my Windows 7 Home Premium 64-bit OEM product key is stuck at the bottom of my laptop.
     
    Yes and there are better ways to reinstall Windows 8 without using the installation disc, you can use the reset and refresh.
     
     

    These steps will take you through refreshing your PC:

    · Press the Windows key + C on your keyboard to show the charms (if you use a touch screen: touch the right edge of your screen and drag your finger to the left)

    · Click settings

    · Click change PC settings

    · Click general in the left column

    · Under refresh your PC without affecting your files, click Start

    Then follow the instructions that will be provided on-screen to cool your PC.

    (4) my current copy of Windows 7 is activated by seeing my BIOS (I have a traditional BIOS, not a UEFI).  If I had to switch to Windows 8 and decide then I'd rather back in Windows 7, for example, a few months later, I'll be able to do that (I burned recovery of Windows 7 with the Toshiba utility disks, which I did), and Windows 7 will continue to activate by seeing my BIOS, even after the installation (and later remove) Windows 8?
     
    As long as you have a recovery disk which you should create or use the construction in the recovery partition, Yes, it will self activate.
    Thank you very much!

Maybe you are looking for

  • Dynadock U10 - connectivity LAN

    I recently bought a Dynadock U10 and I'm faced with a problem of LAN connectivity. After you start Windows 7 indicates that no media is connected to the Dynadock - even when it is.When you open the network and sharing Center, choose the connection to

  • DeskJet F380: Cannot remove the paper jam

    Printer all-in-one Deskjet F380 system Windows 7 Home Premium 64-bit: Aircraft paper jam and I removed paper from the front. Now, I can not reset or clear printing to work. Followed all the steps in the HP online support and it will print test sheets

  • OfficeJet 8500 has more

    I analyze a large number of unique to the minute paged documents, I have to feed them and name them individually, I was wondering if there was anyway to use the ADF to feed them all at the same time (I know that can be done but it scans everything in

  • Using the controls 'show' - of the things to check in newspapers.

    Hello Need help simple but important in terms of what to check in what concerns the logs we extract from the "show commands" on the front door - were responsible for checking alerts from the customer gateway and would like to know - what exactly can

  • Cannot open the form after change the form in the folder

    After adding file in the form function, when I open the form in the system, he holds the and cannot be opened. What can be the problem?