Application Virtualization TechCenter > Microsoft Application Virtualization (App-V) Forums > App-V 4.5 Beta (Retired) > Error 25019: The installation program could not creat the data store.. with SQL 2005 Full
Ask a questionAsk a question
 

AnswerError 25019: The installation program could not creat the data store.. with SQL 2005 Full

  • Friday, December 07, 2007 4:21 AMJPnm1 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

     

    Hi, installing the 4.5 beta, the Virtual Application server setup gets most of the way through before crashing with the 25019 error, i.e. created database but no tables etc.  This is with the full version of SQL 2005 and occurs with either an existing or new database.  The access rights of the WA user should be sufficent - any ideas or suggestions welcome!

Answers

  • Wednesday, January 16, 2008 5:50 PMSeanDo-MSFT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    Hi Joe,

     

    Since this is 4.5 Beta and the servers are NOT in production can you try running the following scripts. They are intended to address renaming issues of the SQL server.

     

    *No Gaurantees expressed or implied*

     

     

    Please have your DBA run the following 2 SQL commands:

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

    select @@servername   

    select SERVERPROPERTY('ServerName')

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

     

    If the “select @@ servername” and “select SERVERPROPERTY('ServerName')” return different names then please run the following

    Please have your DBA run the following script to fix it, and stop/start the sql service.

     

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

    sp_dropserver N'old_name', N'droplogins'

    go

    sp_addserver N'new_name', N'local'

    go

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

     

    *** Use the below at your own risk, we do not make any warranties ***

     

All Replies

  • Friday, December 07, 2007 10:03 AMpierre.eriksson Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

     

    On the server were you are installing the Softgridserver make sure that under regional everything is set to english.

    I am not sure this is the solution but give it a try.

     

    BR

     

    Pierre Eriksson

    Mindgrape

  • Friday, December 07, 2007 7:01 PMJPnm1 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Didn't change the errors.. (regional US english etc or UK)

     

    Thanks anyway-- anyone else seen this?

     

  • Thursday, January 03, 2008 6:07 PMJoe Barrett Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    I'm seeing the problem as well.  Windows Server 2003 with SQL Server 2005.  I haven't had any luck fixing it.  Looking at the install log, the error is:

    [2008-01-03 13:00:49] (5196:4352) SQL state: ``42000'', Native: 8197, Text: ``[Microsoft][ODBC SQL Server Driver][SQL Server]The object 'file_type_actions' does not exist or is invalid for this operation.''.
    [2008-01-03 13:00:49] (5196:4352) :Tongue TiedQLExecDirectW error 0xffffffff.
    [2008-01-03 13:00:49] (5196:4352) Failed to execute SQL ``/* ------------------------------------------------------------------------- *\
        Copyright (c) Microsoft Corporation.  All rights reserved.

        File: tr_d_file_type_actions.sql

        Author:  Shane C. Marshall
        Created: 04/15/2005

        Description:

            When an application is deleted, all the associated actions are removed
            by the cascade delete.  As a result, some file types are orphaned (no
            actions are left ***
    (log is truncated)
  • Friday, January 04, 2008 9:24 PMMichelle Foley _MSFT_ Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hi Joe,

     

    Is SQL on the same server as the VAS? Are there any SQL events logged in the Application log or the SQL logs that may give us more information to go on?

    Thanks,

    Michelle

  • Monday, January 07, 2008 3:16 PMJoe Barrett Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    The SQL server is on the same server as the attempted VAS install.  Here is the only log from the system Application log:

    Product: Microsoft System Center Virtual Application Server -- Error 25109.The installation program could not create the configuration data store. Please see the installation log file for more information.

    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    0000: 7b 35 46 37 38 36 32 44   {5F7862D
    0008: 41 2d 30 36 32 35 2d 34   A-0625-4
    0010: 32 31 41 2d 38 30 42 34   21A-80B4
    0018: 2d 30 31 36 41 30 46 36   -016A0F6
    0020: 38 46 45 44 31 7d         8FED1} 

    The SQL server logs start with "Starting up database 'SOFTGRID'" and the last entry is "Setting database option RECOVERY to RECMODEL_70BACKCOMP for database SOFTGRID" and then that's it.  No errors that would indicate why it failed.

    The only other piece of information I'd been able to find was the snippet I posted previously that I got from the VAS install log.

    Thanks,
    Joe
  • Monday, January 07, 2008 6:20 PMSeanDo-MSFT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hi Joe,

     

    I just saw something about this 25109 error come across. The solution that person found was in reinstalling SQL. Apparently their SQL server machine account had been "lost" from AD somehow.

     

    Brian is out on Paternity leave but he may be able to chime in when he returns.

     

    /Sean

     

     

     

  • Tuesday, January 08, 2008 5:11 PMJoe Barrett Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    I reinstalled SQL Server 2005 on the machine and still got the same error, although the install log looks different.  Is there an address that I can send the install log to to help out further?

    Thanks,
    Joe
  • Monday, January 14, 2008 4:33 PMSeanDo-MSFT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hi Joe,

    Can you post excerpts from the log here?

     

    /Sean

     

  • Wednesday, January 16, 2008 5:50 PMSeanDo-MSFT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    Hi Joe,

     

    Since this is 4.5 Beta and the servers are NOT in production can you try running the following scripts. They are intended to address renaming issues of the SQL server.

     

    *No Gaurantees expressed or implied*

     

     

    Please have your DBA run the following 2 SQL commands:

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

    select @@servername   

    select SERVERPROPERTY('ServerName')

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

     

    If the “select @@ servername” and “select SERVERPROPERTY('ServerName')” return different names then please run the following

    Please have your DBA run the following script to fix it, and stop/start the sql service.

     

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

    sp_dropserver N'old_name', N'droplogins'

    go

    sp_addserver N'new_name', N'local'

    go

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

     

    *** Use the below at your own risk, we do not make any warranties ***

     

  • Wednesday, March 19, 2008 5:29 PMGaylen _ Quilogy Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    I'm experiencing this exact same issue in our demonstration environment.  Orginally, I was installing to a remote instance of SQL Server 2005 SP2 and thought I could resolve the issue with a local instance of SQL Express SP2 running on the same machine as VAS (SoftGrid).

     

    The error remains in either case of a remote instance of SQL Server 2005 SP2 or SQL Express SP2 locally. 

     

    The SOFTGRID db is created but then it fails to configure the data store. 

     

    I have tried both suggestions in this thread - neither resolved the issue so far.

     

    Anyone out there resolve this issue yet? 

     

    Thx,
    Gaylen

  • Thursday, March 20, 2008 3:51 PMGaylen _ Quilogy Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    I found the resolution to this issue...at least in my case.

     

    The error message was misleading me to think it the issue was related to SQL Server.  Whereas the error was triggered by what security group I specified during the installation wizard.  I used the Built-In Administrators security group which is a problem when the server belongs to a domain I guess.  I had to specify the Domain Admins security group instead and the wizard completed the installation just as planned.

     

    Thanks to Jason Carreiro for assisting me on this issue!

     

    Gaylen

  • Friday, March 21, 2008 2:19 PMHuibK Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
     SeanDo-MSFT wrote:

    Hi Joe,

     

    Since this is 4.5 Beta and the servers are NOT in production can you try running the following scripts. They are intended to address renaming issues of the SQL server.

     

    *No Gaurantees expressed or implied*

     

     

    Please have your DBA run the following 2 SQL commands:

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

    select @@servername   

    select SERVERPROPERTY('ServerName')

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

     

    If the “select @@ servername” and “select SERVERPROPERTY('ServerName')” return different names then please run the following

    Please have your DBA run the following script to fix it, and stop/start the sql service.

     

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

    sp_dropserver N'old_name', N'droplogins'

    go

    sp_addserver N'new_name', N'local'

    go

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

     

    *** Use the below at your own risk, we do not make any warranties ***

     

     

    Encountered the Error 25019 and i resolved it with these queries on SQL. The server was renamed in the past. Thank you!!

  • Thursday, April 10, 2008 12:14 PMAlomari Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Dear All;

     

    I am stuck with this error since 2 days I tried all these possible solutions:

    • Using Domain Admins group
    • Enabling the SA login
    • Giving the Domain Admins group same rights as the SA account (and even more)
    • Using an existing database
    • Determining the SQL server
    • Trying the script ; the name in both cases was the same

     

    Unlike other users, it seems that the database was created successfully. I can see many tables. However; this error occurred just before the end of the setup process and prevent me from continuing.

     

    I am using a virtual machine (domain controller), windows 2003 server R2 with SP2 and SQL server 2005 Enterprise with SP2.

     

    Regards;

    Alomari

     

     

     

     

     

     

     

     

  • Monday, August 04, 2008 4:12 PMPKGGuru Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    I was also specifying the Adminstrators group and getting the 25019 error.  Changing it to Domain Admins resolved the issue.  Thanks for posting.

    Ben

  • Thursday, August 21, 2008 7:03 PMrallen_TheStandard Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    I too am receiving the 25109 error.  I originally was using the Administrators group, changed it to the Domain Admins group after reading this thread and still receive the error.  I am attempting to use a remove SQL 2005 SP2 server as the local 2005 Express SP2 SQL server will not appear as nor respond if I attempt to manually point the install to it.

     

    Anyone have an other ideas?

     

  • Saturday, August 23, 2008 12:11 PMrallen_TheStandard Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Well, it was my oversight as I was doing the same as a previous poster.  I too was pointing at the local Administrators group and not the Domain Administrators group, which is where the Admin is located I was logging in as.  I am now receiving a 25108 error:

     

    Log Name:      Application
    Source:        MsiInstaller
    Date:          8/23/2008 8:01:53 AM
    Event ID:      10005
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          DOMAIN\administrator
    Computer:      servername.domain.ext
    Description:
    Product: Microsoft System Center Application Virtualization Management Server -- Error 25108.The installation program could not connect to the configuration data store. Please see the installation log file for more information.

    I have matched the sa account and the domain Administrator in SQL.

     

    I am running Windows 2008 Enterprise, SQL 2005 Express SP2 (mixed mode) and attempting to install the Management Server for MS Application Virtualization 4.5Beta.

  • Friday, December 05, 2008 9:27 PMNorx Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

     

     

    Had similar error today. Found this old post, but was not able to find a sollution.

     

    Used the following then SG install.

    Admin (user account)   - administrator in domain.

    Domain Admins    - Choosed under install as group.

     

    On the SQL Server i added  admin and / Domain Admins with DB owner rights on the Master DB. .After that Install worked..

     

     

     

     

     

     

     

     

     

  • Tuesday, January 27, 2009 7:49 PMJim Kratzok - MSFT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    This appears to be realted to the server renaming issue mentioned above....

    We ran into this today and found a way around it. We think this was the cause of the problem:  

    We had previously had a 4.5 server, running in a VM, that we trashed - removed from domain - deleted....

    We built a new VM but used the same name as the original server.

    Every attempt to install the 4.5 Management Server on this new VM failed with the 25109 error.

    We got it to work after finding that the SQL server had retained the machine account for the original server (which was the server name with a $ appended to it) - remember this was the same name as the new server. There must be a GUID or SID associated with the old machine. I'm not a SQL guru, so maybe someone can confirm this.

    After we deleted the references to this machine name from the SQL server and tried installing the Management Server on our server VM, everything worked perfectly.

    Has anyone else seen this before?

    I don't know if this will help in all cases - but it's one more thing to look at...

     


    Jim
  • Thursday, May 28, 2009 3:00 PMWoody-IT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    pls assist i have same error - when you say 'changing it to Domain Admins' are you referring to the installation process of App-V mgt server or SQL?  I get the 25109 error when running App-V setup and haven't encountered the option to change the group for the install?
  • Thursday, September 17, 2009 7:44 AMMarc Weimann Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Hey guys,

    i´ve got the same error.

    1. step: Install with Group Administrators --> Error
    2. step: Install with Domain-Admins --> Error
    3. step: Remove the created database in the sql server
    4. step: Install with Domain-Admins --> No Error

    this works!

    Greetz

    Marc ;)