About 12,700 results
Open links in new tab
  1. 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 …

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

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

  4. Is there a limit size for a SQL Server database? - Stack Overflow

    Jul 31, 2018 · A database is composed of files, which store the data. A database can grow as large as the memory available which stores it.

  5. Import / Export database with SQL Server Server Management …

    Copied database.mdf and database_log.ldf from the above mentioned folder (SQL 2012), then transferred those 2 files to a new server with different version (SQL Express 2014) of SQL …

  6. How do I search an SQL Server database for a string?

    Dec 8, 2019 · I need to search an SQL Server database for all mentions of a specific string. For example, I would like to search all tables, views, functions, stored procedures, ... for string …

  7. List of all index & index columns in SQL Server DB

    Apr 20, 2009 · How do I get a list of all index & index columns in SQL Server 2005+? The closest I could get is: select s.name, t.name, i.name, c.name from sys.tables t inner join …

  8. Select SQL Server database size - Stack Overflow

    Aug 2, 2013 · There are already a lot of great answers here but it's worth mentioning a simple and quick way to get the SQL Server Database size with SQL Server Management Studio (SSMS) …

  9. SQL Server: how do I export entire database? - Stack Overflow

    I need to export database from one server and import it into another server. How do I export the entire database to a file, or two files mdf, ldf (either option is fine) How do I import it into a new

  10. How to find specific column in SQL Server database?

    Jul 13, 2017 · Is there any way or tool in SQL Server 2016 to find a column in the entire database based on the name? Example: find ProductNumber and it shows you all the table(s) that have it