Can't Uninstall SQL Server 2005 Express Tools

I am attempting to install SQL Server 2008 Enterprise Trial and receive the follow error during installation.
"The SQL Server 2005 Express Tools are installed. To continue, remove the SQL Server 2005 Express Tools."
I have used Add or Remove programs to remove all components of SQL Server 2005 Express.  I have even reinstalled the Workstation Tools of SQL Server 2005 just so I could indiviually remove those tools, and then completly removed the SQL 2005 installation.
I have used regedit to search for any instance of SQL Server 2005, there is none.
There is still an entry for SQL Server Mangement Express in my all programs listing.  However trying to launch that program fails with errors, so it is partial still installed.
Can anyone tell me how to wipe out these last bits of SQL Server 2005 Express Tools?  I have tried everything I have found searching this forum to no avail.
Bill

Renaming or deleting the registry key was the only solution for me. It is not eough to rename a sub-key, I found you must rename or remove the key at the level of "\90"
HKLM\SOFTWARE\Microsoft\Microsoft SQL Server\90
I have not tried every permutation but these are the previous steps in order that were NOT helpful.
Sometimes it is good to know what has been tried and does not work, so you do not spend time in dead ends.
These do NOT work
1. resolution at this link did not work for me although it worked for that person
"rename registry key "
http://jasonfollas.com/blog/archive/2008/06/19/sql-server-2008-rc0-install-sql2005ssmsexpressfacet.aspx
rename key from: HKLM\Software\Microsoft\Microsoft SQL Server\90\Tools\ShellSEM
to: ShellSEM.old
(If I had renamed \90 it might have succeeded)
2. solution at this link did not work for me although it worked for that person
"changing the Regional Settings of my computer"
http://www.kodyaz.com/blogs/software_development_blog/archive/2008/02/22/840.aspx
3. reset.cmd
download and execute reset.cmd to reset many registry settings
Nope, no luck
4. download entire 2008 express package as an ISO file in the small chance any previous files were corrupted.
The ISO image was 744 meg, which can only be burned onto a double-layer disk.
Then I remembered I don't have a double-layer burner.
Duh.
5. removing 3rd party tools
- Remove SQL Server 2005 Express Tools
- Remove Red-Gate SQL Prompt if installed.
http://blog.crowe.co.nz/archive/2008/08/14/quotThe-SQL-Server-2005-Express-Tools-are-installed.-To-continue.aspx
mainly because neither were actually listed in add/remove programs, nor was Red Gate in the registry
(or redgate, red-gate, red_gate)
6. "Solving setup errors by using the SubInACL tool to repair file and registry permissions"
http://blogs.msdn.com/astebner/archive/2006/09/04/739820.aspx
7. rename the instance of SQL Server 2008 when installing
Nope.
8. With Add/remove programs, remove
- sql server 2005
- anything else that had in the title "sql server 2005"
- sql server system clr types (which sounded sort of like a 3-rd party tool and I had not used it in a year)
- remove folder
c:\program files\microsoft\Microsoft SQL Server90
Nope, no luck
10. With a Microsoft tool "Windows Install Clean Up" inspect any add/remove programs that were removed and absolutely remove their install logs
Nope.  So it was not due to any residual information from SQL Server 2005
11. With Add/remove programs, remove
- anything that has the title sql server 2008
and try to re-install, which did not work.
Finally found this thread and deleted the key and the installation succeeded.
It did not take 2 days, but almost.
This is a test, right? We have to navigate all the half-good information and actually succeed installing SQL Server 2008 then we earn the privilege to use it?  Yay!

Similar Messages

  • How to install mini SAP in MS SQL Server 2005 Express?

    Hi, is anyone know how to install the mini SAP v4.6 by using MS SQL Server 2005 Express?
    I get error when connecting to the Database at 88% of the installation.
    Please help. Thank you.

    I do not think you can install miniSAP 4.6D on MS SQL server 2005 express.
    1) you need the up todate patch to run on MSSE. If  SAP did the work to allow it to run, it would be patch 55+. As supplied it is patch zero.
    2) You can install on MSDE (MS SQL server 2000) patch 4. Look for my post INFO: Installing MiniSAP 4.6D on a named instance of MSDE (MS-SQL).
    3) after the install on MSDE SP4 you would have to change the database code page to 'BIN2' look for the OSS note.
    4) then you can start patching through to the most recent.
    The main reason you cannot do this is MS have changed the version key format to include '.6' as extra info which SAP cannot interprate, too many dots.
    MattG.
    Message was edited: add URL

  • MS SQL Server 2005 - Express Edition?

    I am interested to learn about database development for use
    with CF dynamic development. Before I make any significant
    financial investments I'm wondering if
    MS SQL Server 2005
    Express Edition is a reasonable place to start learning
    about db development.
    The Adobe ColdFusion 8 SYSTEMS SUPPORT MATRI X indicates
    compatibility with: MS SQL Server 7.0, 2000, 2005 - Does this
    compatibility include the FREE
    MS SQL Server 2005
    Express Edition ?
    Does it bother MS that folks may want to use their db
    solutions with a competitor's dynamic-development solutions? In
    other words, are the compatible db products fully functional with
    CF?

    personally i like ms sql as i have always used it and am
    familiar with it. I think mysql is the choice more for PHP
    developers and I think CF works better with MS SQL. A definate
    choice of preference though, i ilke the way i can install as many
    instances as I like.
    eg 1 for websites
    1 for applications etc
    there is merit in both but here in UK/Ireland mysql is not as
    popular as MS SQL.

  • JDBC with Sql Server 2005 Express

    Hi,
    I need some help on this. I have a java web application that ran on Tomcat using sql server 2000 db. In my configuration file the driver and server url were
    dbDriver="com.inet.tds.TdsDriver"
    dbServerUrl="jdbc:inetdae7:ECCOLWXPSDE:1433?database=eclife"
    Now this worked fine.
    Now i am using Sql server 2005 express, so i changed the configurations to the following
    dbDriver="com.inet.tds.TdsDriver"
    dbServerUrl="jdbc:inetdae7:ECCOLWXPSDE\\SQLEXPRESS:1433?
    database=eclife"
    But it doesnt work. It doesnt create a connection. Gives a No Connection Exception when trying to use
    connection = DriverManager.getConnection(dbServerUrl, username, password);
    Please tell me what else needs to be done. Or is there a problem connecting to express via jdbc and sprinta.
    Thankyou for your time
    Shirantha.

    Both my Tomcat and Express 2005 are in the local machine. There is not networking involved. What i want to know is what is the different thing that is to be done from sql server 2000 to express 2005.
    In sql server 2000, i have it like :
    theDbDriver=com.inet.tds.TdsDriver
    theDbServer=jdbc:inetdae7:ECCOLWXPSDE:1433?database=eclife
    and this works FINE
    Now i have uninstalled it and installed sql server 2005 EXPRESS, i have it like :
    theDbDriver=com.inet.tds.TdsDriver
    theDbServer=jdbc:inetdae7:ECCOLWXPSDE\\SQLEXPRESS:1433?database=eclife
    and connection is not happening.
    thanks for your time
    Shirantha

  • SQL Server 2008 R2 Std with SQL Server 2005 Express Subscriptions

    If we have SQL Server 2005 Express Merge Replication Subscriptions that synch to a SQL Server 2008 R2 Standard Edition. Do
    the Subscriptions still have same file size limitations even though they synch to a Proper Standard Version of SQL Server 2008?
    If so what are these limitations?
    What happens in the instance where by the server file becomes huge then the Subscriptions will not allow the data to replicate
    as the Express Subscription engine has a file size limitation - or does this not matter??

    You will get messages on your SQL Server Express  servers that the merge agent cannot write to the SQL Express database. These messages are difficult to debug as you don't get a warning you have exceeded the size limit on the subscriber.
    looking for a book on SQL Server 2008 Administration?
    http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search?
    http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941

  • UCCX 8.0 database integration with SQL Server 2005 Express

    Dear Support Community,
    I need to set up a script to read SQL Server 2005 Express records.
    The SQL Server 2005 Express is compatible with the UCCX 8.0?
    Let me know if you need more information

    Nope, SQL Express is not supported. Please refer the comp matrix here http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_compatibility/matrix/crscomtx.pdf
    Supported Enterprise DBs with UCCX 8.0 are
    Oracle 10g R2, Oracle 10g XE
    Sybase Adaptive Server 12
    IBM DB2 8.2
    MS SQL Server 2000
    MS SQL Server 2005
    MS SQL Server 2008
    HTH
    GP.
    Pls rate helpful posts !!

  • Connect to SQL Server 2005 Express MDF file

    Post Author: ims_user
    CA Forum: Data Connectivity and SQL
    Is it possible to connect directly to a SQL Server 2005 Express MDF file? Every time I select SQL Native Client it expects me to put in a server name etc, but there is no where to put in a file name or connection string. My application connects to this file directly using this in the connection string
    Data Source=.\SQLEXPRESS;AttachDbFilename=
    I now need to report on the data it contains.
    Many thanks.

    Post Author: ims_user
    CA Forum: Data Connectivity and SQL
    Is it possible to connect directly to a SQL Server 2005 Express MDF file? Every time I select SQL Native Client it expects me to put in a server name etc, but there is no where to put in a file name or connection string. My application connects to this file directly using this in the connection string
    Data Source=.\SQLEXPRESS;AttachDbFilename=
    I now need to report on the data it contains.
    Many thanks.

  • SQL Server 2005 Express Connection problems

    Hello,
    I have been trying for the past 2 hours to connect CFMX 8 to SQL Server 2005 Express on my windows7 laptop and it is throwing all kinds of errors.
    "Connection verification failed for data source: sqlHPV
    java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Error establishing socket. Unknown host: SQLExpress
    The root cause was that: java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Error establishing socket. Unknown host: SQLExpress"
    Please I need help.

    Try using an IP address instead of SQLExpress for the host name. If it is on the same box, use 127.0.0.1 and make sure SQLExpress in configured for IP communication.

  • Downloadin of microsoft SQL server 2005 express edition service pack 3 (KB955706) fail everytime

    i have been tryin to dl microsoft SQL server 2005 express edition service pack 3 (KB955706) for the past 2 months and always get the same prob. it always say error code:534- window has encounter an unkown error.
    i got a feelin tat it is due to the update file bein corrupted as my lenovo laptop T400 crashed once. But i m not sure. any suggestion? pls dun tell me to look at microsoft web help. totally not much help....

    Hello computer156,
    I meant your operating system, Vista or XP? I think you problem has more to do with MS than with you machine.
    Please check this site out.
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

  • Article - LabVIEW-Based Utility to Package & Deploy MS SQL Server 2005 Express Edition Databases

    Anthony Lukindo, the newest ExpressionFlow blog LabVIEW community author, has just published the first part of his two-part blog article
    LabVIEW-Based Utility to Package & Deploy MS SQL Server 2005 Express Edition Databases - Part 1
    Please check it out!
    Tomi Maila

    Anthony Lukindo, the newest ExpressionFlow blog LabVIEW community author, has just published the first part of his two-part blog article
    LabVIEW-Based Utility to Package & Deploy MS SQL Server 2005 Express Edition Databases - Part 2
    Please check it out!
    Tomi Maila

  • DG4MSQL v11.2.0.1 certified with Sql Server 2005 Express Edition?

    We are working on a proof of concept and need to use Oracle Database Gateway for MS Sql Server - DG4MSQL version 11.2 - on 64bit Linux to connect to a Windows database that is using SQL Server 2005 Express Edition. I reviewed the certification matrix for the database gateways and it lists that SQL Server 2005 is certified - but does not specify which editions.
    We are having some problems connecting to the SQL Server database and want to make sure that we should be able to connect to the express edition.
    Thanks.

    Yes, DG4MSQL 11 is certified with SQL Server Express Edition.

  • I can't uninstall sql server express

    I'm running Windows  7 64 bit and trying to install SQLEXPRWT_x64_ENU.exe  PLEASE HELP... AT LEAST HELP Me GE GET IT OFF MY SYSTEM.
    LOsing patience, and my mind.  Thanks in advance.
    Kay

    The version was in my email.  SQLEXPRWT_x64_ENU which is sql server 2014 with tool (management studio.) th exac error when ai try to start management studio is:/”An error has occurred while trying to access the license validation file. Please reinstall
    SQL Server to correct this file."/
    rIGHT NOw I'm FED UP.  I JUST WANT IT OFF MY system.  here's the txt file under log: this comes from detail.txt:
    NOTE: it wouldn't take the whole file. give's me s messaget that body must be 4 -60000 characters long
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature Full, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature Full from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value Full
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value ALL
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value ALL
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value ALL
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value ALL
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value ALL
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ALL, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ALL from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature SupportFiles, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature SupportFiles from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value SupportFiles
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature configuration state for feature ENG_SqlDom_REDIST, version
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get feature flag ConfigurationState for feature ENG_SqlDom_REDIST from machine name SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine SARA-2
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to open registry subkey SOFTWARE\Microsoft\Microsoft SQL Server\120\ConfigurationState
    (01) 2014-07-02 22:56:25 Slp: Sco: Attempting to get registry value ENG_SqlDom_REDIST
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_Cpu64: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_Cpu32: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1028: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1031: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1033: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1036: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1040: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1041: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1042: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1046: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1049: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_2052: NotInstalled
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:25 Slp: Package ID sql_engine_core_inst_loc_Cpu64_3082: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu64_1053: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1028: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1031: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1033: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1036: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1040: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1041: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1042: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1046: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1049: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_2052: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_3082: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\sql_engine_core_inst_loc_msi\x86\sql_engine_core_inst_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1053: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x64\sql_fulltext.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x64\sql_fulltext.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_fulltext_Cpu64: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x86\sql_fulltext.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x86\sql_fulltext.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_fulltext_Cpu32: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x64\sql_dq.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x64\sql_dq.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_Cpu64: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x86\sql_dq.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x86\sql_dq.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_Cpu32: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1028: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1031: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1033_ENU_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1033_ENU_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1033: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1036: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1040: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1041: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1042: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1046: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1049: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_2052: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_3082: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\x64\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu64_1053: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1028: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1031: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1033_ENU_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1033_ENU_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1033: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1036: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1040: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1041: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1042: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1046: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1049: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_2052: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_3082: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\x86\sql_dq_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_dq_loc_Cpu32_1053: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_Cpu64: Installed - Version: 12.0.2000.8
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1028: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1031: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1033: Installed - Version: 12.0.2000.8
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1036: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1040: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1041: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1042: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1046: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1049: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\2052_CHS_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_2052: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\3082_ESN_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_3082: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1053_SVE_LP\x64\setup\sql_engine_core_shared_loc_msi\x64\sql_engine_core_shared_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_engine_core_shared_loc_Cpu64_1053: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x64\sql_as.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x64\sql_as.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_Cpu64: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x86\sql_as.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\x64\setup\x86\sql_as.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_Cpu32: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1028_CHT_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1028: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1031_DEU_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1031: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1033_ENU_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1033_ENU_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1033: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1036_FRA_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1036: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1040_ITA_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1040: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1041_JPN_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1041: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1042_KOR_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1042: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1046_PTB_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Package ID sql_as_loc_Cpu64_1046: NotInstalled
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (01) 2014-07-02 22:56:26 Slp: Sco: File 'P:\SQLExtracted\1049_RUS_LP\x64\setup\x64\sql_as_loc.msi' does not exist
    (\_to open registry subkey SOFTWARE\Microsoft\NET Framework

  • SQL Server 2005 Express Edition on Lenovo x301

    Hello,
    We have purchased Lenovo X301 with Windows XP SP2. After the installation of MS SQL Server EE SP3 soon after reboot the laptop failed with BSOD. After some search in the forums and test we stopped VSS service and at least it worked. Now I wanted to use osql or sqlcmd tools for running scripts. Starting both of the tools the laptops stops with BSOD and restarts.
    Thanks for your hekp in advance 

    Hi Prahlad,
    Each time I install SQL Server Express I have the same problems.  Firstly, you can use the standard MS SQL JDBC Driver (I think Jeremy has given the link). 
    JDBC Driver:
    com.microsoft.sqlserver.jdbc.SQLServerDriver
    Server URL:
    jdbc:sqlserver://localhost:1433;databaseName=<DBName>
    You can also download the Microsoft SQL Server Studio Express client tool and test the connection to the database through this.
    It seems not all the protocols and services for MS SQL Express are enabled by default.  You need to go into the SQL Server Configuration Manager and enable the SQL Server Browser Service.  In the same Management Consol, select the protocols and make sure they're enabled and on the same ports MII is using.
    Hope that helps

  • I can't link to an I series (IBM AS400) server from my sql server 2014 server (64 bit) -- but yes can link on sql server 2005 (32 bit)

    I have an I series (IBM AS400) server linked "OK" to a sql 2005 sql server (32 big).  I copied the link script (but changed credentials) from the sql server 2005 link and attempted to run it in the sql server 2014 server (on win 7 64 
    bit).  There are no complaints from SSMS when I run the script, but when I try to query a table I get this error message:
    OLE DB provider "MSDASQL" for linked server "CWMPDTA" returned message "[Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed".
    OLE DB provider "MSDASQL" for linked server "CWMPDTA" returned message "[IBM][System i Access ODBC Driver]Key value in connection string too long.".
    Msg 7303, Level 16, State 1, Line 11
    Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "CWMPDTA".
    Here is the script (from the sql server 2005 (32 bit)) I ran on the sql server 2014 SSMS -- is there anything I need to change?  How can I get this I series server to link to my sql server 2014 server?
    USE [master]
    GO
    /****** Object: LinkedServer [CWMPDTA] Script Date: 9/25/2014 10:39:12 AM ******/
    EXEC master.dbo.sp_addlinkedserver @server = N'CWMPDTA', @srvproduct=N'cwmpdta', @provider=N'MSDASQL', @datasrc=N'iseries2', @provstr=N'Provider=IBMDA400.DataSource.1;Password=myPwrd;Persist Security Info=True;User ID=myID;Data Source=10.0.0.51;Initial Catalog=T9S', @catalog=N'T9S'
    /* For security reasons the linked server remote logins password is changed with ######## */
    EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'CWMPDTA',@useself=N'False',@locallogin=NULL,@rmtuser=N'myID',@rmtpassword='myPwrd'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'collation compatible', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'data access', @optvalue=N'true'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'dist', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'pub', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'rpc', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'rpc out', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'sub', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'connect timeout', @optvalue=N'0'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'collation name', @optvalue=null
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'lazy schema validation', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'query timeout', @optvalue=N'0'
    GO
    EXEC master.dbo.sp_serveroption @server=N'CWMPDTA', @optname=N'use remote collation', @optvalue=N'true'
    GO
    Rich P

    Thank you for this reply.  I went to the link and selected the option for DB2s and ran the install.  Then I started up SSMS.  I copied the same script as above, and it executed successfully.  But when I try to run a query against
    a table in a database on this linked sever -- I get this error message:
    OLE DB provider "MSDASQL" for linked server "CWMPDTA" returned message "[Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed".
    OLE DB provider "MSDASQL" for linked server "CWMPDTA" returned message "[IBM][System i Access ODBC Driver]Key value in connection string too long.".
    Msg 7303, Level 16, State 1, Line 8
    Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "CWMPDTA".
    Do I need to change the line containing -- @provider=N'MSDASQL',  maybe?
    this is the query I'm running:
    select TOP 10 * from CWMPDTA.T9S.CWMPDTA.INSKU
    The same exact query runs fine on the sql server 2005 linked server.  Is there something I need to configure?
    Rich P

  • Installation of SQL Server 2005 Express Edition with Mobile Sales 5.0 SP07

    Dear gurus,
    I have the following question for you: is it possible to run Mobile Sales 5.0 SP07 with SQL Server 2005 Exp Edition? The specifications that I have found for both applications are:
    - MOBILE CLIENT:
    Installation of Mobile Client with CRM release 5.0 requires the installation of Microsoft .NET framework 1.1. (OSS note 879643)
    - SQL Server Express Edition: Microsoft .NET framework 2. 0
    Has anyone installed it this way?
    Thank you in advance,
    Judit.

    Hello Judith,
    It is possible to have 5.0 SP07 Mobile Client installed on machine with SQL Server Express edition. For more information on this, you may refer the installation guide for 5.0 SP07 (Software Pre-requisites section, SQL Server versions). However, please note, you cannot install 5.0 SP07 Mobile Development Workstation on Express edition due to the large repository size.
    You may feel free to get back to me in case of any further concerns/comments.
    Thanks and Best Regards,
    Niranjan
    (Reward points will be appreciated if you feel this issue is resolved).
    N

Maybe you are looking for

  • Multiple Hard Drive Failures in 2 months on 2 MacBook Pros

    I have a mid-2009 13" MacBook Pro with a 320GB hard drive. In early Feb. the hard drive failed suddenly and would no longer mount. My Apple Store replaced it and I restored from a Time Machine backup. A week later the hard drive failed again. It was

  • How to Edit Flash Symbol in Photoshop?

    In Flash CS4, I have a graphic of a long filmstrip with 24 pix in it. I need to edit the symbol in photoshop (to put all new pix in), and then replace the current filmstrip with the new filmstrip. How? This is CS4, not CS5.

  • Unable to find the predefined content in the server

    Hai, I have just installed the IDES version of sap 4.6 in my computer After logging into the R/3 server generally we find predefined company codes , sales areas defined in there right. but i dont find any except that i have one company defined alread

  • System session variable USER

    Hi, i have setup-ed the action links and used the USER variable for the EBS secuirty context init block as this EBS_RESP_ID EBS_RESP_APPL_ID EBS_SEC_GROUP_ID EBS_RESP_NAME EBS_USER_ID EBS_EMPLOYEE_ID USER Now for the sso configuration in the RPD i ne

  • Paste in pages from inkscape

    when I copy a logo in inkscape, it does not paste in pages. What is being pasted is the last thing I copied in pages...How do I solve this problem? I need to use my new company logo on a letterhead.