Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 20th, 2006, 03:35 PM
Friend of Wrox
 
Join Date: Jun 2004
Posts: 245
Thanks: 0
Thanked 0 Times in 0 Posts
Default Select all Database Names

I have found a way to get all table names from all database but I can't find the script to retrieve all Database Names from SQL Server 2000.

Help

 
Old March 20th, 2006, 03:43 PM
Authorized User
 
Join Date: Sep 2005
Posts: 95
Thanks: 0
Thanked 0 Times in 0 Posts
Default

here is one way

SELECT CATALOG_NAME AS DataBaseName
FROM INFORMATION_SCHEMA.SCHEMATA

and another

SELECT name AS DATABASENAME
FROM master.dbo.sysdatabases


------------------------------------------ http://sqlservercode.blogspot.com/





Similar Threads
Thread Thread Starter Forum Replies Last Post
select from database mike7510uk ASP.NET 2.0 Basics 0 December 14th, 2006 06:45 AM
select wildcard element names groovepapa XSLT 4 September 1st, 2004 08:12 AM
Database names as variables bukky Classic ASP Databases 0 March 15th, 2004 04:05 PM
Dynamically pulling table names from a database conundrum Access ASP 2 December 21st, 2003 07:49 PM
Database Theme Names rosalynb SQL Server 2000 0 September 17th, 2003 05:24 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.