<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Inside Quest: SQL Server &#124; Blog &#187; Discovery Wizard</title>
	<atom:link href="http://questkb.com/category/sqlserver/discovery-wizard/feed/" rel="self" type="application/rss+xml" />
	<link>http://questkb.com</link>
	<description>Bringing you inside information about Quest Software&#039;s SQL Server products.</description>
	<lastBuildDate>Fri, 26 Feb 2010 16:23:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Discovery Wizard 3.0 and Toad for SQL Server 4.6 for LiteSpeed Licensing Compliance</title>
		<link>http://questkb.com/2009/12/01/using-discovery-wizard-3-0-and-toad-for-sql-server-4-6-for-litespeed-licensing-compliance/</link>
		<comments>http://questkb.com/2009/12/01/using-discovery-wizard-3-0-and-toad-for-sql-server-4-6-for-litespeed-licensing-compliance/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 21:10:34 +0000</pubDate>
		<dc:creator>David Gugick</dc:creator>
				<category><![CDATA[Discovery Wizard]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Toad for SQL Server]]></category>

		<guid isPermaLink="false">http://questkb.com/?p=154</guid>
		<description><![CDATA[Quest gets a lot of requests from our LiteSpeed customers asking how they can better understand what SQL Servers are on the network and where they have LiteSpeed deployed. Quest has two products that can help customers get answers to both of these questions:

Quest Discovery Wizard for SQL Server 3.0 Beta
Toad for SQL Server 4.6

Discovery [...]]]></description>
			<content:encoded><![CDATA[<p>Quest gets a lot of requests from our LiteSpeed customers asking how they can better understand what SQL Servers are on the network and where they have LiteSpeed deployed. Quest has two products that can help customers get answers to both of these questions:</p>
<ul>
<li><a href="http://www.quest.com/discovery-wizard-for-sql-server/" target="_blank">Quest Discovery Wizard for SQL Server 3.0 Beta</a></li>
<li><a href="http://www.quest.com/toad-for-sql-server/" target="_blank">Toad for SQL Server 4.6</a></li>
</ul>
<p>Discovery Wizard for SQL Server is our freeware SQL Server discovery tool. If you do not have a comprehensive list of SQL Servers in your environment, you can use the Discovery Wizard to check your network for installed instances of SQL Server. If you already have a comprehensive list of instances registered in Toad for SQL Server, you can skip to the next section.</p>
<p>The Discovery Wizard uses a variety of scan methods to search for SQL Servers by Domain or IP Address, including:</p>
<ul>
<li>Domain searching using NetEnum discovery</li>
<li>Domain searching using Active Directory</li>
<li>IP Scan using Network Registry</li>
<li>IP Scan using WMI</li>
<li>IP Scan using Login Attempt</li>
<li>IP Scan using TCP Connection</li>
</ul>
<p>Select the scan method (Domain or IP Address), enter the domains and/or IP Address ranges, check the appropriate scan types, and click the Start button.</p>
<p>The Discovery Wizard maintains a list of login credentials for each discovered instance. Right-click on instance and select the Test Connection option to enter the login credentials and then select the Collect Data option to query the instance. Once this is done, you&#8217;ll see a list of all the interesting SQL Server and Operating System information as well as the installed LiteSpeed version:</p>
<p><img class="alignnone size-large wp-image-155" src="http://questkb.com/wp-content/uploads/2009/12/DiscoWiz2-1024x658.png" alt="Discovery Wizard" width="614" height="395" /></p>
<p>If you don’t have a comprehensive list of SQL Server instances, this is a good place to start. But you can do even more when you combine the results of the Discovery Wizard with the Toad for SQL Server 4.6 Group Execute functionality.</p>
<p>Group Execute is a feature of Toad that allows a user to easily run a query across multiple SQL Server instances. Using this feature, we can query each instance for LiteSpeed licensing information, and then review these results in Toad or export to Excel.</p>
<p>First things first. If you used the Discovery Wizard to find your instances, you can easily export them to Toad using the “Export to Toad for SQL Server” option on the main menu.</p>
<p><img class="alignnone size-medium wp-image-158" src="http://questkb.com/wp-content/uploads/2009/12/DiscoWiz-Export-to-Toad-300x112.png" alt="DiscoWiz - Export to Toad" width="300" height="112" /></p>
<p>This feature creates a compatible Toad Connection file which you can then import into Toad using the Import function on the Toad Connection Manager:</p>
<p><img class="alignnone size-full wp-image-162" src="http://questkb.com/wp-content/uploads/2009/12/Toad-Import-Connections.png" alt="Toad - Import Connections" width="250" height="131" /></p>
<p>Once your connections are imported into Toad, connect to any instance, open an Editor window, and select the Group Execute tab on the left (default location). If you don’t see it, right-click in the Editor and select the “Show Group Execute” function.</p>
<p>First check the “Enable Group Execute” option in the Group Execute tab. Second, select the instances you want to check for LiteSpeed. In order for Group Execute to work, you must save login credentials for each connection so Toad can automatically connect, so make sure this information is entered in the connection properties before proceeding.</p>
<p><img class="alignnone size-full wp-image-161" src="http://questkb.com/wp-content/uploads/2009/12/Toad-Group-Execute-Select-Instances.png" alt="Toad - Group Execute Select Instances" width="251" height="245" /></p>
<p>Now we’ll write a simple query to check for LiteSpeed on each instance. This T-SQL batch executes the LiteSpeed Licensing extended stored procedure if it is installed in the master database:</p>
<pre>IF EXISTS (

  SELECT <strong>0</strong>

  FROM master..sysobjects where name = N'xp_sqllitespeed_licenseinfo')

EXEC master.dbo.xp_sqllitespeed_licenseinfo

GO</pre>
<p>Let’s save the file before executing. Use the default TEF file format. This Toad file format saves both the selected connections and the SQL statement in a single file to make it easier to execute in the future.</p>
<p>Last step is to execute the SQL. Toad automatically connects to each instance and runs the query. If there is a connection or execution problem, the Status column next to each connection will indicate there was an error. Simply click on the Messages tab for more detail about the issue and try and correct.</p>
<p>The results are combined into a single grid for easy review. You’ll notice a “Connection” column in the output. This allows you to see which SQL Server each row of results belongs to. Looking at the Evaluation column, you can determine the type of license:</p>
<ul>
<li>0 = a permanent license that does not expire</li>
<li>1 = a license that is only good for a specified number of days, like the built-in 15 day trial key (see the Evaluation Days columns)</li>
<li>2 = A license that expires on a specific date (see the Expires column)</li>
</ul>
<p><a href="http://questkb.com/wp-content/uploads/2009/12/Toad-Group-Execute-Results.png"><img class="alignnone size-large wp-image-160" src="http://questkb.com/wp-content/uploads/2009/12/Toad-Group-Execute-Results-1024x234.png" alt="Toad - Group Execute Results" width="600" height="234" /></a></p>
<p>If you prefer working in Excel, simply right-click the results and select the Quick Export to Excel option.</p>
<p><a href="http://questkb.com/wp-content/uploads/2009/12/Excel-Group-Execute-Export.png"><img class="alignnone size-large wp-image-159" src="http://questkb.com/wp-content/uploads/2009/12/Excel-Group-Execute-Export-1024x125.png" alt="Excel - Group Execute Export" width="600" height="125" /></a></p>
<p>You now have a repeatable way to not only discover your installed SQL Servers, but also check to see where you have LiteSpeed deployed.</p>
]]></content:encoded>
			<wfw:commentRss>http://questkb.com/2009/12/01/using-discovery-wizard-3-0-and-toad-for-sql-server-4-6-for-litespeed-licensing-compliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check for Weak SQL Server Passwords with Discovery Wizard</title>
		<link>http://questkb.com/2009/08/24/check-for-weak-sql-server-passwords-with-discovery-wizard/</link>
		<comments>http://questkb.com/2009/08/24/check-for-weak-sql-server-passwords-with-discovery-wizard/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:29:53 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[Discovery Wizard]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://questkb.com/?p=29</guid>
		<description><![CDATA[Some SQL Server instances are set up with the username SA and a blank password.  In other shops, previous DBAs used easy-to-guess back door accounts to make management easier.  To secure your environment, you can use Quest&#8217;s free Discovery Wizard to look for common usernames and passwords.  In this short video, we show you how [...]]]></description>
			<content:encoded><![CDATA[<p>Some SQL Server instances are set up with the username SA and a blank password.  In other shops, previous DBAs used easy-to-guess back door accounts to make management easier.  To secure your environment, you can use <a href="http://www.quest.com/discovery-wizard-for-sql-server/">Quest&#8217;s free Discovery Wizard</a> to look for common usernames and passwords.  In this short video, we show you how to get started.</p>
<br /><img src="http://tutorials.questkb.com/Discovery-Wizard-Password-Check.jpg" alt="media" /><br />
[See post to watch Flash video]
]]></content:encoded>
			<wfw:commentRss>http://questkb.com/2009/08/24/check-for-weak-sql-server-passwords-with-discovery-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction Tutorial for Quest Discovery Wizard</title>
		<link>http://questkb.com/2009/08/24/introduction-tutorial-for-quest-discovery-wizard/</link>
		<comments>http://questkb.com/2009/08/24/introduction-tutorial-for-quest-discovery-wizard/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:28:41 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[Discovery Wizard]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://questkb.com/?p=27</guid>
		<description><![CDATA[How many SQL Servers are in your datacenter?  Find out fast with Quest&#8217;s free Discovery Wizard.  In this short video, we show you how to get started.
]]></description>
			<content:encoded><![CDATA[<p>How many SQL Servers are in your datacenter?  Find out fast with <a href="http://www.quest.com/discovery-wizard-for-sql-server/">Quest&#8217;s free Discovery Wizard</a>.  In this short video, we show you how to get started.</p>
<br /><img src="http://tutorials.questkb.com/Discovery-Wizard-Introduction.jpg" alt="media" /><br />
[See post to watch Flash video]
]]></content:encoded>
			<wfw:commentRss>http://questkb.com/2009/08/24/introduction-tutorial-for-quest-discovery-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Capture an Inventory Baseline with Discovery Wizard</title>
		<link>http://questkb.com/2009/08/24/capture-an-inventory-baseline-with-discovery-wizard/</link>
		<comments>http://questkb.com/2009/08/24/capture-an-inventory-baseline-with-discovery-wizard/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:27:47 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[Discovery Wizard]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://questkb.com/?p=25</guid>
		<description><![CDATA[Keep track of your ever-changing SQL Server inventory with Quest&#8217;s free Discovery Wizard.  In this short video, we show how to set a baseline and find out when servers have been added, removed or changed.
]]></description>
			<content:encoded><![CDATA[<p>Keep track of your ever-changing SQL Server inventory with <a href="http://www.quest.com/discovery-wizard-for-sql-server/">Quest&#8217;s free Discovery Wizard</a>.  In this short video, we show how to set a baseline and find out when servers have been added, removed or changed.</p>
<br /><img src="http://tutorials.questkb.com/Discovery-Wizard-Baseline.jpg" alt="media" /><br />
[See post to watch Flash video]
]]></content:encoded>
			<wfw:commentRss>http://questkb.com/2009/08/24/capture-an-inventory-baseline-with-discovery-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find Out Where LiteSpeed Is Installed with Discovery Wizard</title>
		<link>http://questkb.com/2009/08/24/how-to-find-out-where-litespeed-is-installed-with-discovery-wizard/</link>
		<comments>http://questkb.com/2009/08/24/how-to-find-out-where-litespeed-is-installed-with-discovery-wizard/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:18:09 +0000</pubDate>
		<dc:creator>Brent Ozar</dc:creator>
				<category><![CDATA[Discovery Wizard]]></category>
		<category><![CDATA[LiteSpeed for SQL Server]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://questkb.com/?p=22</guid>
		<description><![CDATA[Quest&#8217;s free Discovery Wizard tool helps you discover and report on your SQL Server instances.  One of the things it checks is for the installed version of Quest LiteSpeed for SQL Server.  If you need to find out where LiteSpeed is installed, watch this short tutorial video to learn how.
]]></description>
			<content:encoded><![CDATA[<p>Quest&#8217;s free <a href="http://www.quest.com/discovery-wizard-for-sql-server/">Discovery Wizard</a> tool helps you discover and report on your SQL Server instances.  One of the things it checks is for the installed version of <a href="http://www.quest.com/litespeed-for-sql-server/">Quest LiteSpeed for SQL Server</a>.  If you need to find out where LiteSpeed is installed, watch this short tutorial video to learn how.</p>
<br /><img src="http://tutorials.questkb.com/DiscoveryWizard-LiteSpeed.jpg" alt="media" /><br />
[See post to watch Flash video]
]]></content:encoded>
			<wfw:commentRss>http://questkb.com/2009/08/24/how-to-find-out-where-litespeed-is-installed-with-discovery-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
