开发者

SqlServer 08: Query to list all databases in an instance?

开发者 https://www.devze.com 2022-12-17 05:56 出处:网络
How do I list all the databases for a given sql server 08 ins开发者_运维问答tance using sqlcmd?sqlcmd -E -S SERVER\\INSTANCE -Q "sp_databases"

How do I list all the databases for a given sql server 08 ins开发者_运维问答tance using sqlcmd?


sqlcmd -E -S SERVER\INSTANCE -Q "sp_databases"

Notes:

  • -E: Use a trusted connection ("Windows authentication"). 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 of your instance, you can use sqlcmd -L to get a list.
  • -Q: The query to execute. The uppercase Q causes sqlcmd to exit after executing the query.


To elaborate with more detail for the sqlcmd newbie:

C:\> sqlcmd -S <the_server_name>
1> select name from sys.databases
2> go


EXEC sp_databases

or

SELECT NAME FROM sys.sysdatabases

or

EXEC sp_msForEachDB 'PRINT ''?''';


You can use sp_databases stored procedure.

0

精彩评论

暂无评论...
验证码 换一张
取 消