Which database is installed MSDE or SQL Server Express?

  • When I use sql 2005 Management Studo to list the database servers are my company it returns a list containing servers with MSDE, Sql Server Express, Sql 2005, and sql 2008 installed. How can I tell which one of these database "servers" ia actually MSDE?

    TIA,

    barkingdog

  • I think that can be done only after checking their versions.

    MJ

  • Barkingdog (2/12/2009)


    When I use sql 2005 Management Studo to list the database servers are my company it returns a list containing servers with MSDE, Sql Server Express, Sql 2005, and sql 2008 installed. How can I tell which one of these database "servers" ia actually MSDE?

    TIA,

    barkingdog

    connect to each instance and execute

    select serverproperty('edition'), serverproperty('productversion')

    note the results down for each instance you connect to

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • Perry Whittle (2/12/2009)


    connect to each instance and execute

    select serverproperty('edition'), serverproperty('productversion')

    note the results down for each instance you connect to

    That works great. I wonder if this works for Compact Edition?

    ATBCharles Kincaid

  • Charles Kincaid (2/13/2009)


    Perry Whittle (2/12/2009)


    connect to each instance and execute

    select serverproperty('edition'), serverproperty('productversion')

    note the results down for each instance you connect to

    That works great. I wonder if this works for Compact Edition?

    i think windows embedded SQL is the same as compact so it should do. Give it a try 😉

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • Thanks to everyone for some great replies.

    Barkingdog

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply