About 7,850,000 results
Open links in new tab
  1. sql server - Database stuck in "Restoring" state - Stack Overflow

    I had this situation restoring a database to an SQL Server 2005 Standard Edition instance using Symantec Backup Exec 11d. After the restore job completed the database remained in a …

  2. How to fix Recovery Pending State in SQL Server Database?

    Sep 14, 2018 · One way to end up with a database that is in "Recovery Pending" state, is in the context of restoring a backup of an encrypted database (encrypted with TDE) on a new SQL …

  3. SQL Server query to find all permissions/access for all users in a …

    Aug 13, 2011 · I would like to write a query on a sql 2008 that will report all the users that have access to a specific database, or objects within the database such as tables, views, and stored …

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

    Oct 25, 2011 · 801 If you are using SQL Server Management Studio (SSMS), instead of running a query (which in my case returned duplicate rows) you can run a standard report. Right click on …

  5. database - Unable to connect to SQL Server instance remotely

    Mar 28, 2009 · Open SQL Server Management Studio; switch the " Server Type " to " Database Engine " and " Authentication " to " SQL Server Authentication ". The default login is " sa ", and …

  6. Get all table names of a particular database by SQL query?

    Oct 12, 2010 · SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE' But it is giving table names of all databases of a particular …

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

  8. How to Identify port number of SQL server - Stack Overflow

    Oct 18, 2013 · Open SQL Server Management Studio Connect to the database engine for which you need the port number Run the below query against the database select distinct …

  9. sql server - How do you find the last time a database was accessed ...

    Apr 2, 2009 · In SQL Server 2005, can you easily determine the last time someone queried a database.

  10. sql server - How do I get list of all tables in a database using TSQL ...

    What is the best way to get the names of all of the tables in a specific database on SQL Server?