<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>microsoft.public.sqlserver.newusers Google Group</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers</link>
  <description>Microsoft SQL Server newsgroup.</description>
  <language>en</language>
  <item>
  <title>Re: DOUBLE v DECIMAL</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/8bc7d303534ed962?show_docid=8bc7d303534ed962</link>
  <description>
  My only quibble, is that you again describe the money math as an error. It&#39;s &lt;br&gt; not an error. It&#39;s following an accounting rule.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/8bc7d303534ed962?show_docid=8bc7d303534ed962</guid>
  <author>
  rick...@microsoft.com
  (Rick Byham, MSFT)
  </author>
  <pubDate>Thu, 03 Dec 2009 16:20:09 UT
</pubDate>
  </item>
  <item>
  <title>Re: DOUBLE v DECIMAL</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/8c4602de4126ac80?show_docid=8c4602de4126ac80</link>
  <description>
  Yes, I agree. If you are concerned about keeping 4 digits to the right of &lt;br&gt; the decimal, you should not use decimal(9,2). You would, of course, use &lt;br&gt; decimal(x,4) where x was the value that gave you the required number of &lt;br&gt; digits to the right of the decimal. For example, if you needed 7 digits to &lt;br&gt; the left of the decimal, you could use decimal(11,4).
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/8c4602de4126ac80?show_docid=8c4602de4126ac80</guid>
  <author>
  tomcoo...@comcast.net
  (Tom Cooper)
  </author>
  <pubDate>Thu, 03 Dec 2009 05:14:29 UT
</pubDate>
  </item>
  <item>
  <title>Re: DOUBLE v DECIMAL</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/335218c746a71174?show_docid=335218c746a71174</link>
  <description>
  Let&#39;s make a slight change to your example. &lt;br&gt; declare @m money &lt;br&gt; declare @d decimal(9,2) &lt;br&gt; set @m = 234.56 &lt;br&gt; set @d = 234.56 &lt;br&gt; select cast((@m/1000) As money) AS UsingMoney &lt;br&gt; select cast((@d/1000) As decimal(9,2)) AS UsingDecimal &lt;br&gt; Result: &lt;br&gt; UsingMoney &lt;br&gt; 0.2345 &lt;br&gt; UsingDecimal &lt;br&gt; 0.23 &lt;br&gt; You just walked away with 0.0045 dollars. Run this transaction a million
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/335218c746a71174?show_docid=335218c746a71174</guid>
  <author>
  rick...@microsoft.com
  (Rick Byham, MSFT)
  </author>
  <pubDate>Wed, 02 Dec 2009 23:24:14 UT
</pubDate>
  </item>
  <item>
  <title>Re: DOUBLE v DECIMAL</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/fe05591d669b323f?show_docid=fe05591d669b323f</link>
  <description>
  I would avoid using the money datatype. Not only is it proprietary to &lt;br&gt; Microsoft where decimal is ANSI standard. Money datatype has calculation &lt;br&gt; problems. Try running &lt;br&gt; declare @m money &lt;br&gt; declare @d decimal(9,2) &lt;br&gt; set @m = 234.56 &lt;br&gt; set @d = 234.56 &lt;br&gt; select cast((@m/1000)*1000 As money) &lt;br&gt; select cast((@d/1000)*1000 As decimal(9,2))
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/fe05591d669b323f?show_docid=fe05591d669b323f</guid>
  <author>
  tomcoo...@comcast.net
  (Tom Cooper)
  </author>
  <pubDate>Wed, 02 Dec 2009 20:19:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: DOUBLE v DECIMAL</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/0d71c8b03c68e8b9?show_docid=0d71c8b03c68e8b9</link>
  <description>
  Also consider using money. It only has 4 digits to the right of the decimal, &lt;br&gt; but it conforms to the &amp;quot;generally accepted accounting principles&amp;quot; for &lt;br&gt; handling money. But if you have special needs, by all means use numeric.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/0d71c8b03c68e8b9?show_docid=0d71c8b03c68e8b9</guid>
  <author>
  rick...@microsoft.com
  (Rick Byham, MSFT)
  </author>
  <pubDate>Wed, 02 Dec 2009 17:55:22 UT
</pubDate>
  </item>
  <item>
  <title>Re: DOUBLE v DECIMAL</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/d3a67747bbd2ab0d?show_docid=d3a67747bbd2ab0d</link>
  <description>
  Andy &lt;br&gt; DOUBLE is a floating point number and is, therefore, not precise. Use &lt;br&gt; DECIMAL (or NUMERIC). For example, you might use: &lt;br&gt; DECIMAL (19,6) which has 14 digits before the decimal and 6 digits &lt;br&gt; afterward and is stored in 9 bytes. &lt;br&gt; Read about DECIMAL and storage considerations: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://msdn.microsoft.com/en-us/library/ms187746.aspx&quot;&gt;[link]&lt;/a&gt;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/d3a67747bbd2ab0d?show_docid=d3a67747bbd2ab0d</guid>
  <author>
  russellfie...@nomail.com
  (Russell Fields)
  </author>
  <pubDate>Tue, 01 Dec 2009 23:08:11 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server tutorial</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/502627952c7b2616?show_docid=502627952c7b2616</link>
  <description>
  Right, it&#39;s supposed to be the express version., I dled it again and &lt;br&gt; installed again, and again &amp;quot;nothing happens&amp;quot; &lt;br&gt; meaning...no shortcuts created, no entries under start | all programs, no &lt;br&gt; submenu under sql Server menu under All Programs, no folders i can see &lt;br&gt; getting created under sql folders &lt;br&gt; At this point I&#39;m giving up on sql server and going back to sql lite.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/502627952c7b2616?show_docid=502627952c7b2616</guid>
  <author>
  nos...@thanks.com
  (mp)
  </author>
  <pubDate>Tue, 01 Dec 2009 23:00:59 UT
</pubDate>
  </item>
  <item>
  <title>DOUBLE v DECIMAL</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/8f240a1b3b1a9d79?show_docid=8f240a1b3b1a9d79</link>
  <description>
  I&#39;m pretty new to SQL and am a little confused as to which field type I &lt;br&gt; should use to store my &#39;currency&#39; type data. &lt;br&gt; What&#39;s the main difference between these two data types and which would best &lt;br&gt; fit the purpose? &lt;br&gt; I want to store signed numerical data with up to 6 decimal places. &lt;br&gt; Thanks in advance for any help.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/81620ae5b7df573f/8f240a1b3b1a9d79?show_docid=8f240a1b3b1a9d79</guid>
  <author>
  a...@trezise.f2s.com
  (Andy Trezise)
  </author>
  <pubDate>Tue, 01 Dec 2009 22:33:46 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server tutorial</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/5736d09ed7d8e098?show_docid=5736d09ed7d8e098</link>
  <description>
  Yes, that is SQL 2008. The internal version number is 10. &lt;br&gt; That seems to be the Express version. The real SSMS is not available for &lt;br&gt; download from Microsoft.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/5736d09ed7d8e098?show_docid=5736d09ed7d8e098</guid>
  <author>
  esq...@sommarskog.se
  (Erland Sommarskog)
  </author>
  <pubDate>Mon, 30 Nov 2009 22:38:46 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server tutorial</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/f2517b7dd9410315?show_docid=f2517b7dd9410315</link>
  <description>
  Now i think that&#39;s wrong, I may have installed it from the website... &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.microsoft.com/express/sql/download/default.aspx&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; I&#39;ve done so many things trying to figure this out I&#39;ve forgotten all the &lt;br&gt; steps i&#39;ve been through.... &lt;br&gt; snip
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/f2517b7dd9410315?show_docid=f2517b7dd9410315</guid>
  <author>
  nos...@thanks.com
  (mp)
  </author>
  <pubDate>Mon, 30 Nov 2009 00:29:00 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server tutorial</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/19e2192ab641bf51?show_docid=19e2192ab641bf51</link>
  <description>
  Like I said, this may all be moot as it seems it&#39;s beyond my ability to &lt;br&gt; understand and learn, and for now I just need to do extensive reading of all &lt;br&gt; the sites Ive saved over the past week of searching. but since you ask, &lt;br&gt; here&#39;s what I remember of what I tried to install &lt;br&gt; I&#39;m guessing the sql server version is 2008 due to seeing folder in
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/19e2192ab641bf51?show_docid=19e2192ab641bf51</guid>
  <author>
  nos...@thanks.com
  (mp)
  </author>
  <pubDate>Sun, 29 Nov 2009 22:44:19 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server tutorial</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/a83131641c47518e?show_docid=a83131641c47518e</link>
  <description>
  Express is an edition. But is it SQL 2005 or SQL 2008? &lt;br&gt; And you said that you tried install the non-Express version of &lt;br&gt; SQL Server Mangement Studio? Then you must at least have gotten that &lt;br&gt; from another edition.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/a83131641c47518e?show_docid=a83131641c47518e</guid>
  <author>
  esq...@sommarskog.se
  (Erland Sommarskog)
  </author>
  <pubDate>Sun, 29 Nov 2009 15:43:20 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server tutorial</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/01ce9f2c071b111a?show_docid=01ce9f2c071b111a</link>
  <description>
  sorry, i thought i&#39;d mentioned somewhere up thread that i was dealing with &lt;br&gt; the express versions &lt;br&gt; I&#39;ve gotten the books online and have gotten a lot of good background info &lt;br&gt; from everyone here, thank you all &lt;br&gt; will spend some time reading now, at this point it looks like this is all &lt;br&gt; well over my head and probably
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/841f39ed72788ceb/01ce9f2c071b111a?show_docid=01ce9f2c071b111a</guid>
  <author>
  nos...@thanks.com
  (mp)
  </author>
  <pubDate>Sun, 29 Nov 2009 14:17:47 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server as file server os?</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/b2757c8a69de50fa/37fca9fb4b0974f9?show_docid=37fca9fb4b0974f9</link>
  <description>
  not you,... the person at work who i asked what os the server was running. &lt;br&gt; they replied sql server, that&#39;s what confused me originally &lt;br&gt; mark
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/b2757c8a69de50fa/37fca9fb4b0974f9?show_docid=37fca9fb4b0974f9</guid>
  <author>
  nos...@thanks.com
  (mp)
  </author>
  <pubDate>Sun, 29 Nov 2009 14:07:50 UT
</pubDate>
  </item>
  <item>
  <title>Re: sql server as file server os?</title>
  <link>http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/b2757c8a69de50fa/5f8fe6e3e9c16a7c?show_docid=5f8fe6e3e9c16a7c</link>
  <description>
  mp &lt;br&gt; Where do I say that os running by SQL?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/microsoft.public.sqlserver.newusers/browse_frm/thread/b2757c8a69de50fa/5f8fe6e3e9c16a7c?show_docid=5f8fe6e3e9c16a7c</guid>
  <author>
  u...@iscar.co.il
  (Uri Dimant)
  </author>
  <pubDate>Sun, 29 Nov 2009 13:29:59 UT
</pubDate>
  </item>
  </channel>
</rss>
