About 4,740,000 results
Open links in new tab
  1. How to find server name of SQL Server Management Studio

    Apr 18, 2013 · I installed Microsoft SQL Server 2008. When I start SQL Server Management Studio (SSMS), I get the Connect to Server login window with a blank textbox for Server name. I have tried …

  2. Import CSV (flat file) using SQL Server Management Studio in existing ...

    Oct 5, 2021 · For Microsoft SQL Server Management Studio (SSMS) 19.1 Connect to server Select database (not table) Right click on database Select Tasks -> Import Data... * Select Flat File Source …

  3. How can I generate an entity–relationship (ER) diagram of a database ...

    I want to generate an ER diagram of an SQL database using Microsoft SQL Server Management Studio (SMSS). However, I don’t know how to. I found this technique online: Making ER Diagram from SQL …

  4. sql server - Index was outside the bounds of the Array. (Microsoft ...

    This is an issue if you are using 2008 management studio tools to connect to a SQL 2012 instance. I experience this a lot if I am working on one server with SQL 2008, and trying to quickly query another …

  5. Shortcuts to comment and uncomment SQL queries in SQL Server …

    Aug 22, 2022 · 9 To comment 3 SQL queries with shortcuts in SQL Server Management Studio (SSMS) as shown below, first, I dragged them, then pressed only one of CTRL+K or CTRL+C but I couldn't …

  6. How to implement LIMIT with SQL Server? - Stack Overflow

    Most people have to resort to capturing the result of the query in a temporary table with a IDENTITY primary key. Then query against the primary key column using a BETWEEN condition. If you're using …

  7. Removing the remembered login and password list in SQL Server ...

    I've checked the "Remember password" option in SQL Server Management Studio when logging in to the database. I need to clear the login and password information that I have used to prevent the next …

  8. sql server - Showing or hide line numbers at SSMS with shortcut ...

    Dec 28, 2021 · Show/Hide Line Numbers in SSMS Click Tools–>Options as highlighted in green color below. In Options Dialog Box, Under Text Editor, in Transact-SQL, General –>Line Numbers . …

  9. Create Local SQL Server database - Stack Overflow

    Apr 11, 2017 · I've used SQL Server Management Studio before, but only when the server is already up and running. I need to start from the beginning and create my own instance on the local computer. …

  10. Auto increment primary key in SQL Server Management Studio 2012

    Jun 12, 2012 · The MS SQL Server uses the IDENTITY keyword to perform an auto-increment feature. In the example above, the starting value for IDENTITY is 1, and it will increment by 1 for each new …