I want to enumerate all databases used by my SharePoint 2007 system. The stsadm -o enumcontentdbs only handles content db's but I also want the names of the SSP, Search and any other databases used by in the system.
Thanks
|
I want to enumerate all databases used by my SharePoint 2007 system. The stsadm -o enumcontentdbs only handles content db's but I also want the names of the SSP, Search and any other databases used by in the system. Thanks |
||||
|
|
|
Found the answer myself. See my blog entry. http://www.theodells.org/theodells/blog/2010/07/locating-all-sharepoint-2007-databases/ |
|||
|
|
You could use this SQL query on the server, but it will of course get everything, not just SharePoint databases. SELECT name FROM sys.databases |
|||||||
|
|
I've used this before now: http://spsfarmreport.codeplex.com/ Gives you a good report of the farm and will give you apps and associated content DB |
|||
|
|