User sammydc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T22:20:35Zhttp://stackoverflow.com/feeds/user/31026http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1557478/create-xml-from-sql-server-2005-data-using-for-xml0Create XML from SQL Server 2005 data using FOR XMLsammydc2009-10-12T23:23:49Z2009-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><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">
<s:Worksheet s:Name="Order">
<s:Table>
<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">
<s:Cell>
<s:Data s:Type="String">Order</s:Data>
</s:Cell>
<s:Cell>
<s:Data s:Type="String">Material</s:Data>
</s:Cell>
<s:Cell>
<s:Data s:Type="String">Ship-To</s:Data>
</s:Cell>
</s:Row>
<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">
<s:Cell>
<s:Data s:Type="String">200909</s:Data>
</s:Cell>
<s:Cell>
<s:Data s:Type="String">1234</s:Data>
</s:Cell>
<s:Cell>
<s:Data s:Type="String">US</s:Data>
</s:Cell>
</s:Row>
<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">
<s:Cell>
<s:Data s:Type="String">200909</s:Data>
</s:Cell>
<s:Cell>
<s:Data s:Type="String">5678</s:Data>
</s:Cell>
<s:Cell>
<s:Data s:Type="String">ASIA</s:Data>
</s:Cell>
</s:Row>
</s:Table>
</s:Worksheet>
</s:Workbook>
</code></pre>
<p>What I want is to eliminate the namespace in the <code><s:Row></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><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"></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-cpan14For Python programmers, is there anything equivalent to Perl's CPAN?sammydc2009-01-04T00:30:37Z2009-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-1Answer by sammydc for For Python programmers, is there anything equivalent to Perl's CPAN?sammydc2009-01-04T08:36:26Z2009-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-data3Summarize aggregated datasammydc2008-10-30T01:21:48Z2008-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-xmlComment by sammydc on Create XML from SQL Server 2005 data using FOR XMLsammydc2009-10-13T02:19:40Z2009-10-13T02:19:40ZI'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#249272Comment by sammydc on Summarize aggregated datasammydc2008-10-30T18:44:07Z2008-10-30T18:44:07ZHi 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#249020Comment by sammydc on Summarize aggregated datasammydc2008-10-30T01:48:48Z2008-10-30T01:48:48ZThanks very much Bill. This totally solves it! I appreciate it.