﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / General / SQL Server 7,2000  / Documention / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Fri, 24 May 2013 04:16:54 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>J,Can you provide us the column list of the spreadsheet system you currently are using?In my environment, I use a mix of built-in procedures like sp_helpdb and the custom script (as well as others) that I posted above to populate 2 Excel spreadsheets.  One tracks at the server/instance level, and the second one at the database level.Each document gets a review at least once a month, or when a new database server is being brought online, when a new SQL patch is released. etc.These spreadsheets come in real handy when my boss gives asks me to get him numbers for his next meeting (oh yeah, it is in 5 minutes) and wants a count of how many SQL 2000 instances we have on Windows 2003 or how many SQL Server 2005 databases we have currently running on SQL Server Service Pack 2.I would be interested in comparing the information I track with you as well as others.</description><pubDate>Fri, 30 Nov 2007 09:26:23 GMT</pubDate><dc:creator>Key DBA</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>Documenting is hard, often because there's no good place to keep documentation handy. I prefer ER diagrams, but you really need some snippets from Word or someplace handy to note what columns mean. And it should be something that links together related columns.I've tried Word, Excel, Visio, ER/Studio, ErWin, HTML and more over the years. The only thing that's ever worked well for documenting the database is my brain loaded with experience in working with the tables.</description><pubDate>Fri, 30 Nov 2007 08:58:52 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>Jpotucek,C'mon... I'm trying to help... I need the answers to the questions I asked above so we can avoid the problems you're having...</description><pubDate>Fri, 30 Nov 2007 08:48:39 GMT</pubDate><dc:creator>Jeff Moden</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>J,I use this to keep track of the Version and Edition on all of our SQL Server systems.Written for use in both SQL Server 2000 and SQL Server 2005!Happy Coding!-- Show information about all SQL Server Databases in a given instance.-- SQL Server 2000 USE masterGOselect-- getdate() as 'Time_Data_Gathered'--,cast(serverproperty('ServerName') as varchar(20)) as [Server Name],Case when serverproperty('InstanceName') is null       then '(default)'       else serverproperty('InstanceName')        end as [Instance Name],name as [Database Name],cast(serverproperty('productversion') as varchar(20)) as [Product Version],cast(serverproperty('productlevel') as varchar(20)) as [Product Level],cast(serverproperty('edition')  as varchar(40)) as [Edition]FROM dbo.sysdatabases-- SQL Server 2005USE masterGOselect-- getdate() as 'Time_Data_Gathered'--,cast(serverproperty('ServerName') as varchar(20)) as [Server Name],Case when serverproperty('InstanceName') is null       then '(default)'       else serverproperty('InstanceName')        end as [Instance Name],name as [Database Name],cast(serverproperty('productversion') as varchar(20)) as [Product Version],cast(serverproperty('productlevel') as varchar(20)) as [Product Level],cast(serverproperty('edition')  as varchar(40)) as [Edition]FROM sys.databases</description><pubDate>Fri, 30 Nov 2007 07:00:39 GMT</pubDate><dc:creator>Key DBA</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>Trying to figure out what you need and this seems simple to you because you know what you want... but we don't...You say the copy/paste into Excel is tedious... what is it about it that's tedious?  Do you need to split the Status column or are you trying to paste the output exactly like it is or what?Are you using the grid mode for the copy paste or the text mode?Please help us help you... be a bit more descriptive as to what you'd like to get from sp_HelpDB into Excel.</description><pubDate>Thu, 29 Nov 2007 08:09:59 GMT</pubDate><dc:creator>Jeff Moden</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>Yes, I have been using sp_helpdb databasename.   this gives me DB name, logical DB name, physical file locations, size, owner..... From there I am able to cut and paste what I need into excel but it's tedious...  </description><pubDate>Thu, 29 Nov 2007 04:33:41 GMT</pubDate><dc:creator>Jpotucek</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>[quote][b]Jpotucek (11/28/2007)[/b][hr]trying to come up with a few commands that I can use to query my SQL Server 2000 Instances and Document my Databases - preferably Excel exec sp_helpdb comes to mind..   can anyone help me further?[/quote]Does sp_HelpDB give you all of the information you want?</description><pubDate>Wed, 28 Nov 2007 14:03:44 GMT</pubDate><dc:creator>Jeff Moden</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>Thanks but I got some crazy HTML output that really isn't very usefull to me..</description><pubDate>Wed, 28 Nov 2007 07:47:47 GMT</pubDate><dc:creator>Jpotucek</dc:creator></item><item><title>RE: Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>This script is pretty good.[url]http://www.sqlservercentral.com/scripts/Miscellaneous/31574/[/url]</description><pubDate>Wed, 28 Nov 2007 07:17:33 GMT</pubDate><dc:creator>allen davidson</dc:creator></item><item><title>Documention</title><link>http://www.sqlservercentral.com/Forums/Topic426854-9-1.aspx</link><description>trying to come up with a few commands that I can use to query my SQL Server 2000 Instances and Document my Databases - preferably Excel exec sp_helpdb comes to mind..   can anyone help me further?</description><pubDate>Wed, 28 Nov 2007 06:50:56 GMT</pubDate><dc:creator>Jpotucek</dc:creator></item></channel></rss>