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 Management Studio VS SQL Server in Visual Studio 2019

SQL Server Management Studio VS SQL Server in Visual Studio 2019

Scheduled Pinned Locked Moved Database
databasevisual-studioquestioncsharpsql-server
7 Posts 4 Posters 2 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.
  • E Offline
    E Offline
    Ebrahimaw
    wrote on last edited by
    #1

    Hey What is the difference between SQL Server Management Studio VS SQL Server in Visual Studio 2019? Can I use it in Visual Studio 2019 for Large database? Thank you so much :)

    L Z 3 Replies Last reply
    0
    • E Ebrahimaw

      Hey What is the difference between SQL Server Management Studio VS SQL Server in Visual Studio 2019? Can I use it in Visual Studio 2019 for Large database? Thank you so much :)

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      SQL Server Management Studio (SSMS) - SQL Server | Microsoft Docs[^]. SQL Server 2019 | Microsoft[^].

      1 Reply Last reply
      0
      • E Ebrahimaw

        Hey What is the difference between SQL Server Management Studio VS SQL Server in Visual Studio 2019? Can I use it in Visual Studio 2019 for Large database? Thank you so much :)

        Z Offline
        Z Offline
        ZurdoDev
        wrote on last edited by
        #3

        Ebrahimaw wrote:

        SQL Server in Visual Studio 2019

        What does that mean? I don't have VS2019 but I doubt there is a sql server in it.

        Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

        M 1 Reply Last reply
        0
        • Z ZurdoDev

          Ebrahimaw wrote:

          SQL Server in Visual Studio 2019

          What does that mean? I don't have VS2019 but I doubt there is a sql server in it.

          Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

          M Offline
          M Offline
          Mycroft Holmes
          wrote on last edited by
          #4

          When you fire up SSMS it mentions Visual Studio which has probably confused the OP.

          Never underestimate the power of human stupidity - RAH I'm old. I know stuff - JSOP

          1 Reply Last reply
          0
          • E Ebrahimaw

            Hey What is the difference between SQL Server Management Studio VS SQL Server in Visual Studio 2019? Can I use it in Visual Studio 2019 for Large database? Thank you so much :)

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #5

            Ebrahimaw wrote:

            SQL Server Management Studio

            (MS)SQLSMS* is an IDE that specifically targets SQL Server. Meaning it is an application that helps you with managing (editing) your databases. It is not a database-server in itself, it is just the interface you use to manage the SQL database-server. It has some nice advanced features that can help you optimize queries. Simply put, you want to install it and get to know it.

            Ebrahimaw wrote:

            SQL Server in Visual Studio 2019?

            VS2019 is an IDE that targets programming languages, not databases. It still has an impressive UI to administer databases to help in development, but should not be your primary interface; MSSQLSMS is free, so no reason not to have it.

            Ebrahimaw wrote:

            Can I use it in Visual Studio 2019 for Large database

            Yes. Very large even. SQL Server is a database-server, which can be used without having Visual Studio. The free (Express) version limits you to 1Gb of memory usage and databases limited to 10Gb. You are allowed to have multiple databases that go up to 10Gb each though. You can have multiple users acces the database at the same time, without (much) problems. The Express version also supports Full-Text search, which means you can search the all text-columns for a specific text, with a lower impact than a normal query would have. If you have a larger customer, you want the full verion of SQL Server; it performs better since it can utilize more memory and more CPU-cores. If you are having trouble on deciding when it is time for that, as a rule of thumb, you want it as soon as you are buying good hardware specifically for the database-server.

            Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

            E 1 Reply Last reply
            0
            • L Lost User

              Ebrahimaw wrote:

              SQL Server Management Studio

              (MS)SQLSMS* is an IDE that specifically targets SQL Server. Meaning it is an application that helps you with managing (editing) your databases. It is not a database-server in itself, it is just the interface you use to manage the SQL database-server. It has some nice advanced features that can help you optimize queries. Simply put, you want to install it and get to know it.

              Ebrahimaw wrote:

              SQL Server in Visual Studio 2019?

              VS2019 is an IDE that targets programming languages, not databases. It still has an impressive UI to administer databases to help in development, but should not be your primary interface; MSSQLSMS is free, so no reason not to have it.

              Ebrahimaw wrote:

              Can I use it in Visual Studio 2019 for Large database

              Yes. Very large even. SQL Server is a database-server, which can be used without having Visual Studio. The free (Express) version limits you to 1Gb of memory usage and databases limited to 10Gb. You are allowed to have multiple databases that go up to 10Gb each though. You can have multiple users acces the database at the same time, without (much) problems. The Express version also supports Full-Text search, which means you can search the all text-columns for a specific text, with a lower impact than a normal query would have. If you have a larger customer, you want the full verion of SQL Server; it performs better since it can utilize more memory and more CPU-cores. If you are having trouble on deciding when it is time for that, as a rule of thumb, you want it as soon as you are buying good hardware specifically for the database-server.

              Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

              E Offline
              E Offline
              Ebrahimaw
              wrote on last edited by
              #6

              Thank you so much :)

              L 1 Reply Last reply
              0
              • E Ebrahimaw

                Thank you so much :)

                L Offline
                L Offline
                Lost User
                wrote on last edited by
                #7

                No problem :)

                Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

                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