About 190,000 results
Open links in new tab
  1. List the queries running on SQL Server - Stack Overflow

    Is there a way to list the queries that are currently running on MS SQL Server (either through the Enterprise Manager or SQL) and/or who's connected? I think I've got a very long running …

  2. How do I see active SQL Server connections? - Stack Overflow

    Jan 21, 2019 · I am using SQL Server 2008 Enterprise. I want to see any active SQL Server connections, and the related information of all the connections, like from which IP address, …

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

    I have this query with MySQL: select * from table1 LIMIT 10,20 How can I do this with SQL Server?

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

    Aug 22, 2022 · 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 …

  5. How to connect to a local database in SQL Server Management …

    Apr 6, 2017 · 96 I have downloaded the SQL Server Management Studio (SSMS) 2016 to recover a huge .bak file which is an old backup of a database. But first of all I need to connect to a DB …

  6. How to find SQL Server running port? - Stack Overflow

    Yes I read this How to find the port for MS SQL Server 2008? no luck. telnet 1433 returns connection failed, so I must specify other port. I tried to use netstat -abn but I don't see sqlservr...

  7. 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 …

  8. sql server - Get size of all tables in database - Stack Overflow

    Oct 25, 2011 · Here is another method: using SQL Server Management Studio, in Object Explorer, go to your database and select Tables Then open the Object Explorer Details (either …

  9. How to get a list of all the MS SQL Server instances on the local ...

    It return list of system services for every MS SQL instances. But it return only local instances, on current machine, for remote server, on remote machine, use sqlcmd -L.

  10. Create Local SQL Server database - Stack Overflow

    Apr 11, 2017 · After installation you need to connect to Server Name : localhost to start using the local instance of SQL Server. Once you are connected to the local instance, right click on …