<?xml version="1.0" encoding="UTF-8" ?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>SQLQueriesNoCode at Yahoo! Groups</title>
    <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/</link>
    <description>SQLQueriesNoCode</description>

    <item>
      <title>Re: SQl Server trigger to query Pervasive?</title>
      <pubDate>Wed, 08 Jul 2009 14:38:42 GMT</pubDate>
      <dc:creator>John Warner</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4219</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4219</guid>
      <description>Thanks. Long time no see your posts. Hope you are well and enjoying the summer. John Warner ... the ... seem ... the ... away ... database, ... under ... name </description>
    </item>
    <item>
      <title>Re: SQl Server trigger to query Pervasive?</title>
      <pubDate>Wed, 08 Jul 2009 14:09:49 GMT</pubDate>
      <dc:creator>Arnie Rowland</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4218</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4218</guid>
      <description>Hi John, Using sp_addlinedserver places the remote server connection details into the system view (table) sys.servers, that is persisted in master. Using SSMS,</description>
    </item>
    <item>
      <title>Re: SQl Server trigger to query Pervasive?</title>
      <pubDate>Wed, 08 Jul 2009 13:49:55 GMT</pubDate>
      <dc:creator>John Warner</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4217</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4217</guid>
      <description>Paul, thanks again for the help here. One more question that does not seem clear from my reading on the web. When using sp_addlinkedserver is the</description>
    </item>
    <item>
      <title>Re: Help with select query</title>
      <pubDate>Tue, 07 Jul 2009 15:03:03 GMT</pubDate>
      <dc:creator>selva kumar</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4216</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4216</guid>
      <description>Hi,    Use the following query select user_id ,count(user_id) from table group by user_id having count(user_id) &gt; 99 Regards Selvakumar.K ... From: Dermot</description>
    </item>
    <item>
      <title>Re: Help with select query</title>
      <pubDate>Tue, 07 Jul 2009 14:27:30 GMT</pubDate>
      <dc:creator>Dermot</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4215</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4215</guid>
      <description>Thank you all very much for your replies: I managed to golf it down to: SELECT asset_id, user_id, count(user_id) from tbl1 group by user_id HAVING</description>
    </item>
    <item>
      <title>Re: Help with select query</title>
      <pubDate>Tue, 07 Jul 2009 12:14:00 GMT</pubDate>
      <dc:creator>Paul Livengood</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4214</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4214</guid>
      <description>SELECT a.user_id, a.asset_id FROM TABLE a JOIN (SELECT user_id, count(user_id) FROM TABLE GROUP BY user_id HAVING count(user_id) &gt; 99)) b on a.user_id =</description>
    </item>
    <item>
      <title>Help with select query</title>
      <pubDate>Tue, 07 Jul 2009 09:26:14 GMT</pubDate>
      <dc:creator>Dermot</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4213</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4213</guid>
      <description>Hi, I am sure this will be easy for most on this list but I appear to be missing a trick. I have a table with the following columns: asset_id, PK, INT user_id,</description>
    </item>
    <item>
      <title>Re: Fastest Query to Query 70000 rows</title>
      <pubDate>Tue, 07 Jul 2009 00:19:55 GMT</pubDate>
      <dc:creator>drury lumenta</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4212</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4212</guid>
      <description>If you are using SQL SERVER then use FULL TEXT INDEX. [Non-text portions of this message have been removed]</description>
    </item>
    <item>
      <title>Re: Missing Data in Sub Queries</title>
      <pubDate>Wed, 01 Jul 2009 16:35:42 GMT</pubDate>
      <dc:creator>Paul Livengood</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4211</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4211</guid>
      <description>I agree with John in that you will need to normalize the data in the Terminal table to get you somehting you can work with, but there is no need to use</description>
    </item>
    <item>
      <title>Re: Missing Data in Sub Queries</title>
      <pubDate>Wed, 01 Jul 2009 16:15:23 GMT</pubDate>
      <dc:creator>John Warner</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4210</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4210</guid>
      <description>When confronted with a non-normalized database I tend to resort to a procedural language like C# or VB.NET and normalize the data within my code and well ... </description>
    </item>
    <item>
      <title>Missing Data in Sub Queries</title>
      <pubDate>Wed, 01 Jul 2009 15:15:24 GMT</pubDate>
      <dc:creator>Mills, Andy</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4209</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4209</guid>
      <description>Hello All: I have a database with three tables: Terminal Acquirer Issuer Unfortunately:  they are not normalized or follow standard database practices, but I</description>
    </item>
    <item>
      <title>Re: Excel to SQL server DB</title>
      <pubDate>Wed, 01 Jul 2009 13:03:25 GMT</pubDate>
      <dc:creator>☺Aνιηαѕн ∂єѕαι™☺</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4208</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4208</guid>
      <description>Hey john i got it done the code works fine and there was one error while executing the Procedure Exec spx_ImportFromExcel03 &#39;Sheet1*$*&#39;,&#39;C:\Documents and </description>
    </item>
    <item>
      <title>Re: Excel to SQL server DB</title>
      <pubDate>Wed, 01 Jul 2009 12:59:14 GMT</pubDate>
      <dc:creator>John Warner</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4207</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4207</guid>
      <description>Permissions? John Warner ... Is ... can ... Source=&#39; ... Properties=&#39;&#39;&#39;&#39;Excel ... server ... before ... printing ... </description>
    </item>
    <item>
      <title>Re: Excel to SQL server DB</title>
      <pubDate>Wed, 01 Jul 2009 12:56:33 GMT</pubDate>
      <dc:creator>☺Aνιηαѕн ∂єѕαι™☺</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4206</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4206</guid>
      <description>yes Installed... ... -- Thanks &amp; Regards Avinash Desai *SAVE Nature SAVE Tree SAVE* Think Before you print: Please consider our environment before printing</description>
    </item>
    <item>
      <title>Re: Excel to SQL server DB</title>
      <pubDate>Wed, 01 Jul 2009 12:54:32 GMT</pubDate>
      <dc:creator>John Warner</dc:creator>
      <link>http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4205</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/SQLQueriesNoCode/message/4205</guid>
      <description>Does SQL Server and it would appear IIS have permission to the folder? Is Jet installed on the server? John Warner ... about ... sunlight.&quot; ... printing ... </description>
    </item>

  </channel>
</rss>
<!-- wr2.grp.sp2.yahoo.com uncompressed/chunked Sun Jul 12 12:32:47 PDT 2009 -->
