<?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>IT Answers &#187; SQL Server 2000 administration</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/sql-server-2000-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 20:40:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>SQL 2000 view debug help</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-2000-view-debug-help/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/sql-2000-view-debug-help/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 18:23:43 +0000</pubDate>
		<dc:creator>DavidHa!!</dc:creator>
				<category><![CDATA[SQL 2000]]></category>
		<category><![CDATA[SQL Server 2000]]></category>
		<category><![CDATA[SQL Server 2000 administration]]></category>
		<category><![CDATA[SQL Server 2000 queries]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have the following (admittedly convoluted) view that I cannot get right for some reason that I cannot see. Consider the following: SELECT     s.s_SAMPLEID AS LimsSampleId, s.U_CLIENT_SAM_NO AS ADASampleId, MAX(s.SAMPLEDESC) AS SampleDescription,                       MAX(CASE d.paramlistid WHEN i.paramid THEN d.paramlistid WHEN &#8217;1.Purity I&#8217; THEN pm.paramdesc WHEN &#8217;2.Purity Analysis&#8217; THEN &#8216;Purity Analysis&#8217; WHEN                        &#8217;5.Germination&#8217; THEN pm.paramdesc [...]]]></description>
				<content:encoded><![CDATA[<p>I have the following (admittedly convoluted) view that I cannot get right for some reason that I cannot see. Consider the following: <br/><br/> SELECT     s.s_SAMPLEID AS LimsSampleId, s.U_CLIENT_SAM_NO AS ADASampleId, MAX(s.SAMPLEDESC) AS SampleDescription,                       MAX(CASE d.paramlistid WHEN i.paramid THEN d.paramlistid WHEN &#8217;1.Purity I&#8217; THEN pm.paramdesc WHEN &#8217;2.Purity Analysis&#8217; THEN &#8216;Purity Analysis&#8217; WHEN                        &#8217;5.Germination&#8217; THEN pm.paramdesc END) AS Analysis,                       MAX(CASE i.paramid WHEN d.paramlistid THEN p.PARAMLISTDESC WHEN &#8216;Purity %&#8217; THEN p.PARAMLISTDESC WHEN &#8216;Inert %&#8217; THEN &#8216;Purity Analysis&#8217; WHEN                        &#8216;Other crop %&#8217; THEN &#8216;Purity Analysis&#8217; WHEN &#8216;WEED %&#8217; THEN &#8216;Purity Analysis&#8217; WHEN &#8216;Germination %&#8217; THEN p.PARAMLISTDESC END)                       AS AnalysisDescription,                       MAX(CASE i.paramid WHEN d.paramlistid THEN i.EnteredText WHEN &#8216;Purity %&#8217; THEN i.EnteredText WHEN &#8216;Germination %&#8217; THEN i.EnteredText ELSE NULL                        END) AS Result,                       MAX(CASE i.paramid WHEN d.paramlistid THEN i.DisplayUnits WHEN &#8216;Purity %&#8217; THEN i.EnteredUnits WHEN &#8216;Germination %&#8217; THEN i.EnteredUnits ELSE                        NULL END) AS Units, MAX(CASE WHEN i.paramid = &#8216;Maximum Guarantee&#8217; THEN i.EnteredText ELSE NULL END) AS [Max],                       MAX(CASE WHEN i.paramid = &#8216;Minimum Guarantee&#8217; THEN i.EnteredText ELSE NULL END) AS [Min],                       MAX(CASE WHEN i.paramid = &#8216;Violation&#8217; THEN i.EnteredText ELSE NULL END) AS Violation,                       MAX(CASE d.paramlistid WHEN &#8217;2.Purity Analysis&#8217; THEN NULL ELSE b.U_COMMON_NAME END) AS CropName,                       MAX(CASE d.paramlistid WHEN &#8217;2.Purity Analysis&#8217; THEN NULL ELSE b.U_GENUS END) AS Genus,                       MAX(CASE d.paramlistid WHEN &#8217;2.Purity Analysis&#8217; THEN NULL ELSE b.U_SPECIES END) AS Species,                       MAX(CASE WHEN i.paramid = &#8216;Other crop %&#8217; THEN i.EnteredText ELSE NULL END) AS OtherCrop,                       MAX(CASE WHEN i.paramid = &#8216;Inert %&#8217; THEN i.EnteredText ELSE NULL END) AS Inert,                       MAX(CASE WHEN i.paramid = &#8216;WEED %&#8217; THEN i.EnteredText ELSE NULL END) AS Weed,                       MAX(CASE i.paramid WHEN &#8216;Date of Analysis&#8217; THEN CONVERT(DateTime, i.EnteredText)                       WHEN &#8216;Purity %&#8217; THEN ic.EnteredText WHEN &#8216;Germination %&#8217; THEN ic.EnteredText ELSE NULL END) AS DateOfAnalysis,                       MAX(CASE d.paramlistid WHEN &#8217;2.Purity Analysis&#8217; THEN NULL ELSE Floor(CAST(U_COLLECTDT AS Decimal(20, 10))) END) AS DateCollected,                       MAX(CASE d.paramlistid WHEN &#8217;2.Purity Analysis&#8217; THEN 99 ELSE 0 END) AS SortOrder01,                       MAX(CASE d.paramlistid WHEN i.paramid THEN &#8217;0&#8242; WHEN &#8217;1.Purity I&#8217; THEN ib.displayvalue WHEN &#8217;2.Purity Analysis&#8217; THEN &#8216;Z&#8217; WHEN &#8217;5.Germination&#8217; THEN                        ib.displayvalue END) AS SortOrder02 FROM         dbo.Samples s INNER JOIN                       dbo.SampleData d ON s.s_SAMPLEID = d.KEYID1 INNER JOIN                       dbo.SampleDataItems WITH (INDEX (IX_SampleDataItems_paramid)) i ON d.KEYID1 = i.KEYID1 AND d.DATASET = i.DATASET AND                       d.PARAMLISTID = i.PARAMLISTID AND d.PARAMLISTVERSIONID = i.PARAMLISTVERSIONID AND d.VARIANTID = i.VARIANTID AND                       i.PARAMID &lt;&gt; &#8216;CROP ID&#8217; LEFT OUTER JOIN                       dbo.SampleDataItems WITH (INDEX (IX_SampleDataItems_paramid)) ib ON i.KEYID1 = ib.KEYID1 AND i.SDCID = ib.SDCID AND                       i.DATASET = ib.DATASET AND ib.PARAMID = &#8216;CROP ID&#8217; LEFT OUTER JOIN                       dbo.SampleDataItems WITH (INDEX (IX_SampleDataItems_paramid)) ic ON i.KEYID1 = ic.KEYID1 AND i.SDCID = ic.SDCID AND ic.DATASET = &#8217;1.0&#8242; AND                       ic.PARAMID = &#8216;Date of Analysis&#8217; INNER JOIN                       dbo.ParameterLists p ON d.PARAMLISTID = p.PARAMLISTID AND d.PARAMLISTVERSIONID = p.PARAMLISTVERSIONID AND                       d.VARIANTID = p.VARIANTID INNER JOIN                       dbo.Parameters pm ON i.PARAMID = pm.PARAMID LEFT OUTER JOIN                       dbo.Botany b ON b.U_BOTANYID = ib.DISPLAYVALUE WHERE     (i.PARAMID IN (&#8216;Violation&#8217;, &#8216;Minimum Guarantee&#8217;, &#8216;Maximum Guarantee&#8217;, &#8216;Date of Analysis&#8217;, &#8216;Purity %&#8217;, &#8216;Inert %&#8217;, &#8216;WEED %&#8217;, &#8216;Other crop %&#8217;,                       &#8216;Germination %&#8217;) OR                       i.PARAMID = i.PARAMLISTID) AND (i.PARAMLISTID &lt;&gt; &#8217;3.Purity Analysts&#8217;) GROUP BY s.U_CLIENT_SAM_NO, s.s_SAMPLEID, ib.DISPLAYVALUE, d.PARAMLISTID<br/><br/> SQL generates the following error:<br/><br/> Server: Msg 170, Level 15, State 1, Line 27 Line 27: Incorrect syntax near &#8216;i&#8217;.<br/><br/>  <br/><br/> Anyone have ideas? What am I not seeing?<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/sql-2000-view-debug-help/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How can I use SQL codes in delphy7?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-use-sql-codes-in-delphy/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-use-sql-codes-in-delphy/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 10:26:17 +0000</pubDate>
		<dc:creator>Ramin</dc:creator>
				<category><![CDATA[SQL 2000]]></category>
		<category><![CDATA[SQL Server 2000]]></category>
		<category><![CDATA[SQL Server 2000 administration]]></category>
		<category><![CDATA[SQL Server administration]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am going to use the sql code below in a query in delphy7 SELECT     left(edit1.text, 5)+&#8217;0 &#8216; FROM        edit.text2]]></description>
				<content:encoded><![CDATA[<p>I am going to use the sql code below in a query in delphy7</p>
<p>SELECT     left(edit1.text, 5)+&#8217;0 &#8216;<br />
FROM        edit.text2</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-use-sql-codes-in-delphy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;convert as/400 dates &#8217;0001-01-01&#8242; to SQL Server 2000&#8242;</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/convert-as400-dates-0001-01-01-to-sql-server-2000/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/convert-as400-dates-0001-01-01-to-sql-server-2000/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 18:04:52 +0000</pubDate>
		<dc:creator>Jld</dc:creator>
				<category><![CDATA[AS/400 date format]]></category>
		<category><![CDATA[SQL Server 2000 administration]]></category>
		<category><![CDATA[sql server 2000 datetime data type]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How do I convert ISO dates of &#8217;0001-01-01&#8242; to SQL Server 2000 Datetime format?]]></description>
				<content:encoded><![CDATA[<p>How do I convert ISO dates of &#8217;0001-01-01&#8242; to SQL Server 2000 Datetime format?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/convert-as400-dates-0001-01-01-to-sql-server-2000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data type : GMToffset in SQL Server 2000</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-type-gmtoffset/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/data-type-gmtoffset/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 12:41:08 +0000</pubDate>
		<dc:creator>NSH</dc:creator>
				<category><![CDATA[SQL Server 2000]]></category>
		<category><![CDATA[SQL Server 2000 administration]]></category>
		<category><![CDATA[sql server 2000 datetime data type]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how this data type GMToffset will work.?? can you please help me in that where the offset is a feild in the table &#038; GMToffset is its data type exist in sql server 2000 or it is derived ?? why we use GMT instead of local time?? Is this data type x]]></description>
				<content:encoded><![CDATA[<p>how this data type GMToffset will work.?? can you please help me in that where the offset is a feild in the table &#038; GMToffset is its data type exist in sql server 2000 or it is derived ?? why we use GMT instead of local time?? Is this data type x</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/data-type-gmtoffset/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Migration checker tool for Sql Server 2000 to Sql Server 2008 Migration</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/migration-checker-tool-for-sql-server-200-to-sql-server-2008-migration/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/migration-checker-tool-for-sql-server-200-to-sql-server-2008-migration/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 06:29:08 +0000</pubDate>
		<dc:creator>Naina</dc:creator>
				<category><![CDATA[Microsoft SQL Server 2000]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2000 administration]]></category>
		<category><![CDATA[SQL Server migration]]></category>
		<category><![CDATA[SQL Server Migration Assistant]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[  Hello, Please let me know is there any tool available to check the SQL Server 2000 to Sql Server 2008 Migration, so that we can anlyze the procedure or any discrepancies with the Database we are trying to migrate and list all potential issues. Thanks Naina]]></description>
				<content:encoded><![CDATA[<p> <br/><br/> Hello,<br/><br/> Please let me know is there any tool available to check the SQL Server 2000 to Sql Server 2008 Migration, so that we can anlyze the procedure or any discrepancies with the Database we are trying to migrate and list all potential issues.<br/><br/> Thanks Naina<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/migration-checker-tool-for-sql-server-200-to-sql-server-2008-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Agent Job Creation</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-agent-job-creation/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/sql-agent-job-creation/#comments</comments>
		<pubDate>Fri, 15 May 2009 04:48:16 +0000</pubDate>
		<dc:creator>AshishAmodia</dc:creator>
				<category><![CDATA[SQL Server 2000]]></category>
		<category><![CDATA[SQL Server 2000 administration]]></category>
		<category><![CDATA[SQL Server Agent]]></category>
		<category><![CDATA[SQL Server Agent Jobs]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello, My self Ashish Amodia from India, I want to send Automatic mail with an attachment for that I have created job and from job that I want to open my web page automatically &#8211; I am using SQL server 2000. If u know how to open web page from job than please let me [...]]]></description>
				<content:encoded><![CDATA[<p>Hello,</p>
<p>My self Ashish Amodia from India, I want to send Automatic mail with an attachment for that I have created job and from job that I want to open my web page automatically &#8211; I am using SQL server 2000. </p>
<p>If u know how to open web page from job than please let me know <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thank you</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/sql-agent-job-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/20 queries in 0.034 seconds using memcached
Object Caching 660/733 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-18 22:05:17 -->