<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs</id>
  <title type="text">microsoft.public.sqlserver.notificationsvcs Google Group</title>
  <subtitle type="text">
  Microsoft SQL Server newsgroup.
  </subtitle>
  <link href="/group/microsoft.public.sqlserver.notificationsvcs/feed/atom_v1_0_msgs.xml" rel="self" title="microsoft.public.sqlserver.notificationsvcs feed"/>
  <updated>2009-12-17T15:36:40Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Mia</name>
  <email>architect...@gmail.com</email>
  </author>
  <updated>2009-12-17T15:36:40Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/cf5c8628bb186219/23545e1b78c79c5b?show_docid=23545e1b78c79c5b</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/cf5c8628bb186219/23545e1b78c79c5b?show_docid=23545e1b78c79c5b"/>
  <title type="text">Marie Alix tool</title>
  <summary type="html" xml:space="preserve">
  We at Nob Hill Software are working on a new query tool: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.nobhillsoft.com/MarieAlix.aspx?HeardVia=ptut&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; You can read all about it on the above web page, but basically, its a &lt;br&gt; very ambitious project to create what we call &#39;the query tool to end &lt;br&gt; all query tools&#39;: everything you ever wanted, desired, dreamed about
  </summary>
  </entry>
  <entry>
  <author>
  <name>Uri Dimant</name>
  <email>u...@iscar.co.il</email>
  </author>
  <updated>2009-10-22T07:39:00Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/e3ed2aee09b65f0b?show_docid=e3ed2aee09b65f0b</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/e3ed2aee09b65f0b?show_docid=e3ed2aee09b65f0b"/>
  <title type="text">Re: Transaction log file</title>
  <summary type="html" xml:space="preserve">
  Sorry, should be Russell
  </summary>
  </entry>
  <entry>
  <author>
  <name>Uri Dimant</name>
  <email>u...@iscar.co.il</email>
  </author>
  <updated>2009-10-22T07:34:35Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/c37a66d8e4f7dd6c?show_docid=c37a66d8e4f7dd6c</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/c37a66d8e4f7dd6c?show_docid=c37a66d8e4f7dd6c"/>
  <title type="text">Re: Transaction log file</title>
  <summary type="html" xml:space="preserve">
  smca &lt;br&gt; Well, Rassel and Erland have alredy answered you. I would like to add &lt;br&gt; Erland is correct, you need to drop the database , as you said &#39;an old&#39; log &lt;br&gt; files means that db is not in used anymore, right? &lt;br&gt; However , if the db is still in use you need &lt;br&gt; 1) BACKUP LOG file &lt;br&gt; 2) DBCC SHRINKFILE
  </summary>
  </entry>
  <entry>
  <author>
  <name>Erland Sommarskog</name>
  <email>esq...@sommarskog.se</email>
  </author>
  <updated>2009-10-21T21:54:27Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/94595d618981efaf?show_docid=94595d618981efaf</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/94595d618981efaf?show_docid=94595d618981efaf"/>
  <title type="text">Re: Transaction log file</title>
  <summary type="html" xml:space="preserve">
  DROP DATABASE. Yes, that will get rid of the entire database, but &lt;br&gt; that is exactly what you are asking for. Never delete a log file, unless &lt;br&gt; you want to lose your database. &lt;br&gt; &lt;p&gt;First decide what kind of recovery you need in case of a disaster. Are &lt;br&gt; you content with restoring from the last good backup? Or do you need
  </summary>
  </entry>
  <entry>
  <author>
  <name>Russell Fields</name>
  <email>russellfie...@nomail.com</email>
  </author>
  <updated>2009-10-21T20:20:57Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/d4e1fd318d0f56e5?show_docid=d4e1fd318d0f56e5</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/d4e1fd318d0f56e5?show_docid=d4e1fd318d0f56e5"/>
  <title type="text">Re: Transaction log file</title>
  <summary type="html" xml:space="preserve">
  SA, &lt;br&gt; You cannot delete the primary log file, which is probably what you have. &lt;br&gt; You can shrink it by using: &lt;br&gt; DBCC SHRINKFILE (Database_Log, &amp;lt;size in megabytes&amp;gt;) &lt;br&gt; For guidance, see: &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.karaszi.com/SQLServer/info_dont_shrink.asp&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; RLF
  </summary>
  </entry>
  <entry>
  <author>
  <name>smca</name>
  <email>sergiomcandr...@gmail.com</email>
  </author>
  <updated>2009-10-21T20:09:16Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/f8780b6de7f24e7c?show_docid=f8780b6de7f24e7c</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/934ef82d9c16c072/f8780b6de7f24e7c?show_docid=f8780b6de7f24e7c"/>
  <title type="text">Transaction log file</title>
  <summary type="html" xml:space="preserve">
  How can i delete a transaction log file in sql server 2005 &lt;br&gt; I need to delete an old and big file and create a new one with default size &lt;br&gt; Thanks &lt;br&gt; SA
  </summary>
  </entry>
  <entry>
  <author>
  <name>Simon Whale</name>
  <email>si...@nospam.com</email>
  </author>
  <updated>2009-10-05T14:22:26Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/8d0c6e3b3b6d29d5/a32831a3ce3f6a70?show_docid=a32831a3ce3f6a70</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/8d0c6e3b3b6d29d5/a32831a3ce3f6a70?show_docid=a32831a3ce3f6a70"/>
  <title type="text">notification services and a web service</title>
  <summary type="html" xml:space="preserve">
  Hi &lt;br&gt; im currently investigating a project using notificiation services and web &lt;br&gt; service technologies. &lt;br&gt; My question is that is it feesible for the following &lt;br&gt; 1. client sends XML doc through webservice &lt;br&gt; 2. data is stored in database &lt;br&gt; 3. when data changes (i.e. entered quote for insurance goto to the offering
  </summary>
  </entry>
  <entry>
  <author>
  <name>bakbrad</name>
  <email>cbbakb...@gmail.com</email>
  </author>
  <updated>2009-09-14T21:06:51Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/c1b692addae8d99e/c1627d899c2c5077?show_docid=c1627d899c2c5077</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/c1b692addae8d99e/c1627d899c2c5077?show_docid=c1627d899c2c5077"/>
  <title type="text">Not an NS 7 database</title>
  <summary type="html" xml:space="preserve">
  I am currently using a MS sql server 2005 database for Dell &lt;br&gt; Openmange. When I do an install of The newest Dell Management &lt;br&gt; console on a new win 2003 server and try to attach to this new &lt;br&gt; database I get the following error. &lt;br&gt; &#39;The database &#39;ITAssist&#39; selected on the SQL Server specified is not &lt;br&gt; an NS 7 database. Please change your selection to specify an
  </summary>
  </entry>
  <entry>
  <author>
  <name>Russell Fields</name>
  <email>russellfie...@nomail.com</email>
  </author>
  <updated>2009-06-30T21:00:28Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/4082cb3242267997/40301bcc89b57976?show_docid=40301bcc89b57976</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/4082cb3242267997/40301bcc89b57976?show_docid=40301bcc89b57976"/>
  <title type="text">Re: Need more information about SQL job that fails</title>
  <summary type="html" xml:space="preserve">
  Dan, &lt;br&gt; Have you checked for dumps being recorded on your SQL Server? If an &lt;br&gt; exception is being registered, it is possible that at least some data got &lt;br&gt; recorded. Look in the same directory where the SQL Server logs are written. &lt;br&gt; (Not database log files, but the &amp;quot;application&amp;quot; log of SQL Server.) &lt;br&gt; If there is anything there it might give you a clue. Unless, of course, the
  </summary>
  </entry>
  <entry>
  <author>
  <name>Dan DeCoursey</name>
  <email>dandecour...@discussions.microsoft.com</email>
  </author>
  <updated>2009-06-25T13:05:01Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/4082cb3242267997/f0fd985bde1e4492?show_docid=f0fd985bde1e4492</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/4082cb3242267997/f0fd985bde1e4492?show_docid=f0fd985bde1e4492"/>
  <title type="text">Need more information about SQL job that fails</title>
  <summary type="html" xml:space="preserve">
  hi I have a string of jobs that execute in sequence. From time to time I will &lt;br&gt; find my SQL server unresopnsive. Screen saver frozen, no reponse with &lt;br&gt; keyboard/mouse. &lt;br&gt; I have been forced to use power button to restart the server. &lt;br&gt; No pattern as to when or why.......except its the same job at the very same
  </summary>
  </entry>
  <entry>
  <author>
  <name>Mark Landry</name>
  <email>mlan...@tampabay.rr.com</email>
  </author>
  <updated>2009-04-06T14:37:09Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/ff2b698abb25cc9b/4a13f7e203334057?show_docid=4a13f7e203334057</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/ff2b698abb25cc9b/4a13f7e203334057?show_docid=4a13f7e203334057"/>
  <title type="text">Re: Bug: &quot;Dynamic MDX Queries&quot; don&#39;t work as described</title>
  <summary type="html" xml:space="preserve">
  We discovered two related bugs in the ‘Analysis Services Event &lt;br&gt; Provider’ component of Notification Services 2005. &lt;br&gt; Bug #1 The documentation describes the following XML : &lt;br&gt; &amp;lt;rows&amp;gt; &lt;br&gt; &amp;lt;row Employee=&amp;quot;Ken J Snchez&amp;quot; /&amp;gt; &lt;br&gt; &amp;lt;row Employee=&amp;quot;Laura F Norman&amp;quot; /&amp;gt; &lt;br&gt; &amp;lt;row Employee=&amp;quot;Terry Lee Duffy&amp;quot; /&amp;gt; &lt;br&gt; &amp;lt;row Employee=&amp;quot;Gordon L Hee&amp;quot; /&amp;gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Mark Landry</name>
  <email>mlan...@tampabay.rr.com</email>
  </author>
  <updated>2009-03-26T23:36:36Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/ff2b698abb25cc9b/7723ad8404a09fe5?show_docid=7723ad8404a09fe5</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/ff2b698abb25cc9b/7723ad8404a09fe5?show_docid=7723ad8404a09fe5"/>
  <title type="text">Bug: &quot;Dynamic MDX Queries&quot; don&#39;t work as described</title>
  <summary type="html" xml:space="preserve">
  In short, &amp;quot;Dynamic MDX Queries&amp;quot; don’t work as described in the BOL. &lt;br&gt; I’ve lifted the sample code directly, tried to run it, and it fails. &lt;br&gt; It’s documented at &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://msdn.microsoft.com/en-us/library/ms172589(SQL.90).aspx&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; The “Analysis Services Event Provider” queries a SQL table, generates &lt;br&gt; XML output, passes it through an XSLT style sheet, and generates an
  </summary>
  </entry>
  <entry>
  <author>
  <name>cgold</name>
  <email>cg...@discussions.microsoft.com</email>
  </author>
  <updated>2009-02-25T19:50:01Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/8235c52f09608407/520d80e893d0b78b?show_docid=520d80e893d0b78b</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/8235c52f09608407/520d80e893d0b78b?show_docid=520d80e893d0b78b"/>
  <title type="text">SMTP authentication</title>
  <summary type="html" xml:space="preserve">
  Our SMTP server requires authentication and I cannot find where in NS, SMTP &lt;br&gt; authentication can be configured. Several hours of googling have also lead &lt;br&gt; nowhere. From what I can tell, to use NS to send external emails, the email &lt;br&gt; server must allow relaying from the NS server (that will not be allowed).
  </summary>
  </entry>
  <entry>
  <author>
  <name>Shahin</name>
  <email>sha...@discussions.microsoft.com</email>
  </author>
  <updated>2009-02-18T10:01:01Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/3166fa1abc33346a/f037068cfb43cec5?show_docid=f037068cfb43cec5</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/3166fa1abc33346a/f037068cfb43cec5?show_docid=f037068cfb43cec5"/>
  <title type="text">Notification Question</title>
  <summary type="html" xml:space="preserve">
  HI, &lt;br&gt; I am using SQL 2005, I have a question regarding notification, &lt;br&gt; our SQL 2005 has a curitial role in our enviorment, that is why I would like &lt;br&gt; to get a E-mail notification, when ever mssql service or sql agent service &lt;br&gt; crached. &lt;br&gt; I did configuer SQL mail, but it is not possible to achieve what I want with
  </summary>
  </entry>
  <entry>
  <author>
  <name>Dennis</name>
  <email>den...@discussions.microsoft.com</email>
  </author>
  <updated>2009-02-13T11:14:01Z</updated>
  <id>http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/b442b84547dac454/29f146a7e78c3a8b?show_docid=29f146a7e78c3a8b</id>
  <link href="http://groups.google.com/group/microsoft.public.sqlserver.notificationsvcs/browse_thread/thread/b442b84547dac454/29f146a7e78c3a8b?show_docid=29f146a7e78c3a8b"/>
  <title type="text">Clustering Notification Services</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; We are trying to install the Notification Services on a SQL 2005 Failover &lt;br&gt; Cluster. &lt;br&gt; We are using the following MS documentation: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://msdn.microsoft.com/en-us/library/ms171407(SQL.90).aspx&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; The following is not clear to us: during install of the Notification &lt;br&gt; Services, where do I install the application executables, what is the
  </summary>
  </entry>
</feed>
