About 274,000 results
Open links in new tab
  1. Get list of databases from SQL Server - Stack Overflow

    Sep 29, 2008 · How can I get the list of available databases on a SQL Server instance? I'm planning to make a list of them in a combo box in VB.NET.

  2. sql server - How can I get a list of all of the user databases via t ...

    21 I want to get a list of all of the user databases from an mssql server instance. What's the best way to do this? I know I can select from sys.databases, but I don't see any way to filter out system …

  3. Listing information about all database files in SQL Server

    Is it possible to list information about the files (MDF/LDF) of all databases on an SQL Server? I'd like to get a list showing which database is using what files on the local disk. What I tried:...

  4. t sql - How can I get all the database names in a sql server instance ...

    May 25, 2010 · How can I get all the database names in a sql server instance using tsql? Asked 15 years, 6 months ago Modified 3 years, 2 months ago Viewed 109k times

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

    Aug 13, 2011 · 289 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 …

  6. sql server - SqlServer 08: Query to list all databases in an instance ...

    Jan 18, 2010 · Replace by -U username -P password for SQL Server authentication. -S SERVER\INSTANCE: The instance of SQL Server to which to connect. If you don't know the name …

  7. How to get list of database from SQL Server? - Stack Overflow

    As I know I can get the databases from SQL Server using sys.databases, however it's listing offline databases also. I keep checking for a flag which shows database online/offline status.

  8. sql server - How to get the list of all database users - Stack Overflow

    Sep 18, 2013 · 108 I am going to get the list of all users, including Windows users and 'sa', who have access to a particular database in MS SQL Server.

  9. How do I list all tables in all databases in SQL Server in a single ...

    I am looking for T-SQL code to list all tables in all databases in SQL Server (at least in SS2005 and SS2008; would be nice to also apply to SS2000). The catch, however, is that I would like a single

  10. sql server - Script to find the list of stored procedures in all ...

    Feb 25, 2016 · I need to pull out the list of stored procedures which are available in my instance. I used the following T-SQL statement to get the stored procedures in a given database. select * from …