General idea about a question

Hello all;

I am trying to decide on two design approach for the statement...

first approach: create a table that can be used by various applications of reporting for departments to access calendar information.
downside: the table will quickly grow too large and fear of the performance issues on the road
advantage: respect the principle of standardization, integrity of data, maintenance aid, prevent data anomalies, avoid duplication of data, etc.

Second approach: create several times table for various applications considered for various Planning Department
Disavantage: all the benefits associated with the first approach applies
Advantage: contributes to the performance of the type of long-term...

user13328581 wrote:

first approach: create a table that can be used by various applications of reporting for departments to access calendar information.
downside: the table will quickly grow too large and fear of the performance issues on the road
advantage: respect the principle of standardization, integrity of data, maintenance aid, prevent data anomalies, avoid duplication of data, etc.

Second approach: create several times table for various applications considered for various Planning Department
Disavantage: all the benefits associated with the first approach applies
Advantage: contributes to the performance of the type of long-term...

The number of rows in a table is NOT a performance issue. 1 billion row table is not "worse" than 1 million row table when it comes to performance.

There are 2 basic factors that impact query performance. The amount of e/s to do. Number of CPU cycles to burn.

If this table of billion line is accessible via the primary and secondary indexes mainly, without index to great beaches of analyses and full table scans, access the table occur as well as a table of 100 rows.

However, if a 100 million lines must be available, grouped by, combined and aggregated - which will be slow. And partitioning will not make a difference. A split that 100 million lines of 10 tables different Department, will not make a difference. As a 100 million lines need to be I / O'ed and it is the performance issue. Partitioning or using several tables does not change the requirement that a 100 million lines should be treated.

So the basic answer to your question is - use a single table as is good 3NF, and how one designs relational databases.

With regard to the number of lines - irrelevant, unless that ranges large rank should be treated.

If necessary, relook for huge row ranges scanning requirements. Ensure that the business reasons behind it is sound and sensible. Then look at how to solve the problem of having to do big chunks of e/s for the treatment of the immense beaches of lines. There are a number of features that can be used. Materialized views and query rewrite. Parallel queries. Changes in the data model to meet the requirement of the company without needing to scan many rows. Etc.

Tags: Database

Similar Questions

  • I used "windows easy transfer", but after that I can see the files. Any idea about it?

    I used "windows easy transfer", but after that I can see the files. Any idea about it?

    original title: Windows easy transfer

    Hi Vrajeshparekh,

    1. what files you're talking about?
    2. When you see the files?

    When you use the Windows easy transfer cable to transfer the data that the data is copied. So you copy the data on the old computer also.

    Windows Easy Transfer (applies to Windows Vista)
    http://Windows.Microsoft.com/en-us/Windows7/products/features/Windows-easy-transfer

    How Windows Easy Transfer makes setting up a computer easier? (Applies to Windows Vista)
    http://Windows.Microsoft.com/en-us/Windows7/how-does-Windows-easy-transfer-make-setting-up-a-computer-easier

  • Anyone has idea about the table "BIN$ IdkH3La7RVy0VEiT + 5ag == $0.

    Hi all

    Anyone has idea about the table "BIN$ IdkH3La7RVy0VEiT + 5ag == $0 ' in Oracle 11 g.

    When I ran a query such as "Select * tab '.» I found a table called ' BIN$ IdkH3La7RVy0VEiT + 5ag == $0. When I select the data in this table, I found the data. And these data are the same as the data in the other table in the same schema. And what is the concept on this table.

    and on the last thing is I tried to remove data from the table ' BIN$ IdkH3La7RVy0VEiT + 5ag == $0 "but the data is still there in this table, even though I am committed it.".

    Well, these are the tables that you have removed from your database.

    This feature is presented in 10g. When you delete a table, he goes to the basket just as any file goes into windows.

    If you use-->

    purge recyclebin

    It will delete the entire table at all times.

    If you want to retrieve any table of the Recycle Bin, then you can use->

    fall of flashback table emp tobefore

    Please see this link->

    http://www.Oracle.com/technology/pub/articles/10gdba/week5_10gdba.html

    Kind regards.

    LOULOU.

  • Need general advice about creating a collage of buttons

    Here is my fla: http://waltonstreetwebdesign.com/public/Look_Faster.Fla.zip

    So here's how this all came about, and please bear with me I'm relatively new to Flash:

    It started with two banners. A banner is a banner of title, and the other banner is a collage of sellers. When you mouse over the title banner, the banner would swap the banner of collage. The banner of collage, you can click on one of the sellers and who would take you to their respective pages.

    I had originally planned to use a swap image javascript with HTML maps. Simple enough... the problem is the only browser, he worked on a IE - in all other browsers the HTML card screwed to the top of the Javascript image switcher.

    So, I turn to Flash!

    In my fla, one is the title banner, so when you mouse over with success goes to frame 2. Now, here's my challenge:

    It is my understanding that each of them different images in the collage must be its own twist, because each of them will be going to a different link. Now, if you mouse out of the collage (not any single individual button) it is supposed to exchange the title banner. If you mouse over an individual button to another individual button, is not allowed to swap.

    So I thought that if I could control the passage of the mouse, and the direction of the passage of the mouse on (where the mouse upward, for example), I could make it so that if you mouse out in certain directions of a particular button banner swaps back and if you mouse over the banner in other directions don't trade away. So I will need for these two events occur at the same time.

    Another idea I had was to use some sort of system of variable in each button software for whether or not I am mousing over another button, but I really have not much developed this more than a rough concept, so I know not how I would do no more.

    And I am always open to new suggestions on how to get this accomplished!

    Thank you very much for your help!

    I don't know how you will implement.  but each button must match a url and you must provide this information.

    one way to do this would be to use a table that corresponds to your buttons.  Thus, the first element of the array is the url used by the first button, the array element 2 is used by the 2nd button etc.  then:

    var urlA:Array = ["www.adobe.com", "www.kglad.com", etc.];

    var gotoFrame1TO:uint;
    function gotoFrame1() {}
    gotoAndPlay (1);
    }

    for (var i: uint = 1; i<>
    This ["BTN" + i] .addEventListener (MouseEvent.ROLL_OUT, outF);
    This ["BTN" + i] .addEventListener (MouseEvent.ROLL_OVER, overF);
    This ["BTN" + i] .addEventListener (MouseEvent.Click, clickF);
    This ["btn" + i] .ivar = i;
    }

    function outF(e:Event) {}
    gotoFrame1TO = setTimeout(gotoFrame1,500);
    }
    function overF(e:Event) {}
    clearTimeout() (gotoFrame1TO);
    }
    function clickF(e:Event) {}
    navigateToURL (new URLRequest ("http://", +(e.currentTarget.ivar-1)));
    }

  • Where can I submit the idea about Firefox?

    Where can I submit suggestions on the development of Firefox? Is there?

    Hi, thanks for your question, you can give your feedback to Mozilla here.

    If your question is resolved by this or another answer, please take a minute to let us know. Thank you.

  • Satellite M70-168 - no idea about the BIOS password

    Hello

    I have a problem with my Satellite M70-168 is PSM70E-01300PFR. When it starts to have a black screen a blue ask password window. The problem is that I have no idea on this password.

    Can you help me please?

    Concerning

    Hi mate,

    If you have forgotten this password, it must be removed from an authorized service, but you can't do anything in this case. You need professional help to remove it!

    In addition, this should be an interesting article for you:
    http://APS2.toshiba-tro.de/KB0/FAQ35002I000IR01.htm

  • dv5-1130: General modernization dv5 1130 questions

    Hello

    I have a dv5 1130 I want to upgrade, spicifically the CPU and memory.

    My questions to you are:

    • What is the robot the fastest BIOS takes in charge?
    • What is the fastest and memory how computer support?

    I am running:

    Prosessor

    Intel Mobile Core 2 Duo T5800 @ 2.00GHz

    Chipset

    Northbridge Intel GM45/GM47 Rev 07

    Southbridge Intel 82801IM (ICH9-M) Rev. 03

    Memory type DDR2

    Memory size 3 GB

    Frequency 399,0 MHz (1:2) memory

    DMI BIOS

    vendor Hewlett-Packard

    version F.21

    day 08-20-2009

    DMI Baseboard

    seller Quanta

    model 3602

    Revision 02.26

    series CNF8352JL9

    Software

    Windows Version Microsoft Windows Vista (6.0) Ultimate Edition 32 bit Service Pack 2 (Build 6002)

    Please let me know if you need any futher information (in addition to WHY I want to improve this machine 5 year of age, in other words)

    Here is the Service Manual:

    Dv5 repair manuals

    It will accept up to a T9600 processor that would be a MAJOR of a T5800 update. T9600s are always readily available and cheap:

    http://www.eBay.com/ITM/Intel-Core-2-Duo-T9600-2-8GHz-6MB-cache-1066MHz-SLG9F-PGA478-Mobile-CPU-/272003607460?hash=item3f54adaba4:g:iv4AAOSwsB9WDcdx

    You already have faster memory, you can use: DDR2-800. You have 3 gigs and the material can take 4 gigs. However, you have 32-bit Windows and to use more than 3 gigs, you need 64-bit Windows.

    If it's 'the Answer' please click on 'Accept as Solution' to help others find it.

  • General information about licensing of the "Microsoft Windows 7 Ultimate, Version full (PC DVD)"

    Hello

    I've never had to buy a Windows DVD facility before so my questions may seem a bit Basic.

    I intend to buy a copy of 'Microsoft Windows 7 Ultimate', full Version (PC DVD) from Amazon. (I think I should be clear of a counterfeit product, if I buy direct from Amazon).

    Am I right in thinking that if I buy this product so I can install it on several PC as long as I have installed it on more than one PC at a time?

    Really I intend to install first to my current PC, familiarize yourself with Windows 7 and then, finally, just abandon my old PC, buy a new and then install Windows 7 on this new PC. Is it possible for me to do it without breaking the terms of licenses for this product?

    Finally, (assuming I have reason to think that it is normal to do so) is there something I should do that I could not be aware of the transfer Windows 7 from my old PC to a new? I think I mean it's OK to me to erase the hard drive from the old PC before binning - and which supports Windows 7, having already been installed on this PC?

    Hello

    I've never had to buy a Windows DVD facility before so my questions may seem a bit Basic.

    I intend to buy a copy of 'Microsoft Windows 7 Ultimate', full Version (PC DVD) from Amazon. (I think I should be clear of a counterfeit product, if I buy direct from Amazon).

    You shouldn't have a problem if his continuous from Amazon.

    Am I right in thinking that if I buy this product so I can install it on several PC as long as I have installed it on more than one PC at a time?

    As long as Windows 7 is installed on one PC at a time, Yes, you can uninstall it from the computer you install it 1st on and re - install on another PC.

    Really I intend to install first to my current PC, familiarize yourself with Windows 7 and then, finally, just abandon my old PC, buy a new and then install Windows 7 on this new PC. Is it possible for me to do it without breaking the terms of licenses for this product?

    Before abandon you the old PC, delete the Windows 7 partition and you will not have a license problem.

    Finally, (assuming I have reason to think that it is normal to do so) is there something I should do that I could not be aware of the transfer Windows 7 from my old PC to a new? I think I mean it's OK to me to erase the hard drive from the old PC before binning - and which supports Windows 7, having already been installed on this PC?

    Freeing your product key for use on the new PC, but because the key has already been used once (your 1st PC / old), you need to activate by phone after installing it on the new PC.

    How to activate Windows 7 or Vista manually (activate by phone)
    http://support.Microsoft.com/kb/950929/en-us

    1) click Start and in the search for box type: slui.exe 4
    (2) press the ENTER"" key.
    (3) select your "country" in the list.
    (4) choose the option "activate phone".
    (5) stay on the phone * do not select/press any option * and wait for a person to help you.
    (6) explain your problem clearly to the support person.
    (7) the person must give you a confirmation ID, copy it down on paper,
    (8) check that the ID is correct in reading the support person.
    (9) to enter the ID number, then click 'Next' to complete the activation process.

    Activation and registration of a Microsoft product
    http://support.Microsoft.com/?kbid=326851
    Windows activation: (888) 571-2048
    (888) 725-1047 or 800-936-5700

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

  • Any idea about the error on submit form (form external eloqua built-in)?

    Hi guys,.

    My team Web site operations gets attached all error trying to test the integrated external eloqua form.

    I tested the form by taking the HTML form Eloqua and make presentations to test. It seems to work very well.

    Someone has an idea what could be wrong here? Is there something wrong in integration on the landing page?

    Have you checked that the code is correct in the external page.  Form fields name and that relevant at all?

    Elizabeth

  • Idea about the creation of the registration with blank fields

    Hi friends,
    I am trying to build a small application where the first page of the application will be the home page. On the homepage, I have register, Login and home buttons. By clicking on the registration link, I want to go to the page where the page with blank fields. How can I view the fields blank when the page is displayed for the first time. I've linked the data control on the page. But when the page appears, it seems, with the data. Also I want to have a cancel button pressed to invalidate or to write off the new record created. How can we achieve this? Any idea.

    Thank you

    User, please tell us your Jdev version!

    A form with fields related to the vo for example shows the data out of the current line. Top get an empty fields, you must create a new line before you navigate to the page to display the form. Your use case can be applied if you call creatInsert inn the vo holding you back data, then go to the screen, allow the user to fill in the data. If the user cancels the cancellation of appeal form to remove the new line, if the user has saved the form validation data in the db.

    Timo

  • General information about the file?

    Dear everyone who works with Adobe and enjoy

    I have this question for a project in Adobe Indesign. I worked for several weeks with a magazine, and that is the question: can I know how many days and hours I deal with this? Where can I find it? I clicked on the file and looked at properties, but nothing.

    Yours sincerely Stig Morterud of Norway

    I know, but it could help rebuild a time table when how long the work was done with this document, as well as other documents queue information.

  • Any idea about this problem on installing the Oracle Client

    Hello

    Client computer: Dell notebook, i5, Win 7 SP1 Enterprise 64-bit (8 GB of RAM)

    I am trying to install the oracle 11.2.0.3 client 64-bit on this machine, but facing problems. After I'm done specifying ORACLE_BASE and selection of the language and 'Administrative' selected option instead of 'instant customer' or 'Runtime', by clicking on the next button, progress bar is displayed and the time it's done with audit requirements that disappears from the screen moving in together. I ran the installer with the option "Run as Administrator" too and tried to use 11.2.0.2 setup, but in vain.

    Quick question... I have a CSI valid, if I get a ticket with Oracle, they would help me on problem installing client that I am facing. In the past I was able to install the client on this machine, I am just clueless despite that I looked at the log generated by the Setup program file.

    Here is the content of the journal

    ParamFile using: C:\client\install\oraparam.ini

    Monitor: must be configured to display at least 256 colors.    4294967296 real past

    The command line to decompress:

    "C:\client\install\unzip - qqqo... \stage\Components\oracle.jdk\1.5.0.30.03\1\DataFiles/"*.jar ' d 'C:\Users\ravi\AppData\Local\Temp\OraInstall2013-12-20_10-07-45PM"INFO: loading data from: jar:file:/C:/Users/ravi/AppData/Local/Temp/OraInstall2013-12-20_10-07-45PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml

    INFO: Loading jar:file:/C:/Users/ravi/AppData/Local/Temp/OraInstall2013-12-20_10-07-45PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml beanstore

    NEWS: Restoration of class jar:file:/C:/Users/ravi/AppData/Local/Temp/OraInstall2013-12-20_10-07-45PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml oracle.install.driver.oui.ConfigCmdMappings

    INFO: Loading Xml Bean store beans. [BeanStoreName:config - data]

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    INFO: Development of the property id: in bean: configcmd

    NEWS: Development of the property: platformcmdmap in bean: configcmd

    NEWS: Development of the property: configcmds in bean: configcmdmappings

    INFO: The inventory exists: false

    INFO: Application bean plant

    NEWS: Increased

    INFO: No global condition found definition.

    INFO: Build the flow graph

    Information: State AutoUpdatesOptionsUI

    Information: State UpdatesListUI

    NEWS: State finishupdates

    INFO: Build the flow graph

    NEWS: State Loaded init

    NEWS: State installModeDecider

    NEWS: State clientInstallType

    NEWS: State autoupdatesDecider

    NEWS: State clientInstallMode

    Information: State AutoUpdatesOptionsUI

    Information: State UpdatesListUI

    NEWS: State supportedOSCheck

    NEWS: State productLanguage

    NEWS: State getOracleHome

    NEWS: State prereqExecutionDecider

    NEWS: State checkPrereqs

    NEWS: State postPrereqs

    INFO: Loaded summary statement

    NEWS: State clientCustomInstall

    NEWS: State schedulerAgent

    NEWS: State mtsDialog

    NEWS: State Loaded configuration

    NEWS: State Loaded finishing

    INFO: Connection between States

    NEWS: State [AutoUpdatesOptionsUI]: route = NO_AUTO_UPDATES; to = supportedOSCheck

    NEWS: State [AutoUpdatesOptionsUI]: route = success; to = UpdatesListUI

    NEWS: State [UpdatesListUI]: route = success; to = supportedOSCheck

    NEWS: State [autoupdatesDecider]: route = AUTO_UPDATES_DISABLE; to = supportedOSCheck

    NEWS: State [autoupdatesDecider]: route = AUTO_UPDATES_STATE_SKIP; to = supportedOSCheck

    NEWS: State [autoupdatesDecider]: route = success; to = AutoUpdatesOptionsUI

    NEWS: State [checkPrereqs]: route = success; to = summary

    NEWS: State [clientCustomInstall]: route = TO_ENDCUSTOM; to = prereqExecutionDecider

    NEWS: State [clientCustomInstall]: route = TO_ORAMTS; to = mtsDialog

    NEWS: State [clientCustomInstall]: route = TO_SCHEDULERAGENT; to = schedulerAgent

    NEWS: State [clientInstallMode]: route = UPGRADE_NO; to = clientInstallType

    NEWS: State [clientInstallMode]: route = UPGRADE_YES; to = getOracleHome

    NEWS: State Condition [clientInstallMode]: route = incompatible; to = clientInstallType

    NEWS: State [clientInstallType]: route = ic_no; to = autoupdatesDecider

    NEWS: State [clientInstallType]: route = ic_yes; to = getOracleHome

    NEWS: State [getOracleHome]: route = ICHOME_SELECTED; to = prereqExecutionDecider

    NEWS: State [getOracleHome]: route = INVENTORY_NO; to = prereqExecutionDecider

    NEWS: State [getOracleHome]: route = INVENTORY_NO_CUSTOM_YES; to = clientCustomInstall

    NEWS: State [getOracleHome]: route = INVENTORY_YES; to = prereqExecutionDecider

    NEWS: State [getOracleHome]: route = INVENTORY_YES_CUSTOM_YES; to = clientCustomInstall

    NEWS: State [getOracleHome]: route = NON_ICHOME_SELECTED; to = autoupdatesDecider

    NEWS: State [init]: route = DOWNLOAD_UPDATES_ONLY; to = AutoUpdatesOptionsUI

    NEWS: State [init]: route = success; to = installModeDecider

    NEWS: State [installModeDecider]: route = UPGRADE_IMPOSSIBLE; to = clientInstallType

    NEWS: State [installModeDecider]: route = UPGRADE_POSSIBLE; to = clientInstallMode

    NEWS: State [mtsDialog]: route = success; to = prereqExecutionDecider

    NEWS: State [postPrereqs]: route = CUSTOM; to = clientCustomInstall

    NEWS: State [postPrereqs]: route = NON_CUSTOM; to = summary

    NEWS: State [prereqExecutionDecider]: route = executeprereqs; to = checkPrereqs

    NEWS: State [prereqExecutionDecider]: route = ignoreprereqs; to = summary

    NEWS: State [productLanguage]: route = UPGRADE_ROUTE; to = prereqExecutionDecider

    NEWS: State [productLanguage]: route = productlanguage_yes; to = getOracleHome

    NEWS: State [schedulerAgent]: route = TO_ENDCUSTOM; to = prereqExecutionDecider

    NEWS: State [schedulerAgent]: route = TO_ORAMTS; to = mtsDialog

    NEWS: State [setup]: route = success; to = finishing

    NEWS: State [summary]: route = success; to = configuration

    NEWS: State [supportedOSCheck]: route = success; productLanguage =

    NEWS: State [AutoUpdatesOptionsUI]: route = NO_AUTO_UPDATES; to = finishupdates

    NEWS: State [AutoUpdatesOptionsUI]: route = success; to = UpdatesListUI

    NEWS: State [UpdatesListUI]: route = DOWNLOAD_UPDATES_FINISHED; to = finishupdates

    INFO: Successfully built the stream

    INFO: Bean opening stores of which beans can be loaded

    INFO: Loading beanstore from a given input stream

    WARNING: Failed to create the xml for the key:CommonProgramFiles(x86) tag

    WARNING: Failed to create the xml for the key:ProgramFiles(x86) tag

    INFO: Translating the external format in raw format

    INFO: Loading the beans of flow data

    INFO: Loading the beans in Bean store properties. [BeanStoreName:beanstore]

    NEWS: Development of the property: ClientInstallSettings in bean: ClientSetupBean

    NEWS: Development of the property: oracle_install_autoupdates_myOracleSupportCredentials in bean: AutoUpdatesInstallSettings

    NEWS: Development of the property: oracle_install_autoupdates_httpProxySettings in bean: AutoUpdatesInstallSettings

    NEWS: Development of the property: AutoUpdatesInstallSettings in bean: ClientSetupBean

    NEWS: Development of the property: CentralInventorySettings in bean: ClientSetupBean

    NEWS: Development of the property: OCMSettings in bean: ClientSetupBean

    INFO: Loading Xml Bean store beans. [BeanStoreName:beanstore]

    NEWS: Development of the property: ClientInstallSettings in bean: ClientSetupBean

    NEWS: Development of the property: oracle_install_autoupdates_myOracleSupportCredentials in bean: AutoUpdatesInstallSettings

    NEWS: Development of the property: oracle_install_autoupdates_httpProxySettings in bean: AutoUpdatesInstallSettings

    NEWS: Development of the property: AutoUpdatesInstallSettings in bean: ClientSetupBean

    NEWS: Development of the property: CentralInventorySettings in bean: ClientSetupBean

    INFO: Set value for the ClientSetupBean bean

    INFO: Loading the beans in Bean store properties. [BeanStoreName:beanstore]

    INFO: Loading Xml Bean store beans. [BeanStoreName:beanstore]

    INFO: Closing bean stores that the beans can be loaded

    INFO: Save views of workflow

    INFO: Add view [type: viewId oracle.install.commons.base.interview.common.view.PrereqGUI: null uiType: null]

    INFO: oracle.install.commons.base.interview.common.view.PrereqGUI added to view Type register with the key as [points]

    INFO: Add view [type: viewId oracle.install.commons.base.interview.common.view.SummaryGUI: null uiType: null]

    INFO: oracle.install.commons.base.interview.common.view.SummaryGUI added to view Type register with the key as [SummaryUI]

    INFO: Add view [type: viewId oracle.install.commons.base.interview.common.view.SetupGUI: null uiType: null]

    INFO: oracle.install.commons.base.interview.common.view.SetupGUI added to view Type register with the key as [SetupUI]

    INFO: Add view [type: viewId oracle.install.ivw.common.view.ProductLanguageGUI: ProductLanguageUI uiType: null]

    INFO: oracle.install.ivw.common.view.ProductLanguageGUI added to view Type register with the key as [ProductLanguageUI]

    INFO: Add view [type: viewId oracle.install.ivw.client.view.CustomInstallGUI: null uiType: null]

    INFO: oracle.install.ivw.client.view.CustomInstallGUI added to view Type register with the key as [CustomInstallUI]

    INFO: Add view [type: viewId oracle.install.ivw.client.view.SchedulerAgentGUI: null uiType: null]

    INFO: oracle.install.ivw.client.view.SchedulerAgentGUI added to view Type register with the key as [SchedulerAgentUI]

    INFO: Add view [type: viewId oracle.install.ivw.client.view.InstallLocationGUI: null uiType: null]

    INFO: oracle.install.ivw.client.view.InstallLocationGUI added to view Type register with the key as [InstallLocationUI]

    INFO: Add view [type: viewId oracle.install.ivw.client.view.InstallTypesGUI: null uiType: null]

    INFO: oracle.install.ivw.client.view.InstallTypesGUI added to view Type register with the key as [InstallTypesUI]

    INFO: Add view [type: viewId oracle.install.ivw.client.view.InstallModeGUI: null uiType: null]

    INFO: oracle.install.ivw.client.view.InstallModeGUI added to view Type register with the key as [InstallModeUI]

    INFO: Add view [type: viewId oracle.install.ivw.client.view.FinishGUI: null uiType: null]

    INFO: oracle.install.ivw.client.view.FinishGUI added to view Type register with the key as [FinishUI]

    INFO: Add view [type: viewId oracle.install.ivw.common.view.AutoUpdatesOptionsUI: AutoUpdatesOptionsUI uiType: null]

    INFO: oracle.install.ivw.common.view.AutoUpdatesOptionsUI added to view Type register with the key as [AutoUpdatesOptionsUI]

    INFO: Add view [type: viewId oracle.install.ivw.common.view.UpdatesListUI: UpdatesListUI uiType: null]

    INFO: oracle.install.ivw.common.view.UpdatesListUI added to view Type register with the key as [UpdatesListUI]

    INFO: Add view [type: viewId oracle.install.ivw.common.view.FinishUpdatesUI: FinishUpdatesUI uiType: null]

    INFO: oracle.install.ivw.common.view.FinishUpdatesUI added to view Type register with the key as [FinishUpdatesUI]

    INFO: Values of initial configuration properties:

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

    VALUE OF THE PROPERTY

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

    AutoUpdatesInstallSettings oracle.install.ivw.common.bean.AutoUpdates

    InstallSettings@395fd251

    Fake COLLECTOR_IGNORE_CONFIGURATION

    Fake COLLECTOR_IGNORE_FAILURES

    COLLECTOR_RESPONSE_FILE

    CentralInventorySettings oracle.install.ivw.common.bean.CentralInve

    ntorySettings@66c8e4de

    ClientInstallSettings oracle.install.ivw.client.bean.ClientInsta

    llSettings@7e4e194f

    Fake DECLINE_SECURITY_UPDATES

    FROM_LOCATION C:\client\install\... /stage/Products.Xml

    INSTALL_TYPE InstantClient

    MYORACLESUPPORT_PASSWORD * protégés of value, is not to be connected *.

    MYORACLESUPPORT_USERNAME

    OCMSettings oracle.install.ivw.common.bean.OCMSettings

    @f29df8a

    ORACLE_BASE

    ORACLE_HOME

    ORACLE_HOSTNAME MYPERS.us.tel.com

    PROXY_HOST

    PROXY_PORT

    PROXY_PWD * protégés of value, is not to be connected *.

    PROXY_USER

    True SECURITY_UPDATES_VIA_MYORACLESUPPORT

    SELECTED_LANGUAGES {"en"}

    fake b_schedulerAgentSelected

    fake oracle_install_LaunchNetCA

    true oracle_install_NoMigration

    fake oracle_install_RACInstall

    oracle_install_WindowsSystemDirectory

    oracle_install_autoupdates_httpProxyPort 0

    oracle_install_autoupdates_httpProxySettings oracle.install.ivw.common.bean.HttpProxySe

    ttings@201d592a

    oracle_install_autoupdates_myOracleSupportCredentials oracle.install.ivw.common.bean.MyOracleSup

    portSettings@41e8e144

    fake oracle_install_autoupdates_selected

    fake oracle_install_client_upgrading

    oracle_install_db_ConfigurationType

    oracle_install_db_InstallEdition EE

    oracle_install_db_InstallType

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

    INFO: Start the Oracle Client Setup

    INFO: Launch of the execution of the movement in INTERACTIVE mode

    INFO: Waiting for the completion of the operations in the background

    INFO: End all ends tasks in the init State

    INFO: Waiting for the tasks of achieving all forked to the init State

    INFO: Forked all the tasks are completed to the init State

    Full background information: Operations

    INFO: The execution of action to the init State

    INFO: Completed the implementation of the action to the < init > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < init >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the < init > State

    INFO: Finished view validating State < init >

    INFO: Validation State < init >

    WARNING: Posting disabled for the init State

    INFO: Completed state validating < init >

    Information: Success of audit course

    NEWS: Control from State to State < clientInstallMode >

    INFO: Successfully verified a State to < clientInstallMode >

    NEWS: Updated Condition in correspondence with the State < clientInstallMode >.

    INFO: Redirect to road < match >.

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State installModeDecider

    INFO: Completed the implementation of the action to the < installModeDecider > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < installModeDecider >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the State < installModeDecider >

    INFO: Finished view validating State < installModeDecider >

    INFO: Validation State < installModeDecider >

    ATTENTION: Validation turned off for the installModeDecider of the State

    INFO: Completed state validating < installModeDecider >

    INFO: the inventory location isC:\Program

    INFO: the inventory location isC:\Program

    INFO: the inventory location isC:\Program

    Information: Road of audit UPGRADE_IMPOSSIBLE

    INFO: Get the view named [InstallTypesUI]

    INFO: estimated size for InstantClientinstall is 244,0

    INFO: estimated size for Administratorinstall is 1126.4000005722046

    INFO: estimated size for Runtimeinstall is 758.0

    INFO: View for [InstallTypesUI] is oracle.install.ivw.client.view.InstallTypesGUI@410c6406

    INFO: View initialization status < clientInstallType > < InstallTypesUI >

    INFO: InstallTypesPane installType is set to: InstantClient

    INFO: Completed initialization from the view state < clientInstallType > < InstallTypesUI >

    INFO: Displays the < InstallTypesUI > < clientInstallType >-state mode

    INFO: Finished poster mode < InstallTypesUI > < clientInstallType > State

    INFO: Loading view state < clientInstallType > < InstallTypesUI >

    INFO: Finished loading view state < clientInstallType > < InstallTypesUI >

    INFO: View location status < clientInstallType > < InstallTypesUI >

    INFO: estimated size for InstantClientinstall is 244,0

    INFO: estimated size for Administratorinstall is 1126.4000005722046

    INFO: estimated size for Runtimeinstall is 758.0

    INFO: Finished view location status < clientInstallType > < InstallTypesUI >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State clientInstallType

    INFO: Completed the implementation of the action to the < clientInstallType > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < clientInstallType >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Client install Type is defined in InstallTypeUI is: administrator

    INFO: Validation of the notice to the State < clientInstallType >

    INFO: Finished view validating State < clientInstallType >

    INFO: Validation State < clientInstallType >

    ATTENTION: Validation turned off for the clientInstallType of the State

    INFO: Completed state validating < clientInstallType >

    INFO: the passage of InstallTypesAction:

    INFO: Verification of course ic_no

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State autoupdatesDecider

    INFO: Completed the implementation of the action to the < autoupdatesDecider > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < autoupdatesDecider >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the State < autoupdatesDecider >

    INFO: Finished view validating State < autoupdatesDecider >

    INFO: Validation State < autoupdatesDecider >

    ATTENTION: Validation turned off for the autoupdatesDecider of the State

    INFO: Completed state validating < autoupdatesDecider >

    NEWS: Reading metadata C:\client\install\ shiphome... \stage\shiphomeproperties. XML

    INFO: Loading file:/C:/client/install/... beanstore/internship/shiphomeproperties. XML

    INFO: Translating the external format in raw format

    NEWS: Restoration of class file:/C:/client/install/... oracle.install.driver.oui.ShiphomeMetadata/internship/shiphomeproperties. XML

    INFO: Loading Xml Bean store beans. [BeanStoreName:shiphome - metadata]

    NEWS: Development of the property: properties in the bean: shiphome-metadata

    Information: Success of audit course

    INFO: Get the view named [AutoUpdatesOptionsUI]

    INFO: estimated for [AutoUpdatesOptionsUI] oracle.install.ivw.common.view.AutoUpdatesOptionsUI [, 0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=, preferredSize =]

    INFO: View initialization status < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI >

    INFO: Completed initialization from the view state < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI >

    INFO: Displays the < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI >-state mode

    INFO: Finished poster mode < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI > State

    INFO: Loading view state < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI >

    INFO: Finished loading view state < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI >

    INFO: View location status < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI >

    INFO: Finished view location status < AutoUpdatesOptionsUI > < AutoUpdatesOptionsUI >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State AutoUpdatesOptionsUI

    INFO: Completed the implementation of the action to the < AutoUpdatesOptionsUI > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to State < AutoUpdatesOptionsUI >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the State < AutoUpdatesOptionsUI >

    INFO: Finished view validating State < AutoUpdatesOptionsUI >

    INFO: Validation State < AutoUpdatesOptionsUI >

    INFO: Completed state validating < AutoUpdatesOptionsUI >

    INFO: No updates will be downloaded or applied

    Information: Road of audit NO_AUTO_UPDATES

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State supportedOSCheck

    INFO: Completed the implementation of the action to the < supportedOSCheck > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < supportedOSCheck >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the State < supportedOSCheck >

    INFO: Finished view validating State < supportedOSCheck >

    INFO: Validation State < supportedOSCheck >

    NEWS: Audit environment target...

    INFO: Check if the IP address of the local host could be determined...

    INFO: Has completed an audit of the target environment.

    INFO: Completed state validating < supportedOSCheck >

    Information: Success of audit course

    INFO: Get the view named [ProductLanguageUI]

    INFO: View for [ProductLanguageUI] is oracle.install.ivw.common.view.ProductLanguageGUI@3295a253

    INFO: View initialization status < productLanguage > < ProductLanguageUI >

    INFO: Completed initialization from the view state < productLanguage > < ProductLanguageUI >

    INFO: Displays the mode < ProductLanguageUI > < productLanguage > State

    INFO: Retrieving available languages...

    INFO: Finished poster mode < ProductLanguageUI > < productLanguage > State

    INFO: Loading view state < productLanguage > < ProductLanguageUI >

    INFO: Finished loading view state < productLanguage > < ProductLanguageUI >

    INFO: View location status < productLanguage > < ProductLanguageUI >

    INFO: Finished view location status < productLanguage > < ProductLanguageUI >

    INFO: Waiting for the completion of the operations in the background

    INFO: End all ends tasks to the productLanguage State

    INFO: Waiting for the tasks of achieving all forked the productLanguage State

    INFO: Forked from all tasks are completed to the productLanguage State

    Full background information: Operations

    INFO: The execution of action to the productLanguage State

    INFO: Completed the implementation of the action to the < productLanguage > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < productLanguage >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The languages in which the product will be installed are [en]

    INFO: Validation of the notice to the < productLanguage > State

    INFO: Finished view validating State < productLanguage >

    INFO: Validation State < productLanguage >

    WARNING: Posting disabled for the productLanguage of the State

    INFO: Completed state validating < productLanguage >

    INFO: Verification of course productlanguage_yes

    INFO: Get the view named [InstallLocationUI]

    INFO: View for [InstallLocationUI] is oracle.install.ivw.client.view.InstallLocationGUI@55f49969

    INFO: View initialization status < getOracleHome > < InstallLocationUI >

    INFO: the inventory location isC:\Program

    INFO: Completed initialization from the view state < getOracleHome > < InstallLocationUI >

    INFO: Displays the < InstallLocationUI > < getOracleHome >-state mode

    INFO: Finished poster mode < InstallLocationUI > < getOracleHome > State

    INFO: Loading view state < getOracleHome > < InstallLocationUI >

    INFO: Finished loading view state < getOracleHome > < InstallLocationUI >

    INFO: View location status < getOracleHome > < InstallLocationUI >

    INFO: Finished view location status < getOracleHome > < InstallLocationUI >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State getOracleHome

    INFO: Completed the implementation of the action to the < getOracleHome > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < getOracleHome >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the State < getOracleHome >

    INFO: Finished view validating State < getOracleHome >

    INFO: Validation State < getOracleHome >

    Personal information: Name of the prereq file: oracle.client_Administrator.xml

    INFO: refDataFile: C:\client\stage\cvu\oracle.client_Administrator.xml

    INFO: isCustomRefDataFilePresent: false

    INFO: InstallAreaControl exists: false

    NEWS: Audit: NEW_HOME

    NEWS: Audit: COMP

    NEWS: Audit: COMP

    NEWS: Audit: COMP

    NEWS: Audit: COMP

    NEWS: Audit: COMP

    NEWS: Audit: COMP

    NEWS: Audit: COMP

    NEWS: Audit: COMP

    NEWS: Audit: ORCA_HOME

    NEWS: Reading metadata C:\client\install\ shiphome... \stage\shiphomeproperties. XML

    INFO: Loading file:/C:/client/install/... beanstore/internship/shiphomeproperties. XML

    INFO: Translating the external format in raw format

    NEWS: Restoration of class file:/C:/client/install/... oracle.install.driver.oui.ShiphomeMetadata/internship/shiphomeproperties. XML

    INFO: Loading Xml Bean store beans. [BeanStoreName:shiphome - metadata]

    NEWS: Development of the property: properties in the bean: shiphome-metadata

    INFO: the inventory location isC:\Program

    INFO: the inventory location isC:\Program

    INFO: Retrieve ASM Cluster File System information...

    INFO: the inventory location isC:\Program

    INFO: the inventory location isC:\Program

    INFO: estimated size for Administratorinstall is 1126.4000005722046

    INFO: Access path is: == > C:\Users\ravi\AppData\Local\Temp\OraInstall2013-12-20_10-07-45PM\jdk\jre\bin; C:\Windows\System32; C:\Windows; C:\Windows\System32; C:\Windows; C:\Windows\System32\Wbem; C:\Windows\system32\WindowsPowerShell\v1.0\;.

    INFO: Completed state validating < getOracleHome >

    NEWS: InstallLocationAction to INVENTORY_NO

    Information: Road of audit INVENTORY_NO

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State prereqExecutionDecider

    INFO: Completed the implementation of the action to the < prereqExecutionDecider > State

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Moved to declare < prereqExecutionDecider >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the State < prereqExecutionDecider >

    INFO: Finished view validating State < prereqExecutionDecider >

    INFO: Validation State < prereqExecutionDecider >

    ATTENTION: Validation turned off for the prereqExecutionDecider of the State

    INFO: Completed state validating < prereqExecutionDecider >

    INFO: Verification of course executeprereqs

    INFO: Get the view named [points]

    INFO: View for [points] is oracle.install.commons.base.interview.common.view.PrereqGUI@5bdf59bd

    INFO: Initializing view < points > status < checkPrereqs >

    INFO: Completed initialization from the view < points > status < checkPrereqs >

    INFO: Displays the report < checkPrereqs > < points > view

    INFO: Finished poster mode < points > status < checkPrereqs >

    INFO: Loading view state < checkPrereqs > < points >

    INFO: Finished loading view state < checkPrereqs > < points >

    INFO: View location < points > status < checkPrereqs >

    INFO: Finished view location < points > status < checkPrereqs >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: The execution of action to the State checkPrereqs

    Personal information: Name of the prereq file: oracle.client_Administrator.xml

    INFO: refDataFile: C:\client\stage\cvu\oracle.client_Administrator.xml

    INFO: isCustomRefDataFilePresent: false

    INFO: In PrereqAction: CVU PREREQ LOCATION set to: C:\client\install/... / internship/CVU/cvu_prereq. XML

    INFO: Completed the implementation of the action to the < checkPrereqs > State

    INFO: Waiting for the completion of the operations in the background

    INFO: End all ends tasks to State checkPrereqs

    INFO: Waiting for the tasks of achieving all forked to the State checkPrereqs

    INFO: Creating PrereqChecker Job for physical memory task in the timesheet

    INFO: Creating CompositePrereqChecker Job Molok task free space

    INFO: Creating PrereqChecker Job for task sheet space free: MYPERS:C:\Users\ravi\AppData\Local\Temp

    INFO: Creating PrereqChecker Job for task sheet Architecture

    INFO: Creating PrereqChecker Job for the special sheet environment variable: 'PATH '.

    INFO: CVU tracingEnabled = false

    INFO: The nodes are prepared for verification.

    INFO: *********************************************

    INFO: Physical memory: it is a precondition to check if the system has at least 128 MB (131072,0 KB) of total physical memory.

    INFO: Gravity: IGNORABLE

    INFO: OverallStatus: SUCCESS

    INFO: -----------------------------------------------

    INFO: Results of the audit for the node: MYPERS

    NEWS: Expected value: 128 MB (131072,0 KB)

    NEWS: Real value: 7.9276 GB (8312660,0 KB)

    INFO: -----------------------------------------------

    INFO: *********************************************

    NEWS: Free space: MYPERS:C:\Users\ravi\AppData\Local\Temp: it is a precondition to check if enough free space is available in the file system.

    INFO: Gravity: IGNORABLE

    INFO: OverallStatus: SUCCESS

    INFO: -----------------------------------------------

    INFO: Results of the audit for the node: MYPERS

    NEWS: Expected value: 130 MB

    NEWS: Real value: 233.0941 GB

    INFO: -----------------------------------------------

    INFO: *********************************************

    INFO: Architecture: it is a precondition to check if the system has a certified architecture.

    INFO: Severity: CRITICAL

    INFO: OverallStatus: SUCCESS

    INFO: -----------------------------------------------

    INFO: Results of the audit for the node: MYPERS

    NEWS: Expected value: 64-bit

    NEWS: Real value: 64-bit

    INFO: -----------------------------------------------

    INFO: *********************************************

    NEWS: Environment Variable: 'PATH': this test checks if the length of the 'PATH' environment variable does not exceed the recommended time.

    INFO: Severity: CRITICAL

    INFO: OverallStatus: SUCCESS

    INFO: -----------------------------------------------

    INFO: Results of the audit for the node: MYPERS

    NEWS: Expected value: 5119

    NEWS: Real value: 99

    INFO: -----------------------------------------------

    INFO: Forked all the tasks are completed at the checkPrereqs State

    Full background information: Operations

    INFO: Moved to State < checkPrereqs >

    INFO: Waiting for the completion of the operations in the background

    Full background information: Operations

    INFO: Validation of the notice to the State < checkPrereqs >

    INFO: Finished view validating State < checkPrereqs >

    INFO: Validation State < checkPrereqs >

    INFO: By default using that validator configured in the oracle.install.ivw.client.action.PrereqAction of class Action

    INFO: Completed state validating < checkPrereqs >

    Information: Success of audit course

    INFO: Get the view named [SummaryUI]

    -Learner

    learner1 wrote:

    Hi Nadia,

    I'm local Admin on my laptop infact I managed to install the misc other than the Oracle client software.

    -Learner

    Unfortunately, there are administrators in Windows, then there are administrators.  Apparently not all administrators are created equal.  Don't ask me to explain, I do not understand myself, I just know that this is a truth.  Still a reason more I learned to avoid Windows I get chances.

    «My mom always says that Windows is like a box o ' chocolates.»  (With apologies to Tom Hanks).

  • General queries about IOM

    Hi experts

    I am a newbie to IOM, pls answer money questions if anyone knows...

    Query 1
    ---------

    Can we create a new status of resource in IOM as "provision" as we put in service, provision of the statutes?

    As much I know IOM will accept no new resource status. Me if I'm wrong, or suggest me how to do so above the answer is Yes...

    Query 2
    -----------

    What is use of Persistant Instance(check box) in OIM design console when you create the tasks of the adapter in the adapter factory?

    Here's how you can do this:

    -Go to the process of definition of service resources.
    -Click on the Descriptive card button.
    -Select the user login
    -Save.

    You will be done.

    Thank you

    Sunny

  • General information about catproc.sql

    Dear administrators,

    Could you please give me an idea on the script catproc and where it should be used.

    Thanks in advance

    In most cases, it should be used when the database is created. Executes it after you've built a database will cause most of the objects in your database to be invalidated. It should be run during the creation process of your database for usable data.

    It creates items that are stored in the sys and system schemas and used to make the database works.

    It makes good reading, but do not run after the creation of your database it unless you really know what you are doing and why. It will make you a lot of extra work.

  • Hi I am trying to install a video game, but I get an error and I am new with Windows 7 Starter since 24/11/09 (I use to be with Windows XP so have no idea about the new thing in Win 7)

    The error I get is this bellow.

    1. Installation Information

    Error writing to the file: C:\Program Files\FireStarter Gaming\Dekaron Rusaki\data\data.pak.   Make sure you have access to this directory.

    OK, so what I don't understand is part here.
    Make sure you have access to this directory.

    Why don't I have access to My/that Directory if I'm the administrator / owner of my laptop?  If I can not then who can? Microsoft... ?

    Thank you
       
    Steven Jr

    @Steven jr,
    You are able to install other applications?  Verify that you can install other software (you can install a component of Windows Live Essentials from here).  If you can install other software, then contact the manufacturer of the support software.  They may have to update the installer to load correctly on Windows 7.

    @tomsei72,.
    Looks like your video driver needs to be updated since it was created before the release of Windows 7. Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for