How much memory does SQL Server 2008R2 Standard use on Windows Server 2008 R2 64-bit?

Hi,
can anyone tell me how much RAM will really be used by SQL Server?
72 GB are currently installed. As Windows is only able to use 32 GB is SQL Server able to use the other 40GB + the unused part of the first 32 GB?
Thank you very much!
BR Matthias

Sorry, I don´t understand your post ?!
Maybe the question is if SQL Server is able to allocate more memory than the installed Windows Version is able to?
Since your OS is Windows Standard edition(X64) it cannot use or a process running cannot use more than 32 G of memory.
Now SQL server can use as much memory possible but it is now limited by Windows as your OS can only see 32 G.So it would be good part from your side to go to sp_configure and set 25 G for SQL server and can leave rest for OS( it just a figure not a actual
value i have given,actual you have to calculate by yourself or refer to below link) .
http://mssqlwiki.com/2013/04/22/max-server-memory-do-i-need-to-configure/
As Andrew said after 32 G what ever memory you put it is waste.
Hope this helps
Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

Similar Messages

  • How much memory/RAM can I put into my HP Compaq 8710p when running 64-bit Windows 7?

    How much memory/RAM can I put into my HP Compaq 8710p when running 64-bit Windows 7?
    This question was solved.
    View Solution.

    The maximum supported is 8 GB.
    The Maintenence and Service guide for the Compaq 8710p
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • How much power does your DSL modem combo use?

    My Westell-F90-610015-06 according to my Kill A Watt EZ uses 5.4-5.6 va @ 2.6-2.8 watts @ 0.04 amps
    If you have another DSL modem combo, how much power does your DSL modem combo use?
    Thank you
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

    I've never seen any figures. You'd have to do a test.

  • How much memory does Tiger and Leopold use?

    Hi
    How much memory do both Tiger and Leopold require themselves to run?

    hotcheese wrote:
    How much memory do both Tiger and Leopold require themselves to run?
    Not much. I've run Tiger and Leopard with only 512 MB (1 GB machine with
    512 MB for OS-X and 512 MB allocated to a virtual machine running Win XP).
    They get really slow with a lot of page-outs if you open more than one app,
    but they do run. The standard 1 GB (with no VMs) is comfortable for web
    browsing and even iPhoto -- as long as you don't open too many apps at
    the same time.
    ...don't know 'bout Leopold, I think he's still dead,
    Looby

  • How Much Memory Does RECORD VIDEO Require?

    I want to record a video iChat that could go for ninety minutes. How much memory would that take?
    Thank you,
    Sandolini

    Sandolini wrote:
    I want to record a video iChat that could go for ninety minutes. How much memory would that take?
    Thank you,
    Sandolini
    Welcome to Discussions, Sandolini
    In addition to the info that Ralph has already provided, I offer one additional thought.
    Ralph is my guru on iChat, so I am sure he can correct me if I am mistaken, but I believe that iChat 4 (the one in your posted Mac OS X 10.5.8 system info) adjusts camera frame rates and possibly video window size based on connection and processor speeds. I also seem to recall that the maximum video size for iChat 4 is 320x240.
    iChat 4's video size/quality decisions are made based on the info from both ends of the video connection. If I am correct, different users could, therefore, experience different video data capture rates, possibly even when connecting to different chat contacts. These capture rates translate directly into different file sizes for recorded videos. In any case, most iChat 4 recordings (maximum size of 320x240) are likely to be considerably smaller (at least one-fourth to one-third smaller) than the 640x480 video iMovie captures from external iSight.
    My suggestion is that you record a one minute test, if possible with the same video chat connection. If recording success will be a critical, one-opportunity-only event, you may wish to make several one minute tests to see if there is enough variability that you must account for it. Once you know the file size for a one minute recording, you can calculate ninety times that to find the maximum estimated space required for your ninety minute recording.
    When determining your needed space, be sure you leave the extra space Ralph recommends.
    EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz w/Mac OS X (10.6.2)  MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.2)
    LED Cinema Display  G4 PowerBook 1.67GHz (10.4.11)  iBookSE 366MHz (10.3.9)  External iSight

  • Does SQL Server 2008 R2 recognize only system-generated session identifiers,

    As part of the locking down of our system we are doing the Security Technical Implementation Guide (STIG) and one of the questions it asks is "The DBMS must recognize only system-generated session identifiers."
    I have looked at the STIG version for SQL Server 2012 and this is not a finding on it, since it supports the requirement and cannot be configured out of compliance.
    If anyone can help confirm that this is also the case with SQL Server 2008 R2 that would be very helpful.
    Thank you, Darren
    The discussion of it is:
    This requirement focuses on communications protection at the application session, versus network packet level. The intent of this control is to establish grounds for confidence at each end of a communications session in the ongoing identity of the other
    party and in the validity of the information being transmitted.
    Unique session IDs are the opposite of sequentially generated session IDs which can be easily guessed by an attacker. Unique session identifiers help to reduce predictability of said identifiers. 
    Unique session IDs address man-in-the-middle attacks including session hijacking or insertion of false information into a session. If the attacker is unable to identify or guess the session information related to pending application traffic, they will have
    more difficulty in hijacking the session or otherwise manipulating valid sessions.
    The DBMS must only recognize only system generated session identifiers. If an attacker was able to generate a session with a non-system generated session identifier and have it be recognized by the system, the attacker could potentially gain access to the
    system without passing through access controls designed to limit database sessions to authorized users.

    Hi Darren,
    From your description, do you mean the session_id from DMV sys.dm_exec_sessions? If so, the session_id(s) are all created and handled by SQL Server. When session_id <= 50 , it belongs to a system session, and when session_id > 50, it belongs to a user
    session.
    Below query could help you generate system sessions in SQL Server 2008 R2. Refer to :
    Explore the secrets of session- sys.dm_exec_sessions.
    SELECT
    S.SESSION_ID,
    S.STATUS,
    S.HOST_NAME,
    C.CLIENT_NET_ADDRESS,
    CASE WHEN S.LOGIN_NAME = S.ORIGINAL_LOGIN_NAME THEN S.LOGIN_NAME ELSE S.LOGIN_NAME + ' (' +S.ORIGINAL_LOGIN_NAME + ')' END AS LOGIN_NAME,
    S.PROGRAM_NAME,
    C.CONNECT_TIME, -- DIFFRENT BETWEEN CONNECT & LOGIN TIME IS TIME TAKEN BY PRELOGON ACTIVITIES
    S.LOGIN_TIME,
    CASE S.TRANSACTION_ISOLATION_LEVEL
    WHEN 0 THEN 'UNSPECIFIED'
    WHEN 1 THEN 'READUNCOMITTED'
    WHEN 2 THEN 'READCOMMITTED'
    WHEN 3 THEN 'REPEATABLE'
    WHEN 4 THEN 'SERIALIZABLE'
    WHEN 5 THEN 'SNAPSHOT'
    ELSE CAST(S.TRANSACTION_ISOLATION_LEVEL AS VARCHAR(32))
    END AS TRANSACTION_ISOLATION_LEVEL_NAME,S.LAST_SUCCESSFUL_LOGON, -- REQUIRES 'COMMON CRITERIA COMPLIANCE ENABLED' OPTION VIA SP_CONFIGURE.
    S.LAST_UNSUCCESSFUL_LOGON, -- REQUIRES 'COMMON CRITERIA COMPLIANCE ENABLED' OPTION VIA SP_CONFIGURE.
    S.UNSUCCESSFUL_LOGONS, --REQUIRES 'COMMON CRITERIA COMPLIANCE ENABLED' OPTION VIA SP_CONFIGURE.
    S.CPU_TIME AS CPU_TIME_MS,
    S.MEMORY_USAGE AS MEMORY_USAGE_PAGES,
    S.ROW_COUNT,
    S.PREV_ERROR,
    S.LAST_REQUEST_START_TIME,
    S.LAST_REQUEST_END_TIME,
    C.NET_TRANSPORT,
    C.PROTOCOL_TYPE,
    S.LANGUAGE,
    S.DATE_FORMAT,
    ST.TEXT AS QUERY_TEXT
    FROM
    SYS.DM_EXEC_SESSIONS S
    FULL OUTER JOIN SYS.DM_EXEC_CONNECTIONS C ON C.SESSION_ID = S.SESSION_ID
    CROSS APPLY SYS.DM_EXEC_SQL_TEXT(C.MOST_RECENT_SQL_HANDLE) ST
    WHERE
    S.SESSION_ID IS NULL
    OR S.SESSION_ID < = 50
    ORDER BY
    S.SESSION_ID
    Thanks,
    Lydia Zhang

  • How to attached a sql server 2008 database on sql server 2005

    Hi,
    I have a backup of database designed over sql server 2008. I need to attacched this on a machine where sql server 2005 is installed and I am getting the message while attaching the database.
    "The database can not be opened because it is version 661.
    the server supports version 611 and earlier"

    You need to install/have another instance of SQL Server 2008, restore over there the database and perhaps create a SSIS package to move objects and data into SQL Server 2005
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to connect to SQL SERVER 2008 from labview

    We have installed a SQL server 2008 in the local PC and through DSN we were able to connect to the database on the same PC . Now we have loaded SQL server 2008 in another PC but in same network but we are not able connect to the database. we can do it with connnectiong string?

    Thanks for your reply, 
    We verified through DSN it works, we are able to connect to database by DSN.
    But the issue is for connecting it to database we need to dynamically obtain the IP by choosing the Obtain the IP address automatically in TCP/IP Properties.
    Whereas all the other devices connected to the PC are having static IP of 192.168.127.xxx from which we are getting the data. Also the PC IP address is 192.168.127.001 which is connected to the devices with a LAN switch to acquire the data from these devices.
    Now i can either communicate with the devices using static IP address 192.168.127.1 or connect to database using dynamic address. 
    A separate LAN port will solve or is there solution for this issue?

  • Unable to Install SQL Server 2008 R2 64 Bit on clean install of Server 2008 R2 64 Bit Error CLR20r3

    Hi,
    I'm trying to install SQL Server 2008 R2 64  on a clean install of Server 2008 R2 64 Bit. Shortly after double clicking on the setup I get a Windows error message saying the installer has stopped working with the details below.
    Suggestions welcomed.
    Description:
    Stopped working
    Problem signature:
    Problem Event Name: CLR20r3
    Problem Signature 01: setup100.exe
    Problem Signature 02: 10.50.1600.1
    Problem Signature 03: 4bb6742c
    Problem Signature 04: Microsoft.SqlServer.Chainer.Setup
    Problem Signature 05: 10.0.0.0
    Problem Signature 06: 4bb6742c
    Problem Signature 07: 4
    Problem Signature 08: 5
    Problem Signature 09: System.BadImageFormatException
    OS Version: 6.1.7600.2.0.0.272.7
    Locale ID: 3081
    Read our privacy statement online:
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt
    Thanks,
    Adam

    Thanks for your reply Balmukund
    10/28/2010 12:53:23.448 ======================================================================
    10/28/2010 12:53:23.495 Setup launched
    10/28/2010 12:53:23.510 Attempting to determine media source
    10/28/2010 12:53:23.526 Media source value not specified on command line argument.
    10/28/2010 12:53:23.557 Setup is launched from media directly so default the value to the current folder.
    10/28/2010 12:53:23.573 Media source: D:\
    10/28/2010 12:53:23.604 Attempt to determine media layout based on file 'D:\mediainfo.xml'.
    10/28/2010 12:53:26.708 Media layout is detected as: Full
    10/28/2010 12:53:26.724 Not a slip stream media, so continuing to run setup.exe from media.
    10/28/2010 12:53:26.771 /? or /HELP or /ACTION=HELP specified: false
    10/28/2010 12:53:26.786 Help display: false
    10/28/2010 12:53:26.802 Checking to see if we need to install .Net version 3.5
    10/28/2010 12:53:26.817 Determining the cluster status of the local machine.
    10/28/2010 12:53:26.849 The local machine is not configured as a cluster node.
    10/28/2010 12:53:26.864 Attempting to find media for .Net version 3.5
    10/28/2010 12:53:27.083 .Net version 3.5 is installed
    10/28/2010 12:53:27.098 RedistMSI::GetExpectedBuildRevision - Setup expects MSI 4.5.6001.22159 at the minimum
    10/28/2010 12:53:27.114 Attempting to get Windows Installer version
    10/28/2010 12:53:27.129 Windows Installer version detected: 5.0.7600.16385
    10/28/2010 12:53:27.145 RedistMSI::IsVistaRTM - Not Vista RTM build
    10/28/2010 12:53:27.176 Required version of Windows Installer is already installed
    10/28/2010 12:53:27.192 Attempting to get Windows Installer version
    10/28/2010 12:53:27.223 Windows Installer version detected: 5.0.7600.16385
    10/28/2010 12:53:27.239 RedistMSI::IsVistaRTM - Not Vista RTM build
    10/28/2010 12:53:27.270 Required version of Windows Installer is already installed
    10/28/2010 12:53:27.285 Local setup.exe not found, so continuing to run setup.exe from media.
    10/28/2010 12:53:27.317 Attempt to initialize SQL setup code group
    10/28/2010 12:53:27.348 Attempting to determine security.config file path
    10/28/2010 12:53:27.379 Checking to see if policy file exists
    10/28/2010 12:53:27.395 .Net security policy file does exist
    10/28/2010 12:53:27.410 Attempting to load .Net security policy file
    10/28/2010 12:53:27.441 Processing entry ("MSVCM80", "Native")
    10/28/2010 12:53:27.441 Attempting to create .Net security code group node: MSVCM80
    10/28/2010 12:53:27.473 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    10/28/2010 12:53:27.488 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.SETUP
    10/28/2010 12:53:27.504 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    10/28/2010 12:53:27.519 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PACKAGE
    10/28/2010 12:53:27.535 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    10/28/2010 12:53:27.551 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE
    10/28/2010 12:53:27.582 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    10/28/2010 12:53:27.597 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION
    10/28/2010 12:53:27.613 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    10/28/2010 12:53:27.629 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW
    10/28/2010 12:53:27.644 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    10/28/2010 12:53:27.660 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE
    10/28/2010 12:53:27.675 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    10/28/2010 12:53:27.707 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SFC
    10/28/2010 12:53:27.722 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    10/28/2010 12:53:27.738 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION
    10/28/2010 12:53:27.753 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    10/28/2010 12:53:27.769 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION
    10/28/2010 12:53:27.785 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    10/28/2010 12:53:27.800 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON
    10/28/2010 12:53:27.831 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    10/28/2010 12:53:27.847 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCO
    10/28/2010 12:53:27.863 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    10/28/2010 12:53:27.878 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION
    10/28/2010 12:53:27.894 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    10/28/2010 12:53:27.909 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION
    10/28/2010 12:53:27.925 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    10/28/2010 12:53:27.941 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DISCOVERY
    10/28/2010 12:53:27.956 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    10/28/2010 12:53:27.972 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION
    10/28/2010 12:53:27.987 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    10/28/2010 12:53:28.003 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING
    10/28/2010 12:53:28.019 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:28.034 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK
    10/28/2010 12:53:28.050 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:28.081 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK
    10/28/2010 12:53:28.097 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    10/28/2010 12:53:28.112 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD
    10/28/2010 12:53:28.112 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    10/28/2010 12:53:28.128 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS
    10/28/2010 12:53:28.143 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    10/28/2010 12:53:28.175 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION
    10/28/2010 12:53:28.190 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    10/28/2010 12:53:28.206 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO
    10/28/2010 12:53:28.221 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    10/28/2010 12:53:28.237 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION
    10/28/2010 12:53:28.253 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    10/28/2010 12:53:28.268 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER
    10/28/2010 12:53:28.284 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    10/28/2010 12:53:28.315 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB
    10/28/2010 12:53:28.331 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    10/28/2010 12:53:28.346 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PACKAGEDATA
    10/28/2010 12:53:28.362 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    10/28/2010 12:53:28.377 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PRODUCT
    10/28/2010 12:53:28.393 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    10/28/2010 12:53:28.409 Attempting to create .Net security code group node: MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX
    10/28/2010 12:53:28.440 Processing entry ("LANDINGPAGE", "Native")
    10/28/2010 12:53:28.455 Attempting to create .Net security code group node: LANDINGPAGE
    10/28/2010 12:53:28.471 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    10/28/2010 12:53:28.502 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION
    10/28/2010 12:53:28.518 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    10/28/2010 12:53:28.533 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION
    10/28/2010 12:53:28.565 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    10/28/2010 12:53:28.580 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION
    10/28/2010 12:53:28.596 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    10/28/2010 12:53:28.611 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION
    10/28/2010 12:53:28.627 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    10/28/2010 12:53:28.643 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION
    10/28/2010 12:53:28.658 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:28.674 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION
    10/28/2010 12:53:28.689 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    10/28/2010 12:53:28.705 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION
    10/28/2010 12:53:28.721 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:28.736 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION
    10/28/2010 12:53:28.752 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    10/28/2010 12:53:28.767 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT
    10/28/2010 12:53:28.783 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    10/28/2010 12:53:28.814 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION
    10/28/2010 12:53:28.830 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    10/28/2010 12:53:28.845 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION
    10/28/2010 12:53:28.861 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    10/28/2010 12:53:28.877 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.DMF
    10/28/2010 12:53:28.892 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    10/28/2010 12:53:28.908 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SMO
    10/28/2010 12:53:28.923 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    10/28/2010 12:53:28.939 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM
    10/28/2010 12:53:28.955 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:28.970 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION
    10/28/2010 12:53:28.986 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    10/28/2010 12:53:29.001 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA
    10/28/2010 12:53:29.017 Processing entry ("SHELLOBJECTS", "Native")
    10/28/2010 12:53:29.048 Attempting to create .Net security code group node: SHELLOBJECTS
    10/28/2010 12:53:29.064 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    10/28/2010 12:53:29.079 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION
    10/28/2010 12:53:29.095 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    10/28/2010 12:53:29.111 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.SQM
    10/28/2010 12:53:29.126 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    10/28/2010 12:53:29.142 Processing entry ("FIXSQLREGISTRYKEY", "X86")
    10/28/2010 12:53:29.157 Processing entry ("FIXSQLREGISTRYKEY", "X64")
    10/28/2010 12:53:29.173 Attempting to create .Net security code group node: FIXSQLREGISTRYKEY
    10/28/2010 12:53:29.189 Processing entry ("FIXSQLREGISTRYKEY", "IA64")
    10/28/2010 12:53:29.204 Required security code group nodes exist, contine.
    10/28/2010 12:53:29.220 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    10/28/2010 12:53:29.235 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE
    10/28/2010 12:53:29.251 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    10/28/2010 12:53:29.267 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES
    10/28/2010 12:53:29.298 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    10/28/2010 12:53:29.298 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES
    10/28/2010 12:53:29.313 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:29.345 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES
    10/28/2010 12:53:29.360 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    10/28/2010 12:53:29.376 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES
    10/28/2010 12:53:29.391 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    10/28/2010 12:53:29.423 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES
    10/28/2010 12:53:29.438 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:29.454 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES
    10/28/2010 12:53:29.469 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:29.485 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES
    10/28/2010 12:53:29.501 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    10/28/2010 12:53:29.516 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES
    10/28/2010 12:53:29.532 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    10/28/2010 12:53:29.547 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES
    10/28/2010 12:53:29.563 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:29.579 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES
    10/28/2010 12:53:29.594 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:29.610 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES
    10/28/2010 12:53:29.641 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    10/28/2010 12:53:29.657 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES
    10/28/2010 12:53:29.672 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:29.688 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES
    10/28/2010 12:53:29.703 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:29.719 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES
    10/28/2010 12:53:29.735 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:29.750 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES
    10/28/2010 12:53:29.781 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:29.797 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES
    10/28/2010 12:53:29.813 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    10/28/2010 12:53:29.828 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES
    10/28/2010 12:53:29.844 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    10/28/2010 12:53:29.859 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES
    10/28/2010 12:53:29.875 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    10/28/2010 12:53:29.891 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES
    10/28/2010 12:53:29.906 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:29.922 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES
    10/28/2010 12:53:29.937 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:29.953 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES
    10/28/2010 12:53:29.969 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
    10/28/2010 12:53:29.984 Attempting to create .Net security code group node: LANDINGPAGE.RESOURCES
    10/28/2010 12:53:30.062 Saved .Net security policy file
    10/28/2010 12:53:30.078 Attempting to determine security.config file path
    10/28/2010 12:53:30.093 Checking to see if policy file exists
    10/28/2010 12:53:30.109 .Net security policy file does exist
    10/28/2010 12:53:30.125 Attempting to load .Net security policy file
    10/28/2010 12:53:30.140 Processing entry ("MSVCM80", "Native")
    10/28/2010 12:53:30.156 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    10/28/2010 12:53:30.171 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    10/28/2010 12:53:30.187 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    10/28/2010 12:53:30.203 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    10/28/2010 12:53:30.218 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    10/28/2010 12:53:30.234 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    10/28/2010 12:53:30.249 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    10/28/2010 12:53:30.281 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    10/28/2010 12:53:30.296 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    10/28/2010 12:53:30.312 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    10/28/2010 12:53:30.327 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    10/28/2010 12:53:30.343 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    10/28/2010 12:53:30.359 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    10/28/2010 12:53:30.374 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    10/28/2010 12:53:30.390 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    10/28/2010 12:53:30.405 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    10/28/2010 12:53:30.421 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:30.437 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:30.452 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    10/28/2010 12:53:30.468 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    10/28/2010 12:53:30.483 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    10/28/2010 12:53:30.499 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    10/28/2010 12:53:30.530 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    10/28/2010 12:53:30.546 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    10/28/2010 12:53:30.561 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    10/28/2010 12:53:30.577 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    10/28/2010 12:53:30.593 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    10/28/2010 12:53:30.608 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    10/28/2010 12:53:30.624 Processing entry ("LANDINGPAGE", "Native")
    10/28/2010 12:53:30.639 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    10/28/2010 12:53:30.655 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    10/28/2010 12:53:30.671 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    10/28/2010 12:53:30.686 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    10/28/2010 12:53:30.702 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    10/28/2010 12:53:30.717 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:30.733 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    10/28/2010 12:53:30.764 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:30.780 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    10/28/2010 12:53:30.795 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    10/28/2010 12:53:30.811 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    10/28/2010 12:53:30.827 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    10/28/2010 12:53:30.842 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    10/28/2010 12:53:30.858 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    10/28/2010 12:53:30.873 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:30.889 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    10/28/2010 12:53:30.905 Processing entry ("SHELLOBJECTS", "Native")
    10/28/2010 12:53:30.920 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    10/28/2010 12:53:30.936 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    10/28/2010 12:53:30.951 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    10/28/2010 12:53:30.967 Attempting to create .Net security code group node: MICROSOFT.DATAWAREHOUSE.SQM
    10/28/2010 12:53:30.983 Processing entry ("FIXSQLREGISTRYKEY", "X86")
    10/28/2010 12:53:31.014 Attempting to create .Net security code group node: FIXSQLREGISTRYKEY
    10/28/2010 12:53:31.029 Processing entry ("FIXSQLREGISTRYKEY", "X64")
    10/28/2010 12:53:31.045 Processing entry ("FIXSQLREGISTRYKEY", "IA64")
    10/28/2010 12:53:31.061 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    10/28/2010 12:53:31.076 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    10/28/2010 12:53:31.092 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    10/28/2010 12:53:31.107 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:31.123 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    10/28/2010 12:53:31.139 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    10/28/2010 12:53:31.154 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:31.170 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:31.185 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    10/28/2010 12:53:31.201 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    10/28/2010 12:53:31.217 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:31.232 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:31.263 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    10/28/2010 12:53:31.279 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:31.295 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:31.310 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:31.326 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:31.341 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    10/28/2010 12:53:31.357 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    10/28/2010 12:53:31.373 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    10/28/2010 12:53:31.388 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:31.404 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:31.419 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
    10/28/2010 12:53:31.466 Saved .Net security policy file
    10/28/2010 12:53:33.697 Strong name verification disabling is not required
    10/28/2010 12:53:33.713 /? or /HELP or /ACTION=HELP specified: false
    10/28/2010 12:53:33.728 Help display: false
    10/28/2010 12:53:33.744 Attempting to launch landing page workflow
    10/28/2010 12:53:33.759 Media source: D:\
    10/28/2010 12:53:33.775 Install media path: D:\x64\setup\
    10/28/2010 12:53:33.791 Media layout: Full
    10/28/2010 12:53:33.822 Attempting to get execution timestamp
    10/28/2010 12:53:33.837 Timestamp: 20101028_125323
    10/28/2010 12:53:33.853 Attempting to run workflow LANDINGPAGE
    10/28/2010 12:53:33.869 Attempting to launch process D:\x64\setup100.exe
    10/28/2010 12:53:41.357 Process returned exit code: 0xE0434F4D
    10/28/2010 12:53:41.403 Workflow LANDINGPAGE returned exit code: 0xE0434F4D
    10/28/2010 12:53:41.419 Attempting to determine security.config file path
    10/28/2010 12:53:41.435 Attempting to load .Net security policy file
    10/28/2010 12:53:41.450 Attempting to remove .Net security code group node
    10/28/2010 12:53:41.466 Removing entry ("MSVCM80", "Native")
    10/28/2010 12:53:41.481 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    10/28/2010 12:53:41.497 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    10/28/2010 12:53:41.528 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    10/28/2010 12:53:41.544 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    10/28/2010 12:53:41.559 Removing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    10/28/2010 12:53:41.575 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    10/28/2010 12:53:41.591 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    10/28/2010 12:53:41.606 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    10/28/2010 12:53:41.622 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    10/28/2010 12:53:41.669 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    10/28/2010 12:53:41.684 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    10/28/2010 12:53:41.700 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    10/28/2010 12:53:41.715 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    10/28/2010 12:53:41.731 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    10/28/2010 12:53:41.747 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    10/28/2010 12:53:41.762 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    10/28/2010 12:53:41.793 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:41.809 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:41.825 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    10/28/2010 12:53:41.840 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    10/28/2010 12:53:41.856 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    10/28/2010 12:53:41.871 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    10/28/2010 12:53:41.903 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    10/28/2010 12:53:41.918 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    10/28/2010 12:53:41.934 Removing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    10/28/2010 12:53:41.949 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    10/28/2010 12:53:41.965 Removing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    10/28/2010 12:53:41.981 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    10/28/2010 12:53:42.012 Removing entry ("LANDINGPAGE", "Native")
    10/28/2010 12:53:42.027 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    10/28/2010 12:53:42.043 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    10/28/2010 12:53:42.059 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    10/28/2010 12:53:42.074 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    10/28/2010 12:53:42.090 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    10/28/2010 12:53:42.105 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:42.121 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    10/28/2010 12:53:42.137 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:42.152 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    10/28/2010 12:53:42.168 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    10/28/2010 12:53:42.183 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    10/28/2010 12:53:42.199 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    10/28/2010 12:53:42.230 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    10/28/2010 12:53:42.246 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    10/28/2010 12:53:42.261 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:42.277 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    10/28/2010 12:53:42.293 Removing entry ("SHELLOBJECTS", "Native")
    10/28/2010 12:53:42.339 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    10/28/2010 12:53:42.355 Removing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    10/28/2010 12:53:42.355 Removing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    10/28/2010 12:53:42.371 Removing entry ("FIXSQLREGISTRYKEY", "X86")
    10/28/2010 12:53:42.386 Removing entry ("FIXSQLREGISTRYKEY", "X64")
    10/28/2010 12:53:42.386 Removing entry ("FIXSQLREGISTRYKEY", "IA64")
    10/28/2010 12:53:42.402 Removing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    10/28/2010 12:53:42.402 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    10/28/2010 12:53:42.417 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    10/28/2010 12:53:42.433 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:42.433 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    10/28/2010 12:53:42.449 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    10/28/2010 12:53:42.449 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:42.464 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:42.464 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    10/28/2010 12:53:42.480 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    10/28/2010 12:53:42.495 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:42.511 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:42.511 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    10/28/2010 12:53:42.527 Removing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:42.527 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:42.542 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:42.558 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:42.558 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    10/28/2010 12:53:42.573 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    10/28/2010 12:53:42.573 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    10/28/2010 12:53:42.589 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:42.589 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:42.605 Removing entry ("LANDINGPAGE.RESOURCES", "Native")
    10/28/2010 12:53:42.636 Saved .Net security policy file
    10/28/2010 12:53:42.667 Attempting to determine security.config file path
    10/28/2010 12:53:42.667 Attempting to load .Net security policy file
    10/28/2010 12:53:42.683 Attempting to remove .Net security code group node
    10/28/2010 12:53:42.698 Removing entry ("MSVCM80", "Native")
    10/28/2010 12:53:42.698 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    10/28/2010 12:53:42.714 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    10/28/2010 12:53:42.714 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    10/28/2010 12:53:42.745 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    10/28/2010 12:53:42.745 Removing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    10/28/2010 12:53:42.761 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    10/28/2010 12:53:42.761 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    10/28/2010 12:53:42.776 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    10/28/2010 12:53:42.776 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    10/28/2010 12:53:42.792 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    10/28/2010 12:53:42.807 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    10/28/2010 12:53:42.807 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    10/28/2010 12:53:42.823 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    10/28/2010 12:53:42.823 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    10/28/2010 12:53:42.839 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    10/28/2010 12:53:42.839 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    10/28/2010 12:53:42.854 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:42.870 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    10/28/2010 12:53:42.885 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    10/28/2010 12:53:42.885 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    10/28/2010 12:53:42.901 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    10/28/2010 12:53:42.901 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    10/28/2010 12:53:42.917 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    10/28/2010 12:53:42.917 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    10/28/2010 12:53:42.932 Removing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    10/28/2010 12:53:42.948 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    10/28/2010 12:53:42.948 Removing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    10/28/2010 12:53:42.963 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    10/28/2010 12:53:42.963 Removing entry ("LANDINGPAGE", "Native")
    10/28/2010 12:53:42.979 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    10/28/2010 12:53:42.995 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    10/28/2010 12:53:42.995 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    10/28/2010 12:53:43.010 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    10/28/2010 12:53:43.010 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    10/28/2010 12:53:43.026 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:43.026 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    10/28/2010 12:53:43.041 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:43.041 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    10/28/2010 12:53:43.057 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    10/28/2010 12:53:43.073 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    10/28/2010 12:53:43.073 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    10/28/2010 12:53:43.088 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    10/28/2010 12:53:43.088 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    10/28/2010 12:53:43.104 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    10/28/2010 12:53:43.119 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    10/28/2010 12:53:43.119 Removing entry ("SHELLOBJECTS", "Native")
    10/28/2010 12:53:43.135 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    10/28/2010 12:53:43.151 Removing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    10/28/2010 12:53:43.151 Removing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    10/28/2010 12:53:43.166 Removing entry ("FIXSQLREGISTRYKEY", "X86")
    10/28/2010 12:53:43.166 Removing entry ("FIXSQLREGISTRYKEY", "X64")
    10/28/2010 12:53:43.182 Removing entry ("FIXSQLREGISTRYKEY", "IA64")
    10/28/2010 12:53:43.182 Removing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    10/28/2010 12:53:43.197 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    10/28/2010 12:53:43.213 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    10/28/2010 12:53:43.213 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:43.229 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    10/28/2010 12:53:43.244 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    10/28/2010 12:53:43.244 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:43.260 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:43.260 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    10/28/2010 12:53:43.275 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    10/28/2010 12:53:43.291 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:43.291 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:43.307 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    10/28/2010 12:53:43.307 Removing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:43.322 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:43.322 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:43.338 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    10/28/2010 12:53:43.353 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    10/28/2010 12:53:43.369 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    10/28/2010 12:53:43.369 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    10/28/2010 12:53:43.385 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    10/28/2010 12:53:43.385 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    10/28/2010 12:53:43.400 Removing entry ("LANDINGPAGE.RESOURCES", "Native")
    10/28/2010 12:53:43.431 Saved .Net security policy file
    10/28/2010 12:53:43.447 Setup closed with exit code: 0x84C40013
    10/28/2010 12:53:43.463 ======================================================================
    Thanks,
    Adam

  • How much memory does my Macbook pro have

    I have a macbook pro from late 2011. It has 8 gb and 15 inch screen  how many gb are there in all

    do you mean how much storage/ Hard drive space?
    You just listed your macbook has 8gig of RAM
    for your HD size, click on the apple logo upper left, then >more info > storage

  • How can I convert SQL Server 2008 Timestamp to DB2/iSeries Timestamp?

    In DB2/iSeries I have a column that accepts Timestamp value. When I try to insert a timestamp value from the SQL 2008 table and into DB2/iSeries table I recieve the following error message:
    OLE DB provider "IBMDA400" for linked server "XXX" returned message "SQL0180: Syntax of date, time, or timestamp value not valid.
    Cause . . . . . :   The string representation of a date, time, or timestamp value does not conform to the syntax for the specified or implied data type and format. *N is either the character string constant that is not valid or the column or host
    variable that contained the string. If the name is *N, then the value is an expression specified in the statement. If the string was found in a host variable, the host variable number is 1. Recovery  . . . :   Ensure that the date, time, or
    timestamp value conforms to the syntax for the data type it represents. Try the request again.".
    Msg 7343, Level 16, State 2, Line 1
    The OLE DB provider "IBMDA400" for linked server "XXX" could not INSERT INTO table "[IBMDA400]".
    The SQL timestamp column contains the result in the following format:
    2014-04-24 07:39:09.000
    And my insert TSQL command is:
    INSERT INTO OPENQUERY(XXX, 'Select "TimeOfDeal" from ABCD.TICKETS')
    SELECT TimeOfDeal
    FROM dbo.Tickets
    WHERE DealId = 'ABC123'
    I appreciate any help on this issue.

    You are right it is a datetime data type in MS SQL, and a Timestamp in DB2. 
    I cast it to datetime2 and it worked.
    Interesting. I would guess that somewhere under the covers, the date value gets converted to a string, and the different default string formats for datetime and datetime2 is illustrated with this statement:
    SELECT convert(varchar, getdate()), convert(varchar, sysdatetime())
    When I ran it, I got these values:
    Feb 23 2015 12:31PM      2015-02-23 12:31:18.3708899
    Now, why there is a conversion to string in the first place, I'm afraid I don't have any good answer to.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • How to unpivot in SQL Server 2008 R2

    Hi,
    I have data like below:
    AvgPetrolPrice
    AvgKerosenePrice
    AvgGasOilPrice
    GrowthRatePetrol
    GrowthRateKerosene
    GrowthRateGasOil
    685
    689
    688
    0.21
    0.21
    0.21
    I need output like below:
    Product
    Avg for the Year
    Growth Rate for the Year
    Petrol
    685
    0.21
    Kerosene
    689
    0.21
    Gas Oil
    688
    0.21
    Please help ASAP.
    Regards,
    Srini

    See example
    DECLARE @Table TABLE
    UserId INT,
    Day1 INT NULL,
    Day2 INT NULL,
    Day3 INT NULL,
    Day4 INt NULL,
    DayMax Int NULL
    INSERT INTO @Table(UserId, Day1, Day2, Day3, Day4, DayMax)
    VALUES(1,10,null,20,3,null);
    INSERT INTO @Table(UserId, Day1, Day2, Day3, Day4, DayMax)
    VALUES(2,50,25,15,5,null);
    SELECT UserId, DayQuantity AS DayMax FROM @Table
    UNPIVOT (DayQuantity FOR DayNumber IN (Day1,Day2,Day3,Day4)) AS c
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How much data does the apple maps app use per hour ?

    hello,
    i would like to know, if somebody could give me a rough number of how much the Apple Maps app uses per hour for navigation ?

    Apple's Maps app uses vector graphics, so it doesn't have to download data everytime your view changes, & also has an offline mode...you can download quite a large area over WiFi & then use this cache to navigate.
    So, I really wouldn't worry too much about its data usage. Most tests I've read indicate it uses about 80% less data than Google Maps.

  • How much ink does a print head alignment use on a MX860 printer?

    Just wanted to know how much ink is being used when I run a print head alignment job on a MX860 printer?
    Thanks.

    This is a printer issue and it's only covered under the Epson Warranty Program, which is 1 year.  AppleCare has nothing to do with that.
    You'll probably have to replace the printer if the print heads cannot be replaced.  That's the issue when you buy an inkjet that has print heads that aren't part of the ink cartriges... when they go bad, they go bad and you're hosed.  If the issue persists after a print cartridge change, then it's definitely the heads.

  • Failed to install Hotfix 4311 for Microsoft SQL Server 2008 (KB2494094) (64-bit)

    I have a cluster install at SQL version 10.0.4272.  I want to upgrade this to 10.0.4311.  When I go through install on passive node it fails with message of "The patch installer has failed to update the shared features.  To determine
    the reason for failure, review the log files".  When I review detail.txt I see error lines below.  The OS is Windows Server 2008 R2 Enterprise 64-bit.
    2014-07-15 18:18:34 Slp: Error: Action "SqlEngineConfigAction_patch_configrc_Cpu64" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_ConfigRC_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_ConfigRC_postmsi The condition tests feature: MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64. There are 2 dependant
    features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Sco: Attempting to get instance feature flag UpgradeIncomplete for feature MPT_AGENT_CORE_CNI, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\UpgradeIncompleteState
    2014-07-15 18:18:34 Slp: Sco: Attempting to get registry value MPT_AGENT_CORE_CNI
    2014-07-15 18:18:34 Slp: Sco: Attempting to get feature configuration state for feature MPT_AGENT_CORE_CNI, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to get instance feature flag ConfigurationState for feature MPT_AGENT_CORE_CNI, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\ConfigurationState
    2014-07-15 18:18:34 Slp: Sco: Attempting to get registry value MPT_AGENT_CORE_CNI
    2014-07-15 18:18:34 Slp: The FeatureConfigState of MSI feature MPT_AGENT_CORE_CNI has been adjusted to patch configuration.
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_ConfigRC_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "AgentConfigAction_patch_RC_Cpu64" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: AgentConfigAction_patch_RC_Cpu64 The condition tests feature: MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64. There are 2 dependant features. The feature is tested for results:
    ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "AgentConfigAction_patch_RC_Cpu64" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_ConfigRC_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_ConfigRC_postmsi The condition tests feature: SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64. There
    are 3 dependant features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Sco: Attempting to get instance feature flag UpgradeIncomplete for feature SQL_Replication_Core_Inst, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\UpgradeIncompleteState
    2014-07-15 18:18:34 Slp: Sco: Attempting to get registry value SQL_Replication_Core_Inst
    2014-07-15 18:18:34 Slp: Sco: Attempting to get feature configuration state for feature SQL_Replication_Core_Inst, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to get instance feature flag ConfigurationState for feature SQL_Replication_Core_Inst, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\ConfigurationState
    2014-07-15 18:18:34 Slp: Sco: Attempting to get registry value SQL_Replication_Core_Inst
    2014-07-15 18:18:34 Slp: The FeatureConfigState of MSI feature SQL_Replication_Core_Inst has been adjusted to patch configuration.
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_ConfigRC_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_ConfigRC_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_ConfigRC_postmsi The condition tests feature: SQL_FullText_Adv_sql_fulltext_Cpu64. There are 3 dependant features. The feature
    is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Sco: Attempting to get instance feature flag UpgradeIncomplete for feature SQL_FullText_Adv, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\UpgradeIncompleteState
    2014-07-15 18:18:34 Slp: Sco: Attempting to get registry value SQL_FullText_Adv
    2014-07-15 18:18:34 Slp: Sco: Attempting to get feature configuration state for feature SQL_FullText_Adv, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to get instance feature flag ConfigurationState for feature SQL_FullText_Adv, instance MSSQL10.MSSQLSERVER
    2014-07-15 18:18:34 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey 
    2014-07-15 18:18:34 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\ConfigurationState
    2014-07-15 18:18:34 Slp: Sco: Attempting to get registry value SQL_FullText_Adv
    2014-07-15 18:18:34 Slp: The FeatureConfigState of MSI feature SQL_FullText_Adv has been adjusted to patch configuration.
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_ConfigRC_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "FulltextConfigAction_patch_configrc_Cpu64" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: FulltextConfigAction_patch_configrc_Cpu64 The condition tests feature: SQL_FullText_Adv_sql_fulltext_Cpu64. There are 3 dependant features. The feature is tested for results:
    ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "FulltextConfigAction_patch_configrc_Cpu64" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi The condition tests feature: SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64. There are 10 dependant
    features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "cluster_group_cluster_patch_startup_Cpu64" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: cluster_group_cluster_patch_startup_Cpu64 The condition tests feature: SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64. There are 10 dependant features. The feature is tested
    for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "cluster_group_cluster_patch_startup_Cpu64" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi The condition tests feature: MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64. There are 2 dependant
    features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi The condition tests feature: SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64. There
    are 3 dependant features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Startup_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_Startup_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_Startup_postmsi The condition tests feature: SQL_FullText_Adv_sql_fulltext_Cpu64. There are 3 dependant features. The feature
    is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_Startup_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "FulltextConfigAction_patch_startup_Cpu64" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: FulltextConfigAction_patch_startup_Cpu64 The condition tests feature: SQL_FullText_Adv_sql_fulltext_Cpu64. There are 3 dependant features. The feature is tested for results: ValidateResult,
    Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "FulltextConfigAction_patch_startup_Cpu64" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi The condition tests feature: SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64. There are
    10 dependant features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi The condition tests feature: MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64. There are 2
    dependant features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi The condition tests feature: SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64.
    There are 3 dependant features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_StartupFinalize_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_StartupFinalize_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_StartupFinalize_postmsi The condition tests feature: SQL_FullText_Adv_sql_fulltext_Cpu64. There are 3 dependant features.
    The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_StartupFinalize_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Finalize_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_Finalize_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_Finalize_postmsi The condition tests feature: MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64. There are 2 dependant
    features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_MPT_AGENT_CORE_CNI_sql_engine_core_inst_Cpu64_Patch_Finalize_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Finalize_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Finalize_postmsi The condition tests feature: SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64. There
    are 3 dependant features. The feature is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_Replication_Core_Inst_sql_engine_core_inst_Cpu64_Patch_Finalize_postmsi" failed during execution.
    2014-07-15 18:18:34 Slp: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_Finalize_postmsi" will return false due to the following conditions:
    2014-07-15 18:18:34 Slp: Condition "Feature dependency condition for action: ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_Finalize_postmsi The condition tests feature: SQL_FullText_Adv_sql_fulltext_Cpu64. There are 3 dependant features. The feature
    is tested for results: ValidateResult, Result." did not pass as it returned false and true was expected.
    2014-07-15 18:18:34 Slp: Condition is false because the required feature SQL_Engine_Core_Inst_sql_engine_core_inst_Cpu64 failed in result Result
    2014-07-15 18:18:34 Slp: Error: Action "ConfigEvent_SQL_FullText_Adv_sql_fulltext_Cpu64_Patch_Finalize_postmsi" failed during execution.
    2014-07-15 18:18:39 Slp: Error result: -2068643839
    2014-07-15 18:18:39 Slp: Result facility code: 1203
    2014-07-15 18:18:39 Slp: Result error code: 1
    2014-07-15 18:18:39 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-15 18:18:39 Slp: Sco: Attempting to open registry subkey 
    2014-07-15 18:18:39 Slp: Sco: Attempting to open registry subkey Software\Microsoft\PCHealth\ErrorReporting\DW\Installed
    2014-07-15 18:18:39 Slp: Sco: Attempting to get registry value DW0201
    2014-07-15 18:18:40 Slp: Submitted 1 of 1 failures to the Watson data repository

    Hello,
    Please read the following support article:
    http://support.microsoft.com/kb/2216468/en-us
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

Maybe you are looking for

  • ICloud storage for iTunes library

    Hello -- I am unclear on how he iCloud works with the iTunes library. Is all my media files saved there, including items bought from the iTunes store and  mp3 that  add to  itunes  that I buy elsewhere? Thanks fpe

  • Is it possible to configure Firefox for Android so it doesn;t open a new tab every time a new url is sent to the browser?

    We are using a web based service to register people's mood when they touch an NFC card against the tablet. Every time someone taps their card against it, it open up a new tab, and they then register the mood they are in. We recently got to a situatio

  • Archiving object for the tables

    Hi, I want to archive the tables.But some of the tables I did not find the archiving object.What should be done on this.Pls guide. Tables w/o archiving object which i want to archive APQD,ARFCSDATA,DYNPSOURCE,WBBP,REPOLOAD,REPOSRC,BDCP,BDCPS Thanks

  • Using Sequence in SQL Loader

    Hi, Does anybody know if I can generate the unique primary key using an Oracle Sequence for a Database table to which I am inserting records in SQL Loader? I checked the SQL Loader manual and there is no information as to how to make use of a Oracle

  • SYSTEM TEMPERATUR​E 90D .

    help me . ASAP! i have a compaq presario CQ42 . today i has disassembling my laptop and applying thermal paste on cpu and gpu . so , the problem is when i play games about 5min or 10min my laptop suddenly go on sleep and shutdown itself then i try to