Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. Database
  4. SQL Server 2005 Express and MSDE

SQL Server 2005 Express and MSDE

Scheduled Pinned Locked Moved Database
databasehelpcsharpsql-serverdotnet
5 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Aisha Ikram
    wrote on last edited by
    #1

    Would an application developed in .NET Framework 1.1 and using MSDE be able to work with SQL Server 2005 Express edition which uses .NET 2.0?? Also MSDE is not supported in Vista, does that mean applications using MSDE previously (and .NET 1.1) will not work on Vista? Also i have restored a DB with some existing users in SQL Express .Now i select Security>Users and try to delete the existing user but it gives me a strange exception like: TITLE: Microsoft SQL Server Management Studio ------------------------------ Drop failed for User 'test_user'. (Microsoft.SqlServer.Smo) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Drop+User&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo) ------------------------------ The database principal owns a schema in the database, and cannot be dropped. (Microsoft SQL Server, Error: 15138) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=09.00.1399&EvtSrc=MSSQLServer&EvtID=15138&LinkId=20476 ------------------------------ Any idea?

    @!$(-)@ $@r£r@Z

    O 1 Reply Last reply
    0
    • A Aisha Ikram

      Would an application developed in .NET Framework 1.1 and using MSDE be able to work with SQL Server 2005 Express edition which uses .NET 2.0?? Also MSDE is not supported in Vista, does that mean applications using MSDE previously (and .NET 1.1) will not work on Vista? Also i have restored a DB with some existing users in SQL Express .Now i select Security>Users and try to delete the existing user but it gives me a strange exception like: TITLE: Microsoft SQL Server Management Studio ------------------------------ Drop failed for User 'test_user'. (Microsoft.SqlServer.Smo) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Drop+User&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo) ------------------------------ The database principal owns a schema in the database, and cannot be dropped. (Microsoft SQL Server, Error: 15138) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=09.00.1399&EvtSrc=MSSQLServer&EvtID=15138&LinkId=20476 ------------------------------ Any idea?

      @!$(-)@ $@r£r@Z

      O Offline
      O Offline
      originSH
      wrote on last edited by
      #2

      Aisha Ikram wrote:

      Would an application developed in .NET Framework 1.1 and using MSDE be able to work with SQL Server 2005 Express edition which uses .NET 2.0??

      Yes, 2005 uses .Net 2.0 for CLR Stored Procs and stuff like that. What your application uses has nothing to do with it :)

      Aisha Ikram wrote:

      Also MSDE is not supported in Vista, does that mean applications using MSDE previously (and .NET 1.1) will not work on Vista?

      No it means the MSDE won't run under Vista, your application can run on Vista and connect to the MSDE running on a different machine.

      A 1 Reply Last reply
      0
      • O originSH

        Aisha Ikram wrote:

        Would an application developed in .NET Framework 1.1 and using MSDE be able to work with SQL Server 2005 Express edition which uses .NET 2.0??

        Yes, 2005 uses .Net 2.0 for CLR Stored Procs and stuff like that. What your application uses has nothing to do with it :)

        Aisha Ikram wrote:

        Also MSDE is not supported in Vista, does that mean applications using MSDE previously (and .NET 1.1) will not work on Vista?

        No it means the MSDE won't run under Vista, your application can run on Vista and connect to the MSDE running on a different machine.

        A Offline
        A Offline
        Aisha Ikram
        wrote on last edited by
        #3

        Thanks for the response.

        originSH wrote:

        No it means the MSDE won't run under Vista, your application can run on Vista and connect to the MSDE running on a different machine.

        Yes, I understand this but MSDE is meant to be used locally/personally. I don't understand why Vista not supporting this ? is there any way to make that work on Vista?

        @!$(-)@ $@r£r@Z

        O 1 Reply Last reply
        0
        • A Aisha Ikram

          Thanks for the response.

          originSH wrote:

          No it means the MSDE won't run under Vista, your application can run on Vista and connect to the MSDE running on a different machine.

          Yes, I understand this but MSDE is meant to be used locally/personally. I don't understand why Vista not supporting this ? is there any way to make that work on Vista?

          @!$(-)@ $@r£r@Z

          O Offline
          O Offline
          originSH
          wrote on last edited by
          #4

          MSDE is not supported on vista because it is free and Sql Server 2005 Express has taken over from it. Theres no point putting more effort into MSDE when 2005 Express does everything that MSDE does and more. Your application should work perfectly well with 2005 Express so you should be able to just do a straight swap. (Note: well almost the only thing that might break is if you use case insensative passwords. Passwords are now case sensative in 2005)

          A 1 Reply Last reply
          0
          • O originSH

            MSDE is not supported on vista because it is free and Sql Server 2005 Express has taken over from it. Theres no point putting more effort into MSDE when 2005 Express does everything that MSDE does and more. Your application should work perfectly well with 2005 Express so you should be able to just do a straight swap. (Note: well almost the only thing that might break is if you use case insensative passwords. Passwords are now case sensative in 2005)

            A Offline
            A Offline
            Aisha Ikram
            wrote on last edited by
            #5

            thanks a lot for your response. Any idea about my second question that why i am geeting this message: Also i have restored a DB with some existing users in SQL Express .Now i select Security>Users and try to delete the existing user but it gives me a strange exception like: TITLE: Microsoft SQL Server Management Studio ------------------------------ Drop failed for User 'test_user'. (Microsoft.SqlServer.Smo) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Drop+User&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo) ------------------------------ The database principal owns a schema in the database, and cannot be dropped. (Microsoft SQL Server, Error: 15138) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=09.00.1399&EvtSrc=MSSQLServer&EvtID=15138&LinkId=20476 ------------------------------

            @!$(-)@ $@r£r@Z

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups