User sammydc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T22:20:35Z http://stackoverflow.com/feeds/user/31026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1557478/create-xml-from-sql-server-2005-data-using-for-xml 0 Create XML from SQL Server 2005 data using FOR XML sammydc 2009-10-12T23:23:49Z 2009-10-13T04:39:53Z <p>I'm trying to create an Excel XML that I want to store in an XML Field in SQL Server 2005. I have gotten this far:</p> <pre><code>WITH XMLNAMESPACES ( 'urn:schemas-microsoft-com:office:spreadsheet' as "s", 'urn:schemas-microsoft-com:office:office' as "o", 'urn:schemas-microsoft-com:office:excel' as "x" ) select 'Order' as "@s:Name", ( select 'String' as 's:Cell/s:Data/@s:Type', [Order] as 's:Cell/s:Data', null as 'tmp', 'String' as 's:Cell/s:Data/@s:Type', [Material] as 's:Cell/s:Data', null as 'tmp', 'String' as 's:Cell/s:Data/@s:Type', [Ship-To] as 's:Cell/s:Data' from ( select 'Order' as [Order], 'Material' as [Material], 'Ship-To' as [Ship-To] union all select [Order], [Material], [Ship-To] from Orders WHERE [Material] IN(1234,5678)) ) as Temp FOR XML PATH('s:Row'), type ) AS 's:Table' FOR XML PATH('s:Worksheet'), root('s:Workbook') </code></pre> <p>Here's my output:</p> <pre><code>&lt;s:Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:s="urn:schemas-microsoft-com:office:spreadsheet"&gt; &lt;s:Worksheet s:Name="Order"&gt; &lt;s:Table&gt; &lt;s:Row xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:s="urn:schemas-microsoft-com:office:spreadsheet"&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;Order&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;Material&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;Ship-To&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;/s:Row&gt; &lt;s:Row xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:s="urn:schemas-microsoft-com:office:spreadsheet"&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;200909&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;1234&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;US&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;/s:Row&gt; &lt;s:Row xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:s="urn:schemas-microsoft-com:office:spreadsheet"&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;200909&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;5678&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;s:Cell&gt; &lt;s:Data s:Type="String"&gt;ASIA&lt;/s:Data&gt; &lt;/s:Cell&gt; &lt;/s:Row&gt; &lt;/s:Table&gt; &lt;/s:Worksheet&gt; &lt;/s:Workbook&gt; </code></pre> <p>What I want is to eliminate the namespace in the <code>&lt;s:Row&gt;</code> node. I want to get rid of this: <code>xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:s="urn:schemas-microsoft-com:office:spreadsheet"</code> from <code>&lt;s:Row xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:s="urn:schemas-microsoft-com:office:spreadsheet"&gt;</code></p> <p>Anybody have an idea how to do this?</p> http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan 14 For Python programmers, is there anything equivalent to Perl's CPAN? sammydc 2009-01-04T00:30:37Z 2009-03-27T17:24:02Z <p>Hi,</p> <p>I'm new to Python, reason I'm learning it right now is because of the Django framework. I have been a Perl programmer for a number of years and I'm so used to Perl's tools. One of the things that I really miss is Perl's CPAN and its tools. Is there anything equivalent in Python? I would like to be able to search, install and maintain Python modules as easy as CPAN. Also, a system that can handle dependencies automatically. I tried to install a module in Python by downloading a zip file from a website, unzipped it, then do:</p> <p><code>sudo python setup.py install</code></p> <p>but it's looking for another module. Now, lazy as I am, I don't like chasing dependencies and such, is there an easy way? Thanks.</p> <p><em>sammydc says:</em></p> <p>I installed pip and it's working now. Thanks very much llimllib.</p> http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan/410672#410672 -1 Answer by sammydc for For Python programmers, is there anything equivalent to Perl's CPAN? sammydc 2009-01-04T08:36:26Z 2009-01-04T08:36:26Z <p>I installed pip and it's working now. Thanks very much llimllib.</p> http://stackoverflow.com/questions/248990/summarize-aggregated-data 3 Summarize aggregated data sammydc 2008-10-30T01:21:48Z 2008-10-30T04:25:30Z <p>I have a table like as follows:</p> <pre> SoftwareName Count Country Project 15 Canada Visio 12 Canada Project 10 USA Visio 5 USA </pre> <p>How do I query it to give me a summary like...</p> <pre> SoftwareName Canada USA Total Project 15 10 25 Visio 12 5 17 </pre> <p>How to do in T-SQL?</p> http://stackoverflow.com/questions/1557478/create-xml-from-sql-server-2005-data-using-for-xml Comment by sammydc on Create XML from SQL Server 2005 data using FOR XML sammydc 2009-10-13T02:19:40Z 2009-10-13T02:19:40Z I'm processing a great deal of data. Though it works ok as it is right now, but it would be nice if I could trim what's really unnecessary. http://stackoverflow.com/questions/248990/summarize-aggregated-data/249272#249272 Comment by sammydc on Summarize aggregated data sammydc 2008-10-30T18:44:07Z 2008-10-30T18:44:07Z Hi Marlon, I tried this solution too, and while I don't see any improvement in terms of execution time, I think this solution is very elegant and easy to modify later on. Thanks a lot. http://stackoverflow.com/questions/248990/summarize-aggregated-data/249020#249020 Comment by sammydc on Summarize aggregated data sammydc 2008-10-30T01:48:48Z 2008-10-30T01:48:48Z Thanks very much Bill. This totally solves it! I appreciate it.