﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Discuss Content Posted by Brian Kelley / Article Discussions / Article Discussions by Author  / Getting the Most Out of SQL Server 2000's Query Analyzer, Part II / 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>Thu, 20 Jun 2013 02:46:06 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>hello friends,                i am newcomer pls help me..question-&amp;gt;table 1                                                table 2col0    col1   col2    col3                      col0               col1abc     def    geh    ijk                         abc                defabc1   def1   geh1   ijk1                       abc                geh                                                       abc                ijk                                                       abc1               def1                                                       abc1               geh1                                                       abc1               ijk1                                                        --                  --table 1 has this format and i want to insert the records in table 2 in thatformat...pls give me the sample so that i can solve that problem.....</description><pubDate>Sat, 06 Sep 2008 09:39:13 GMT</pubDate><dc:creator>rakeshkosli</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Hi Brian, I have version SQL 8.00.194SQL Distributed Management Framework (SQL DMF)and it is installed on my local pc which has Windows XP Professional Version 2002 SP2 installed on it.Thank you for your help.Kind regards, Polly</description><pubDate>Mon, 26 Nov 2007 01:36:18 GMT</pubDate><dc:creator>polly.woodhouse</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Where is the SQL Server installed? And what service pack is it?</description><pubDate>Fri, 23 Nov 2007 17:16:28 GMT</pubDate><dc:creator>K. Brian Kelley</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Hi Brian Kelly, yes, excellent article and v. informative.  I am unable to use my debugger.  After successfully setting parameters etc, the new debugger window opens, but I do not have the following facilities - Step into, over, out, run to cursor, restart, stop debugging are all disabled.  The locals, globals and call stack windows are all empty.I only have the option to Go (F5) or to set break points which it does not stop at.I do not get any error messages either.  I am running this on Windows XP.Is there some setting that I have missed?Many thanks, Polly</description><pubDate>Thu, 22 Nov 2007 02:45:30 GMT</pubDate><dc:creator>polly.woodhouse</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000''s Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>&lt;P&gt;I keep finding more gems in this great tool, Query Analyzer. Here are two additional tips:&lt;/P&gt;&lt;P&gt;1. With the default settings, using the Object Browser for scripting creates what is for me a lot of "noise" in the script. For example, scripting a table will give you something like:&lt;/P&gt;&lt;P&gt;CREATE TABLE [Region] ( [RegionID] [int] NOT NULL , [RegionDescription] [nchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , CONSTRAINT [PK_Region] PRIMARY KEY  NONCLUSTERED  (  [RegionID]&amp;nbsp&lt;img src='images/emotions/wink.gif' height='20' width='20' border='0' title='Wink' align='absmiddle'&gt;  ON [PRIMARY] ) ON [PRIMARY]GO&lt;/P&gt;&lt;P&gt;All those brackets and the collation clauses get in the way for me. Fortunately, you can control a lot of this by going to Tools/Options and clicking on the Script tab.  I usually pick "None" as Identifier delimeter and check the "Do not script collation clause ...." option. With these two settings changed, I get the following (in my opinion, cleaner) result:&lt;/P&gt;&lt;P&gt;CREATE TABLE Region ( RegionID int NOT NULL , RegionDescription nchar (50) NOT NULL , CONSTRAINT PK_Region PRIMARY KEY  NONCLUSTERED  (  RegionID&amp;nbsp&lt;img src='images/emotions/wink.gif' height='20' width='20' border='0' title='Wink' align='absmiddle'&gt;  ON PRIMARY ) ON PRIMARYGO&lt;/P&gt;&lt;P&gt;2. Got a stored procedure that has lots of parameters that you want to test? Just right-click on it in the Object Browser and select "Open". You get a nice little "Execute Procedure" dialog box that lists all the parameters, shows their datatypes, and allows you to enter parameter values. Then click the "Execute" button to run the stored procedure. Pretty slick!&lt;/P&gt;&lt;P&gt;A very good article, Brian - good on ya for spreading the word about the many features in this great freebee from Microsoft.&lt;/P&gt;&lt;P&gt;Best regards,SteveR&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description><pubDate>Mon, 03 Jan 2005 11:35:00 GMT</pubDate><dc:creator>Steve Rosenbach</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000''s Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>&lt;P&gt;Excellent. I hope there will be more information about the templates in future articles. They are a fantastic tool for encouraging some naming and development standards. I &lt;EM&gt;know&lt;/EM&gt; that is a hot topic around here &lt;img src='images/emotions/cool.gif' height='20' width='20' border='0' title='Cool' align='absmiddle'&gt;&lt;/P&gt;</description><pubDate>Mon, 03 Jan 2005 06:05:00 GMT</pubDate><dc:creator>Tatsu</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Brian take a look at this article. I was having problems until I did this :http://support.microsoft.com/default.aspx?scid=KB;en-us;270061&amp;Tim C.//Will write code for food</description><pubDate>Thu, 12 Dec 2002 08:35:00 GMT</pubDate><dc:creator>tcartwright</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Hi Brian Kelley,The article is very informative. I tried the dubugging process in my server, it is sql2000 server which runs under the Win2k OS. When i try to debug the sp it says "Sp debugging may not work properly if you log on as 'Local System account' while SQL Server is configured to run as a service. You can open Event Viwer to see details Do you wish to continue ? " and if i continues with this it executes and gives the result of the procedure and i can not able to start the debugging process after placing the breakpoint, it just executes the procedure and gives the result of the same . I was not able to use the debug commands (sep in, step out etc.,). What could be the problem. Looking forward for your reply.Regards,Lingasamy K</description><pubDate>Wed, 24 Apr 2002 05:07:00 GMT</pubDate><dc:creator>lingasamyk</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Hi Lou,I have not.  I am in the process of trying to research it.  A friend of mine is also having issues (chad) and we're trying to nail down the exact permissions and settings required for the various SQL Server versions.  One thing we have noticed is there is a definite difference between 7 and 2000.K. Brian Kelleybkelley@sqlservercentral.comhttp://www.sqlservercentral.com/columnists/bkelley/</description><pubDate>Sat, 16 Mar 2002 12:07:00 GMT</pubDate><dc:creator>K. Brian Kelley</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Brian,Great Article.About the debugger,I have been unable to run in anywhere but directly on the query analyzer on the server. MSDN mentioned something about a bug. Have you experienced this?Lou </description><pubDate>Sat, 16 Mar 2002 08:26:00 GMT</pubDate><dc:creator>Lou Maggio</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>save always works. I use this every day in development. It defaults to "untitledxx", but there is the ability to change that. Have you tried "save as"?Steve Jonessteve@dkranch.net</description><pubDate>Wed, 06 Mar 2002 11:09:00 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>I had not noticed the debugger.  Thank you.Have you noticed the ability to save while developing a query in the enterprise manager?  I did, but the save does not prompt for a file name?  Perhaps it is for future use.Lon</description><pubDate>Wed, 06 Mar 2002 05:17:00 GMT</pubDate><dc:creator>Lon Ramsey</dc:creator></item><item><title>RE: Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Brian,What permissions are required (both on SQL Server and for NT) to allow a developer to debug a stored procedure (for both SQL7 and SQL2K)?ThanksChad</description><pubDate>Mon, 04 Mar 2002 05:53:00 GMT</pubDate><dc:creator>chad</dc:creator></item><item><title>Getting the Most Out of SQL Server 2000's Query Analyzer, Part II</title><link>http://www.sqlservercentral.com/Forums/Topic2858-59-1.aspx</link><description>Comments posted to this topic are about the content posted at &lt;A HREF=http://www.sqlservercentral.com/columnists/bkelley/qa2k_2_1.asp&gt;http://www.sqlservercentral.com/columnists/bkelley/qa2k_2_1.asp&lt;/A&gt;</description><pubDate>Sun, 03 Mar 2002 00:00:00 GMT</pubDate><dc:creator>K. Brian Kelley</dc:creator></item></channel></rss>