SQL Server 2008 File Stream On Existing Table

Hi Folks,
I have enabled the SQL Server File Stream option on a Existing table.
1. Created a GUID Column 
2. Created a File Stream Column 
3. Swapped the Blob Column information into file Stream column. 
4. Dropped the BLOB Column. 
I could evidence, The above Step 3 Process moved out all the Blob Data into an configured Network File Group.
Ex:
Existing BLOB Data Size --> 10 GB 
Once after the completion of above step 4, SQL Server is not freeing up the BLOB occupied Space 10 GB. It should have only few MB's pointer address to the network file Group?
If we create a new table with File Stream data type and insert the existing BLOB data ,Will result few MB pointer Address occupied in the newly created table. We except the similar behaviour for updating BLOB to File Stream in existing table. 
Please advice me.
Thanks 
Narendran
Narendran

When you drop a column, SQL Server only mark the column as dropped, but does not reclaim the space, as that requires data to be shuffled around. You need to rebuild the clustered index (and any other index with the column) to reclaim the space. See repro
below:
CREATE TABLE myblobbie (id int   NOT NULL PRIMARY KEY,
                        name sysname  NOT NULL,
                        blob varchar(MAX) NOT NULL)
go
INSERT myblobbie(id, name, blob)
   SELECT object_id, name, replicate(convert(varchar(MAX), name), 1000)
   FROM   sys.objects
go
EXEC sp_spaceused myblobbie
go
ALTER TABLE myblobbie DROP COLUMN blob
go
EXEC sp_spaceused myblobbie
go
ALTER INDEX ALL ON myblobbie REBUILD
go
EXEC sp_spaceused myblobbie
go
DROP TABLE myblobbie
Erland Sommarskog, SQL Server MVP, [email protected]

Similar Messages

  • Sporadically getting error "string or binary data would be truncated" in SQL server 2008 while inserting in a Table Type object

    I am facing a strange SQL exception:-
    The code flow is like this:
    .Net 4.0 --> Entity Framework --> SQL 2008 ( StoredProc --> Function {Exception})
    In the SQL Table-Valued Function, I am selecting a column (nvarchar(50)) from an existing table and (after some filtration using inner joins and where clauses) inserting the values in a Table Type Object having a column (nvarchar(50))
    This flow was working fine in SQL 2008 but now all of sudden the Insert into @TableType is throwing  "string or binary data would be truncated"  exception. 
    Insert Into @ObjTableType
    Select * From dbo.Table
    The max length of data in the source column is 24 but even then the insert statement into nvarchar temp column is failing.
    Moreover, the same issue started coming up few weeks back and I was unable to find the root cause, but back then it started working properly after few hours
    (issue reported at 10 AM EST and was automatically resolved post 8 PM EST). No refresh activity was performed on the database.
    This time however the issue is still coming up (even after 2 days) but is not coming up in every scenario. The data set, for which the error is thrown, is valid and every value in the function is fetched from existing tables. 
    Due to its sporadic nature, I am unable to recreate it now :( , but still unable to determine why it started coming up or how can i prevent such things to happen again.
    It is difficult to even explain the weirdness of this bug but any help or guidance in finding the root cause will be very helpful.
    I also Tried by using nvarchar(max) in the table type object but it didn't work.
    Here is a code similar to the function which I am using:
    BEGIN
    TRAN
    DECLARE @PID
    int = 483
    DECLARE @retExcludables
    TABLE
        PID
    int NOT
    NULL,
        ENumber
    nvarchar(50)
    NOT NULL,
        CNumber
    nvarchar(50)
    NOT NULL,
        AId
    uniqueidentifier NOT
    NULL
    declare @PSCount int;
    select @PSCount =
    count('x')
    from tblProjSur ps
    where ps.PID
    = @PID;
    if (@PSCount = 0)
    begin
    return;
    end;
    declare @ExcludableTempValue table (
            PID
    int,
            ENumber
    nvarchar(max),
            CNumber
    nvarchar(max),
            AId
    uniqueidentifier,
            SIds
    int,
            SCSymb
    nvarchar(10),
            SurCSymb
    nvarchar(10)
    with SurCSymbs as (
    select ps.PID,
                   ps.SIds,              
                   csl.CSymb
    from tblProjSur ps
                right
    outer join tblProjSurCSymb pscs
    on pscs.tblProjSurId
    = ps.tblProjSurId
    inner join CSymbLookup csl
    on csl.CSymbId
    = pscs.CSymbId 
    where ps.PID
    = @PID
        AssignedValues
    as (
    select psr.PID,
                   psr.ENumber,
                   psr.CNumber,
                   psmd.MetaDataValue
    as ClaimSymbol,
                   psau.UserId
    as AId,
                   psus.SIds
    from PSRow psr
    inner join PSMetadata psmd
    on psmd.PSRowId
    = psr.SampleRowId
    inner join MetaDataLookup mdl
    on mdl.MetaDataId
    = psmd.MetaDataId
    inner join PSAUser psau
    on psau.PSRowId
    = psr.SampleRowId
                inner
    join PSUserSur psus
    on psus.SampleAssignedUserId
    = psau.ProjectSampleUserId
    where psr.PID
    = @PID
    and mdl.MetaDataCommonName
    = 'CorrectValue'
    and psus.SIds
    in (select
    distinct SIds from SurCSymbs)         
        FullDetails
    as (
    select asurv.PID,
    Convert(NVarchar(50),asurv.ENumber)
    as ENumber,
    Convert(NVarchar(50),asurv.CNumber)
    as CNumber,
                   asurv.AId,
                   asurv.SIds,
                   asurv.CSymb
    as SCSymb,
                   scs.CSymb
    as SurCSymb
    from AssignedValues asurv
    left outer
    join SurCSymbs scs
    on    scs.PID
    = asurv.PID
    and scs.SIds
    = asurv.SIds
    and scs.CSymb
    = asurv.CSymb
    --Error is thrown at this statement
    insert into @ExcludableTempValue
    select *
    from FullDetails;
    with SurHavingSym as (   
    select distinct est.PID,
                            est.ENumber,
                            est.CNumber,
                            est.AId
    from @ExcludableTempValue est
    where est.SurCSymb
    is not
    null
    delete @ExcludableTempValue
    from @ExcludableTempValue est
    inner join SurHavingSym shs
    on    shs.PID
    = est.PID
    and shs.ENumber
    = est.ENumber
    and shs.CNumber
    = est.CNumber
    and shs.AId
    = est.AId;
    insert @retExcludables(PID, ENumber, CNumber, AId)
    select distinct est.PID,
    Convert(nvarchar(50),est.ENumber)
    ENumber,
    Convert(nvarchar(50),est.CNumber)
    CNumber,
                            est.AId      
    from @ExcludableTempValue est 
    RETURN
    ROLLBACK
    TRAN
    I have tried by converting the columns and also validated the input data set for any white spaces or special characters.
    For the same input data, it was working fine till yesterday but suddenly it started throwing the exception.

    Remember, the CTE isn't executing the SQL exactly in the order you read it as a human (don't get too picky about that statement, it's at least partly true enough to say it's partly true), nor are the line numbers or error messages easy to read: a mismatch
    in any of the joins along the way leading up to your insert could be the cause too.  I would suggest posting the table definition/DDL for:
    - PSMetadata, in particular PSRowID, but just post it all
    - tblProjectSur, in particularcolumns CSymbID and TblProjSurSurID
    - cSymbLookup, in particular column CSymbID
    - PSRow, in particular columns SampleRowID, PID,
    - PSAuser and PSUserSur, in particualr all the USERID and RowID columns
    - SurCSymbs, in particular colum SIDs
    Also, a diagnostic query along these lines, repeat for each of your tables, each of the columns used in joins leading up to your insert:
    Select count(asurv.sid) as count all
    , count(case when asurv.sid between 0 and 9999999999 then 1 else null end) as ctIsaNumber
    from SurvCsymb
    The sporadic nature would imply that the optimizer usually chooses one path to the data, but sometimes others, and the fact that it occurs during the insert could be irrelevant, any of the preceding joins could be the cause, not the data targeted to be inserted.

  • Tables missing in SQL Server 2008 for Hyperion Application

    Hello Experts,
    I am cuurently working on Hyperion Finacial close management (Account Reconciliation Manager) application version 11.1.2.3, O.S is Windows 2008 R2 and relational database is SQL Server 2008.
    When I am trying to copy Account Profiles to a period say go to Manage->Periods->Right Click->Copy to Periods, I get the error:
    Object arm_access is missing.
    When I open SQL server studio, I can clearly see table 'ARM_ACCESS' but when I did a search on oracle support and google, I found out that it is a case sensitive issue and the table has to be in small letters.
    So I created a new table 'arm_access' with all columns as there are in 'ARM_ACCESS' in SQL Server 2008, but it is not fetching any data.
    Can anyone provide me the query that I can run to display the same structure and data for 'arm_access'?
    If anyone is using the instance, he/she should be able to provide me the query that I can run in SQL server 2008 to populate the 'arm_access' table.
    Appreciate your help as this is stopping my development work.
    Thanks in advance.
    Regards,
    Sumit

    Hi Sumit,
    Its just a wild guess am not sure with this.
    i dont have idea about query in sql server. but it oracle it would be something like create table targettablename as select * from sourcetablename.
    Ideally it will not allow to create you a table with that name if its already exists i mean its case insensitive (. Even if you have created manually make sure the db user you created with has select privilage granted for all users or the user you configured in Financial close management) or the DB might not be having select privilage .
    Note:Have backups in place when you are manually to manipulate or changing the database user.
    Thanks
    Amith

  • How to extract data from multiple flat files to load into corresponding tables in SQL Server 2008 R2 ?

    Hi,
              I have to implement the following scenario in SSIS but don't know how to do since I never worked with SSIS before. Please help me.
              I have 20 different text files in a single folder and 20 different tables corresponding to each text file in SQL Server 2008 R2 Database. I need to extract the data from each text file and
    load the data into corresponding table in Sql Server Database. Please guide me in how many ways I can do this and which is the best way to implement this job.  Actually I have to automate this job. Few files are in same format(with same column names
    and datatypes) where others are not.
    1. Do I need to create 20 different projects ?
                   or
        Can I implement this in only one project by having 20 packages?
                 or
        Can I do this in one project with only one package?
    Thanks in advance.

    As I said I don't know how to use object data type, I just given a shot as below. I know the following code has errors can you please correct it for me.
    Public
    Sub Main()
    ' Add your code here 
    Dim f1
    As FileStream
    Dim s1
    As StreamReader
    Dim date1
    As
    Object
    Dim rline
    As
    String
    Dim Filelist(1)
    As
    String
    Dim FileName
    As
    String
    Dim i
    As
    Integer
    i = 1
    date1 =
    Filelist(0) =
    "XYZ"
    Filelist(1) =
    "123"
    For
    Each FileName
    In Filelist
    f1 = File.OpenRead(FileName)
    s1 = File.OpenText(FileName)
    rline = s1.ReadLine
    While
    Not rline
    Is
    Nothing
    If Left(rline, 4) =
    "DATE"
    Then
    date1 (i)= Mid(rline, 7, 8)
     i = i + 1
    Exit
    While
    End
    If
    rline = s1.ReadLine
    End
    While
    Next
    Dts.Variables(
    "date").Value = date1(1)
    Dts.Variables(
    "date1").Value = date1(2)
    Dts.TaskResult = ScriptResults.Success
    End
    Sub

  • SQL Server 2008 R2 install fails on Server 2008 R2 at installation of setup files with Exit code: 0x84C40013

    Hello,
    I am trying to install the SQL Server 2008 R2 Client and managment tools on a Server 2008 R2 box, but the install is failing when trying to install the setup files with no error. I looked at the SQLSetup_1 log file and this is what I found:
    08/13/2014 20:26:10.743 ======================================================================
    08/13/2014 20:26:10.743 Setup launched
    08/13/2014 20:26:10.743 Attempting to determine media source
    08/13/2014 20:26:10.743 Media source: C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\
    08/13/2014 20:26:10.743 Attempt to determine media layout based on file 'C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\mediainfo.xml'.
    08/13/2014 20:26:10.775 Media layout is detected as: Full
    08/13/2014 20:26:10.775 Not a slip stream media, so continuing to run setup.exe from media.
    08/13/2014 20:26:10.775 /? or /HELP or /ACTION=HELP specified: false
    08/13/2014 20:26:10.775 Help display: false
    08/13/2014 20:26:10.775 Checking to see if we need to install .Net version 3.5
    08/13/2014 20:26:10.775 Determining the cluster status of the local machine.
    08/13/2014 20:26:10.775 The local machine is not configured as a cluster node.
    08/13/2014 20:26:10.775 Attempting to find media for .Net version 3.5
    08/13/2014 20:26:10.775 .Net version 3.5 is installed
    08/13/2014 20:26:10.775 RedistMSI::GetExpectedBuildRevision - Setup expects MSI 4.5.6001.22159 at the minimum
    08/13/2014 20:26:10.775 Attempting to get Windows Installer version
    08/13/2014 20:26:10.790 Windows Installer version detected: 5.0.7601.17514
    08/13/2014 20:26:10.790 RedistMSI::IsVistaRTM - Not Vista RTM build
    08/13/2014 20:26:10.790 Required version of Windows Installer is already installed
    08/13/2014 20:26:10.790 Attempting to get Windows Installer version
    08/13/2014 20:26:10.790 Windows Installer version detected: 5.0.7601.17514
    08/13/2014 20:26:10.790 RedistMSI::IsVistaRTM - Not Vista RTM build
    08/13/2014 20:26:10.790 Required version of Windows Installer is already installed
    08/13/2014 20:26:10.790 Local setup.exe not found, so continuing to run setup.exe from media.
    08/13/2014 20:26:10.790 Attempt to initialize SQL setup code group
    08/13/2014 20:26:10.790 Attempting to determine security.config file path
    08/13/2014 20:26:10.790 Checking to see if policy file exists
    08/13/2014 20:26:10.790 .Net security policy file does exist
    08/13/2014 20:26:10.790 Attempting to load .Net security policy file
    08/13/2014 20:26:10.806 Processing entry ("MSVCM80", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.806 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.806 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.806 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.806 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.806 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.806 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.806 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    08/13/2014 20:26:10.806 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    08/13/2014 20:26:10.822 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.837 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    08/13/2014 20:26:10.837 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("LANDINGPAGE", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.853 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    08/13/2014 20:26:10.853 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    08/13/2014 20:26:10.868 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.868 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("SHELLOBJECTS", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    08/13/2014 20:26:10.884 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.884 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    08/13/2014 20:26:10.900 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.900 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    08/13/2014 20:26:10.900 Processing entry ("FIXSQLREGISTRYKEY", "X86")
    08/13/2014 20:26:10.900 Processing entry ("FIXSQLREGISTRYKEY", "X64")
    08/13/2014 20:26:10.900 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.900 Processing entry ("FIXSQLREGISTRYKEY", "IA64")
    08/13/2014 20:26:10.900 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.900 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    08/13/2014 20:26:10.900 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.900 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    08/13/2014 20:26:10.900 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.900 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    08/13/2014 20:26:10.900 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.900 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:10.900 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.900 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.915 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    08/13/2014 20:26:10.915 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:26:10.931 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:10.931 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:26:10.931 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:26:10.931 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    08/13/2014 20:26:10.931 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    08/13/2014 20:26:10.931 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    08/13/2014 20:26:10.931 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.931 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:26:10.947 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.947 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:10.947 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.947 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
    08/13/2014 20:26:10.947 Required security code group nodes exist, contine.
    08/13/2014 20:26:10.962 Saved .Net security policy file
    08/13/2014 20:26:10.962 Attempting to determine security.config file path
    08/13/2014 20:26:10.962 Checking to see if policy file exists
    08/13/2014 20:26:10.962 .Net security policy file does exist
    08/13/2014 20:26:10.962 Attempting to load .Net security policy file
    08/13/2014 20:26:10.962 Processing entry ("MSVCM80", "Native")
    08/13/2014 20:26:10.962 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    08/13/2014 20:26:10.962 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    08/13/2014 20:26:10.962 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    08/13/2014 20:26:10.962 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    08/13/2014 20:26:10.962 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    08/13/2014 20:26:10.962 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    08/13/2014 20:26:10.962 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    08/13/2014 20:26:10.978 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    08/13/2014 20:26:10.993 Processing entry ("LANDINGPAGE", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    08/13/2014 20:26:10.993 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    08/13/2014 20:26:11.009 Processing entry ("SHELLOBJECTS", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    08/13/2014 20:26:11.009 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    08/13/2014 20:26:11.009 Required security code group nodes exist, contine.
    08/13/2014 20:26:11.009 Processing entry ("FIXSQLREGISTRYKEY", "X86")
    08/13/2014 20:26:11.009 Required security code group nodes exist, contine.
    08/13/2014 20:26:11.009 Processing entry ("FIXSQLREGISTRYKEY", "X64")
    08/13/2014 20:26:11.025 Processing entry ("FIXSQLREGISTRYKEY", "IA64")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    08/13/2014 20:26:11.025 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    08/13/2014 20:26:11.040 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
    08/13/2014 20:26:11.056 Saved .Net security policy file
    08/13/2014 20:26:11.072 Strong name verification disabling is not required
    08/13/2014 20:26:11.072 /? or /HELP or /ACTION=HELP specified: false
    08/13/2014 20:26:11.072 Help display: false
    08/13/2014 20:26:11.072 Attempting to launch landing page workflow
    08/13/2014 20:26:11.072 Attempting to set setup mutex
    08/13/2014 20:26:11.072 Setup mutex has been set
    08/13/2014 20:26:11.072 Attempting to launch global rules workflow
    08/13/2014 20:26:11.072 Media source: C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\
    08/13/2014 20:26:11.072 Install media path: C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\x64\setup\
    08/13/2014 20:26:11.072 Media layout: Full
    08/13/2014 20:26:11.072 Attempting to get execution timestamp
    08/13/2014 20:26:11.087 Timestamp: 20140813_202610
    08/13/2014 20:26:11.087 Attempting to run workflow RUNRULES /RULES=GlobalRules
    08/13/2014 20:26:11.087 Attempting to launch process C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\x64\setup100.exe
    08/13/2014 20:26:29.898 Process returned exit code: 0x00000000
    08/13/2014 20:26:29.898 Workflow RUNRULES /RULES=GlobalRules returned exit code: 0x00000000
    08/13/2014 20:26:29.898 Attempting to launch component update workflow
    08/13/2014 20:26:29.914 Media source: C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\
    08/13/2014 20:26:29.914 Install media path: C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\x64\setup\
    08/13/2014 20:26:29.914 Media layout: Full
    08/13/2014 20:26:29.914 Attempting to get execution timestamp
    08/13/2014 20:26:29.914 Timestamp: 20140813_202610
    08/13/2014 20:26:29.914 Attempting to run workflow COMPONENTUPDATE
    08/13/2014 20:26:29.914 Attempting to launch process C:\Users\ercklentzn\Desktop\SQL Server 2008 Ent Ed R2\x64\setup100.exe
    08/13/2014 20:27:16.396 Process returned exit code: 0x84BC0057
    08/13/2014 20:27:16.396 Workflow COMPONENTUPDATE returned exit code: 0x84BC0057
    08/13/2014 20:27:16.396 Attempting to determine security.config file path
    08/13/2014 20:27:16.396 Attempting to load .Net security policy file
    08/13/2014 20:27:16.396 Attempting to remove .Net security code group node
    08/13/2014 20:27:16.411 Removing entry ("MSVCM80", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    08/13/2014 20:27:16.411 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    08/13/2014 20:27:16.427 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    08/13/2014 20:27:16.442 Removing entry ("LANDINGPAGE", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    08/13/2014 20:27:16.442 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    08/13/2014 20:27:16.458 Removing entry ("SHELLOBJECTS", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    08/13/2014 20:27:16.458 Removing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    08/13/2014 20:27:16.458 Removing entry ("FIXSQLREGISTRYKEY", "X86")
    08/13/2014 20:27:16.458 Removing entry ("FIXSQLREGISTRYKEY", "X64")
    08/13/2014 20:27:16.458 Removing entry ("FIXSQLREGISTRYKEY", "IA64")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    08/13/2014 20:27:16.474 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    08/13/2014 20:27:16.489 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    08/13/2014 20:27:16.505 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:27:16.505 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.505 Removing entry ("LANDINGPAGE.RESOURCES", "Native")
    08/13/2014 20:27:16.521 Saved .Net security policy file
    08/13/2014 20:27:16.521 Attempting to determine security.config file path
    08/13/2014 20:27:16.521 Attempting to load .Net security policy file
    08/13/2014 20:27:16.521 Attempting to remove .Net security code group node
    08/13/2014 20:27:16.521 Removing entry ("MSVCM80", "Native")
    08/13/2014 20:27:16.521 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    08/13/2014 20:27:16.521 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    08/13/2014 20:27:16.521 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    08/13/2014 20:27:16.521 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    08/13/2014 20:27:16.536 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQLSERVER.INTEROP.MSCLUSTERLIB", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    08/13/2014 20:27:16.552 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    08/13/2014 20:27:16.552 Removing entry ("LANDINGPAGE", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    08/13/2014 20:27:16.567 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    08/13/2014 20:27:16.583 Removing entry ("SHELLOBJECTS", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    08/13/2014 20:27:16.583 Removing entry ("FIXSQLREGISTRYKEY", "X86")
    08/13/2014 20:27:16.583 Removing entry ("FIXSQLREGISTRYKEY", "X64")
    08/13/2014 20:27:16.583 Removing entry ("FIXSQLREGISTRYKEY", "IA64")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.583 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    08/13/2014 20:27:16.599 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    08/13/2014 20:27:16.614 Removing entry ("LANDINGPAGE.RESOURCES", "Native")
    08/13/2014 20:27:16.614 Saved .Net security policy file
    08/13/2014 20:27:16.614 Attempting to release setup mutex
    08/13/2014 20:27:16.614 Setup mutex has been released
    08/13/2014 20:27:16.614 Setup closed with exit code: 0x84C40013
    08/13/2014 20:27:16.614 ======================================================================
    Any help troubleshotting this installation would be appreciated. I did try runnnig Setup as administrator and tried copying the install files to the root directory.
    Thanks a lot,
    Nick

    This  error code "0x84C40013" may be caused by permission issue when you perform an unattended install. Did you run the setup.exe with "Run As a Administrator" ?
    Check this below link and try if this works... http://basitaalishan.com/2012/08/02/unattended-sql-server-2012-installs/
    Raju Rasagounder Sr MSSQL DBA

  • [Error] Microsoft SQL Server 2008 Setup. Error reading from file msdbdata.mdf

    Hi all
    I'm trying to install SQL 2008 Express on my Computer: Hp compact DX7300 Slim tower.
    and get this error:
    TITLE: Microsoft SQL Server 2008 Setup
    The following error has occurred:Error reading from file d:\8268cd7b247d294de359c9\x86\setup\sql_engine_core_inst_msi\PFiles\SqlServr\MSSQL.X\MSSQL\Binn\Template\msdbdata.mdf.  Verify that the file exists and that you can access it.
    Click 'Retry' to retry the failed action, or click 'Cancel' to cancel this action and continue setup.
    For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.0.1823.0&EvtType=0xF45F6601%25401201%25401
    Log file
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Exit code (Decimal):           -2068643839
      Exit facility code:            1203
      Exit error code:               1
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Start time:                    2014-12-09 23:22:03
      End time:                      2014-12-09 23:40:28
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141209_232121\sql_engine_core_inst_Cpu32_1.log
      Exception help link:           http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.0.1823.0
    Machine Properties:
      Machine name:                  VISTA-PC
      Machine processor count:       2
      OS version:                    Windows Vista
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x86
      Process architecture:          32 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
    Package properties:
      Description:                   SQL Server Database Services 2008
      SQLProductFamilyCode:          {628F8F38-600E-493D-9946-F4178F20A8A9}
      ProductName:                   SQL2008
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         d:\8268cd7b247d294de359c9\x86\setup\
      Installation edition:          EXPRESS
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Disabled
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141209_232121\ConfigurationFile.ini
      ENABLERANU:                    True
      ERRORREPORTING:                False
      FEATURES:                      SQLENGINE,REPLICATION
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    SQLExpress
      INSTANCENAME:                  SQLEXPRESS
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      MEDIASOURCE:                   d:\8268cd7b247d294de359c9\
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           VISTA-PC\VISTA
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141209_232121\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141209_232121\SystemConfigurationCheck_Report.htm
    I will very appriciate if someone can help me solve it. I was trying to set Full control for my account in Properties/Security of root folder and try again but error is still.
    Many thanks

    Hi Foreverduy,
    Before you run SQL Server 2008 express setup, make sure that you have installed Windows installer 4.5 and.NET Framework 3.5 SP1 manually. For more information about the process, please refer to the article:
    http://msdn.microsoft.com/en-us/library/ms143506(v=sql.100).aspx. Moreover, please turn off all the third-party softwares which could prohibit the installation process.
    According to your error message, the issue could be due to that your account has no rights to install SQL Server, or the corruption on the media.
    Firstly, please ensure that your account has admin rights. Also make sure that you right-click the setup.exe and choose “Run as administrator” to complete the installation.
    Secondly, please check if "msdbdata.mdf" file exists at d:\8268cd7b247d294de359c9\x86\setup\sql_engine_core_inst_msi\PFiles\SqlServr\MSSQL.X\MSSQL\Binn\Template. If it exists, please make sure that your account has read permission to the extracted
    folder.
    However, if the file doesn't exist in the extraction, the media could be corrupt. Please download the
    media
    again and check if the issue still occurs.
    Regards,
    Michelle Li

  • SQL Server 2008 R2 - Adding Replication Components to an Existing Installation

    Hi All
    I have a SQL Server 2008 R2 instance that I need to install Replication components on. 
    I've been going through the appropriate wizard and selecting to upgrade an existing instance, the wizard recognizes the SQL Server that we have installed so that one is selected. On the next screen, I'd expect to see the feature selector with everything
    we currently have installed selected and greyed out, however nothing is selected (except for BOL).
    So in order to select Replication Components, I'd have to also select Database Engine, suggesting that a new SQL Instance would be installed. Not wanting to do this, I'm having to abort.
    I've tried a number of different ISOs now (one I found lying around on the server), but I haven't had any luck. My only option now seems to be to recreate the instance entirely, but that being a last resort, I was wondering if anyone may have had some experience
    with this problem?
    I am running the installer with the highest level of Windows and SQL access, if that helps.
    Thank you

    Just to confirm when you try to install you select the option "Add features to an existing Instance of SQL" and below you see the instance name and you *Dont* see replication.
    Now when you click next in the feature selection page you see replication as greyed out is that correct?
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com
    To confirm, the steps I'm taking are as follows:
    Once all the Setup Support files have been installed, and the Setup Support rules have been checked (with no errors)
    - At the Installation Type screen I select Add features to an existing instance of SQL Server 2008 R2. My server appears in the drop down as the only instance on this server. I see the list of installed instances too, and can confirm that Replication does
    not appear in the Features column. I click next.
    - At the Feature selection screen, the only items that are selected are Books Online, SQL Client Connectivity and Microsoft Sync Framework. No other features are selected and greyed out, where I would expect Database Engine Services, Analysis Services and
    Reporting Services (among others) to be selected. Selecting SQL Server Replication at this stage results in Database Engine Services also being ticked, suggesting the wizard will add a new instance on this machine.
    The only peculiarity that I've noticed is with the version number reported on the Installation Type screen, which shows 10.51.2500. Not the same as the version that is reported if I inspect object browser or I user the @@Version command. In fact, I believe
    this version relates to MDS instead? This being said, our other production server reports the same version here, and I was able to install replication components here with no problem.
    I hope this helps, I don't know if I can attach some images to my post to make it more clear? It's quite a difficult and unusual problem to explain!

  • Table design for an indicator field in SQL Server 2008 R2

    Hi, I am using SQL Server 2008 R2 and I have an existing table (Please see the below table definition).
    CREATE TABLE Code
    ID INT IDENTITY (1, 1) PRIMARY KEY,
    Code NVARCHAR(10) NOT NULL UNIQUE,
    [Description] NVARCHAR(100) NOT NULL,
    [Type] NVARCHAR(30) NULL,
    Program NVARCHAR(30) NOT NULL, --Adding this column as a filter for different programs
    ModifiedDate DATETIME NOT NULL DEFAULT (getdate()),
    ModifiedBy NVARCHAR(128) NOT NULL DEFAULT (suser_sname())
    This table has been in use for a while and I am adding a column [Program] to identify records for that program. Previously it used to be just one program and this [Code] table was working just fine now there are 5 different programs introduced in the organization
    and this could keep changing over time.
    For instance Program A uses Code A, Code B, Code C & Program B uses Code C, Code D, Code E & Program C uses Code C. I know of an option which works but creates maintenance overhead
    everytime these programs change by doing something like below.
    Code ProgramA ProgramB ProgramC ProgramD ProgramE
    A      Yes
    B      Yes
    C      Yes           Yes           Yes
    D                      Yes
    E                       Yes
    But, is there a better way to do this keeping 1 column for Program and users being able to manage their data without looking at other codes. I mean a user who manages Program A should be able
    to see codes A, B, C & user managing Program B should see codes C, D, E & for Program C just code C.
    Thanks in advance.....
    Ione

    I would add it as a seperate table with columns as
    ProgramName  CodeName
    the data would be like
    ProgramName CodeName
    ProgramA A
    ProgramA B
    ProgramA C
    ProgramB C
    ProgramB D
    ProgramB E
    ProgramC C
    then its just a matter of adding a join from your above table to this table on Code field to get associated Program info and filter on it.
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • MS SQL server 2008 - Bulk copy from XML to DB table throws bcp_init error

    I have MS SQL server 2008 installed ,
    Windows version - Windows 7 Professional with SP1
    Doing a bulk copy process using the SQL library function bcp_init function in c++ throws xml error and its not inserting the data into the tables.
    Error received ,
    XML Datatransfer error: XML data or another error occurred while reading file 'd:\temp\scripts\dbtoolscripts\table_data.xml':
    But this works in others machines with the same windows version and SQL version.

    We are using the same SQL lib function bcp_init , we have written a separate class to load the ODBC32.dll , sqlncli.dll  and use the  bcp_init and other SQL functions from that. As i mentioned earlier we all use the same application build , but
    its not working in my machine only other machines its working.
    There is no provision to load XML files when you use the BCP interface in sqlncli.dll. You can of course load XML files, but the BCP API does not know that it is XML, it only sees a number of bytes.
    So that error message is not coming from the BCP API, but somewhere else. Maybe your own code in reaction to some error from the BCP API. But without any clue of that error message, we can't help you.
    I think you will need to do some debugging or by some other means improve your diagnostics.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • SQL Server 2008 R2 Management Studio (express) install fails (Management Tools Basic Failed) - Error 1316. The Specific account already exists.

    Hi,
    I try to install, the SQL Express 2008 R2 with Advanced 
    The installation has only one error  (Error 1316. The Specific account already exists.) and the Management Tools Basic setup is failed.
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the 
    reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server 
    Setup.
      Exit code (Decimal):           -2068052700
      Exit facility code:            1212
      Exit error code:               1316
      Exit message:                  SQL Server installation failed. To continue, investigate the 
    reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server 
    Setup.
      Start time:                    2015-01-02 16:17:17
      End time:                      2015-01-02 16:24:01
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap
    \Log\20150102_161500\SSCRuntime_Cpu32_1.log
      Exception help link:           http://go.microsoft.com/fwlink?
    LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.4000.0
    Machine Properties:
      Machine name:                  KHPNHSI_BNANG
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature             
                         Language             Edition              Version         Clustered 
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      Installation location:         g:\41bee43707e62fab54ec\x64\setup\
      Installation edition:          EXPRESS_ADVANCED
      Slipstream:                    True
      SP Level                       2
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      True
      AGTSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Disabled
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             
      CUSOURCE:                      
      ENABLERANU:                    True
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE,REPLICATION,SSMS,SNAC_SDK
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    SQLExpress
      INSTANCENAME:                  SQLEXPRESS
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     g:\41bee43707e62fab54ec\PCUSOURCE
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  NT AUTHORITY\NETWORK SERVICE
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           PSI\ssamnang
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap
    \Log\20150102_161500\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap
    \Log\20150102_161500\SystemConfigurationCheck_Report.htm
    Please help!
    Samnang.

    Hi SSamnang,
    According to your description, you come across the error that the specific account already exists. Please help to share the complete error log in C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150102_161500\SSCRuntime_Cpu32_1.log. You could
    use google drive to upload the error log following the steps in the article:
    https://support.google.com/drive/answer/2424368?hl=en
    From the exception help link, we notice that, the issue could be due to that an attempt fails to install SQL Server Native Client on a computer where SQL Server Native Client is already installed.
    I recommend you to check if there is already an existing SQL Server Native Client on your computer. If there is an existing one, you could uninstall it and install SQL Server again.
    In addition, there is a similar thread for reference:
    https://social.technet.microsoft.com/Forums/en-US/dc31bffd-c9e2-4630-b5d7-9252b03c24fe/sql-2008-r2-management-tools-install-fails-the-specified-account-already-exists?forum=sqltools.
    Regards,
    Michelle Li

  • Transfer tables from sql server 2008 to oracle 11g

    Hi ,
    I have to transfer 2-3 tables (5 Lacs records each) from sql server 2008 to oracle Ent. 11g (platform Linux)
    i have to upload data with some conditions.
    not allowed to install oracle client on sql server for link server. i can get data in csv file
    which will be the best possible way
    1) using Db link on oracle server
    2) get data into csv file and load using SQL loader
    3) get data into csv and load using external table
    4) using tool - sql developer
    Thanx,

    user10188639 wrote:
    Hi ,
    I have to transfer 2-3 tables (5 Lacs records each) from sql server 2008 to oracle Ent. 11g (platform Linux)
    i have to upload data with some conditions.
    not allowed to install oracle client on sql server for link server. i can get data in csv file
    which will be the best possible way
    1) using Db link on oracle server
    2) get data into csv file and load using SQL loader
    3) get data into csv and load using external table
    4) using tool - sql developer
    Thanx,
    >which will be the best possible way
    which metric measures best? is higher or lower value better?
    How will you, I or anyone recognize which option is best solution?

  • Missing MSI files SQL Server 2008 R2 SP3

    I have hit an issue while installing Service Pack 3 for SQL Server 2008 R2. The existing version is
    10.50.4295.0 (SP2+CU9)
     When running the SP3 file the following error occurs
    SQL Server Setup has encountered the following error:
    The cached MSI file 'C:\Windows\Installer\91a4f43.msi' is missing.
    Its original file is 'sql_engine_core_inst.msi' and it was installed for product 'SQL Server 2008 R2 SP2 Database Engine Services' from '\\ServerName\Share$\SQL\SQL105\ENT\x64\setup\sql_engine_core_inst_msi\', version '10.52.4000.0', language 'ENU'.
    To resolve this problem, recover the missing file from the installation media and start setup again.
    For more information about how to resolve this problem, see 'Steps to restore the missing Windows Installer cache files' (http://go.microsoft.com/fwlink/?LinkId=144387) in the Microsoft Knowledge Base.
    Error code 0x84B20002.
    The next I tried to remove CU9 before applying SP3. The following error occurred when CU 9 was attempted to be removed.
    The cached patch file 'C:Windows\Installer\483c7040.msp' is missing.

    Hello Alberto,
    I tried this link
    http://support.microsoft.com/kb/969052
    Using the VB script FindSQLInstall I tried getting some details about the missing MSI files. Just sharing the details incase you may have some details or better insight on what it says.
    !!!! C:\Windows\Installer\91a4f43.msi DOES NOT exist in the Installer cache. !!!!
          Action needed, recreate or re-establish path to the directory:
    \\Servername\Sharename$\SQL\SQL105\ENT\x64\setup\sql_engine_core_inst_msi\then rerun this script to update installer cache and results
         The path on the line above must exist at the root location to resolve
         this problem with your msi/msp file not being found or corrupted,
         In some cases you may need to manually copy the missing file or manually
         replace the problem file overwriting it is exist:
          Copy "\\Servername\ShareName$\SQL\SQL105\ENT\x64\setup\sql_engine_core_inst_msi\sql_engine_core_inst.msi" C:\Windows\Installer\91a4f43.msi
     It points to a location that doesn’t exist in the central server (servername) from where usually the installation media is present. The folder structures were re-arranged and the path mentioned (\\Servername\ShareName$\SQL\SQL105\ENT\x64\setup\sql_engine_core_inst_msi)
    is no longer there.
    Now from where do I copy this particular .MSI file? I've tried using search option but I'm unable to find it.
    One more update is that I was successfully able to do the SP3 upgrade on another server which was SQL Server 2008R2 SP2 (No CU on it)
    Hi Jayakrishna,
    After your above steps, please put the SQL Server setup media on the same path
    \\Servername\Sharename$\SQL, then run the VB script again and it will recreate the MSI file on the path C:\Windows\Installer with the name “91a4f43.msi“.
    If the error still occurs, then you can manually restore the missing MSI file following the steps of Procedure 2 in this article:
    http://support.microsoft.com/kb/969052 .
    In addition, we recommend you use local copy of media to install SQL Server 2008 R2 SP3.
    Thanks,
    Lydia Zhang

  • IS there a way to view all the queries executed against a table in sql server 2008 R2

    Hi,
    We would like  to see if a table is getting updated or deleted from external source. Hence we want to know how to see list of queries run against a particular table in sql server 2008 R2.
    Thanks,
    Preetha

    Hi,
    We would like  to see if a table is getting updated or deleted from external source. Hence we want to know how to see list of queries run against a particular table in sql server 2008 R2.
    Thanks,
    Preetha
    Audit, Trigger and custom profiler can be used.
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Trying to zip / compress a file in Windows Server 2008 & SQL Server 2008 R2 server

    Hi,
    We are trying to zip / compress a xml file that has been created by retrieving data from SQL Server 2008 R2 database running on Windows Server 2008.
    To compress this file, we cannot use any external softwares like 7-zip or WinZip.
    So, we would like to know if there is any windows default compression tool that works on command line to compress the file?
    As this is a live server we cannot apply any other softwares.
    Please suggest any ways to do it in Windows Server 2008 machine.
    Thanks & Regards
    Kalyan

    Hello Kaylan,
    and for uncompress what can I use
    This is a way to do it in SSIS
    http://sqlblog.com/blogs/jorg_klein/archive/2009/08/27/ssis-unpack-a-zip-file-with-the-script-task.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Moving an existing SQL Express Database to SQL Server 2008 (included in SBS2011) help!

    I have software that uses SQL 2005 right now, but the database is close the max size (4 GB). I have SBS2011 installed and it includes SQL 2008 and SQL 2008R2.  I want to move the database to the 2008 version that can that can handle larger databases.
    I'm not an SQL expert, but have some experience with it.  What I need are some directions on how to make this change without causing any problems with the system, including setting up the SQL server so it will have all the same settings as the old one.
    This is a practice management software.
    Thanks in advance for any help.  Harvey

    Hi,
    I think you can upgrade SQL Server 2005 to later version of SQL Server rather than moving the existing database to another SQL Server instance.
    Upgrade SQL Server 2005 SP2 Express to SQL Server 2008 R2 Express and SQL Server 2005 SP4 SQL Server 2012 Express. And you will have maximum 10 GB per database.
    Make sure that your operation system is compatible with SQL Server
     version which you want to upgrade to. For more information, see:
    http://msdn.microsoft.com/en-us/library/ms143506(v=sql.105).aspx#SSE_x64
    It is possible to backup and restore the database on another instance and modify the database path in the software.
    You need to test it in your test environment first before making changes in the production environment.
    In addition, you need to consult with the software developer and see if there is any potential issue.
    Upgrade to SQL Server 2012 Using the Installation Wizard (Setup)
    http://technet.microsoft.com/en-us/library/ms144267.aspx
    Back Up and Restore of SQL Server Databases
    http://technet.microsoft.com/en-us/library/ms187048.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

Maybe you are looking for

  • Is there a better way to sort mail folders?

    Is there a way to sort mail folders the way I want them rather than alphabetical?

  • Forms 6i, ORA-06508, and Character Functions

    Hi, We have an installation of Forms 6i, and when we run our form(s), an ORA-06508 error is received. The problem has been drilled down to pl/sql usage of built-in character functions such as SUBSTR, INSTR, etc. For example: myvar := substr(myotherva

  • AIS Alias Names

    Is it possible to concatenate two columns within AIS to create an alias name?<BR><BR><BR><BR>Jim

  • Syncing not working correctly

    For the past few days, my syncing has been on the fritz. It is not syncing really at all. It will only go through 4 steps instead of the 5 and when I purchased a new song (on my iphone 5 itself) it doesn't even show in my recently added, which I have

  • Why can't I update iOS 7.0.6 from my iPhone 5?

    Why can't I update iOS 7.0.6 from my iPhone 5? It keeps showing the message of an error occurred downloading. I need help.