﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Aleksandar Tosic's Blog</title>
    <description>Aleksandar Tosic's Blog</description>
    <link>http://www.dbalinks.com/Home/tabid/36/BlogId/1/Default.aspx</link>
    <language>en-US</language>
    <webMaster>admin@dbalinks.com</webMaster>
    <pubDate>Sat, 04 Sep 2010 16:29:04 GMT</pubDate>
    <lastBuildDate>Sat, 04 Sep 2010 16:29:04 GMT</lastBuildDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>Blog RSS Generator Version 3.3.0.16726</generator>
    <item>
      <title>Msg 14650, Level 16, State 1, Procedure sp_send_dbmail, Line 68</title>
      <description>Msg 14650, Level 16, State 1, Procedure sp_send_dbmail, Line 68
Service Broker message delivery is not enabled in this database.
Use the ALTER DATABASE statement to enable Service Broker message delivery</description>
      <link>http://www.dbalinks.com/Home/tabid/36/EntryID/967/Default.aspx</link>
      <comments>http://www.dbalinks.com/Home/tabid/36/EntryID/967/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.dbalinks.com/Default.aspx?tabid=36&amp;EntryID=967</guid>
      <pubDate>Thu, 23 Oct 2008 14:29:56 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.dbalinks.com/DesktopModules/Blog/Trackback.aspx?id=967</trackback:ping>
    </item>
    <item>
      <title>Out of memory error when try to preview report</title>
      <description>&lt;p&gt;These are good links when getting error "Out of memory"  when running report in Reporting Service 2005.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/ms156002.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms156002.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/lukaszp/archive/2007/01/31/how-to-diagnose-issues-when-running-reports-in-the-report-server.aspx"&gt;http://blogs.msdn.com/lukaszp/archive/2007/01/31/how-to-diagnose-issues-when-running-reports-in-the-report-server.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
      <link>http://www.dbalinks.com/Home/tabid/36/EntryID/330/Default.aspx</link>
      <comments>http://www.dbalinks.com/Home/tabid/36/EntryID/330/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.dbalinks.com/Default.aspx?tabid=36&amp;EntryID=330</guid>
      <pubDate>Wed, 15 Oct 2008 10:40:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.dbalinks.com/DesktopModules/Blog/Trackback.aspx?id=330</trackback:ping>
    </item>
    <item>
      <title>Truncating a data file</title>
      <description>&lt;p&gt;Truncating a data file&lt;/p&gt;
&lt;div class="subSection"&gt;
&lt;p&gt;The following example truncates the primary data file in the &lt;tt&gt;AdventureWorks&lt;/tt&gt; database. The &lt;tt&gt;sys.database_files&lt;/tt&gt; catalog view is queried to obtain the &lt;tt&gt;file_id&lt;/tt&gt; of the data file.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/ms189493.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms189493.aspx&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;USE AdventureWorks;&lt;br /&gt;
GO&lt;br /&gt;
SELECT file_id, name&lt;br /&gt;
FROM sys.database_files;&lt;br /&gt;
GO&lt;br /&gt;
DBCC SHRINKFILE (1, TRUNCATEONLY);&lt;/p&gt;</description>
      <link>http://www.dbalinks.com/Home/tabid/36/EntryID/328/Default.aspx</link>
      <comments>http://www.dbalinks.com/Home/tabid/36/EntryID/328/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.dbalinks.com/Default.aspx?tabid=36&amp;EntryID=328</guid>
      <pubDate>Wed, 15 Oct 2008 10:40:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.dbalinks.com/DesktopModules/Blog/Trackback.aspx?id=328</trackback:ping>
    </item>
    <item>
      <title>How to empty a database file - Emptying a file</title>
      <description>&lt;p&gt;Emptying a file&lt;/p&gt;
&lt;div class="subSection"&gt;
&lt;p&gt;The following example demonstrates the procedure for emptying a file so that it can be removed from the database. For the purposes of this example, a data file is first created and it is assumed that the file contains data.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/ms189493.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms189493.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;USE AdventureWorks;&lt;br /&gt;
GO&lt;br /&gt;
-- Create a data file and assume it contains data.&lt;br /&gt;
ALTER DATABASE AdventureWorks &lt;br /&gt;
ADD FILE (&lt;br /&gt;
    NAME = Test1data,&lt;br /&gt;
    FILENAME = 'C:\t1data.ndf',&lt;br /&gt;
    SIZE = 5MB&lt;br /&gt;
    );&lt;br /&gt;
GO&lt;br /&gt;
-- Empty the data file.&lt;br /&gt;
DBCC SHRINKFILE ('Test1data', EMPTYFILE);&lt;br /&gt;
GO&lt;br /&gt;
-- Remove the data file from the database.&lt;br /&gt;
ALTER DATABASE AdventureWorks&lt;br /&gt;
REMOVE FILE Test1data;&lt;br /&gt;
GO&lt;/p&gt;
&lt;/div&gt;</description>
      <link>http://www.dbalinks.com/Home/tabid/36/EntryID/327/Default.aspx</link>
      <comments>http://www.dbalinks.com/Home/tabid/36/EntryID/327/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.dbalinks.com/Default.aspx?tabid=36&amp;EntryID=327</guid>
      <pubDate>Wed, 15 Oct 2008 10:40:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.dbalinks.com/DesktopModules/Blog/Trackback.aspx?id=327</trackback:ping>
    </item>
    <item>
      <title>SQL Server 2005 Service Pack 1</title>
      <description>&lt;p&gt;To  download SQL Server 2005 Service Pack 1 visit: &lt;u&gt;&lt;font color="#800080"&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=cb6c71ea-d649-47ff-9176-e7cac58fd4bc&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=cb6c71ea-d649-47ff-9176-e7cac58fd4bc&amp;displaylang=en&lt;/a&gt;&lt;/font&gt;&lt;/u&gt;&lt;/p&gt;</description>
      <link>http://www.dbalinks.com/Home/tabid/36/EntryID/8/Default.aspx</link>
      <comments>http://www.dbalinks.com/Home/tabid/36/EntryID/8/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.dbalinks.com/Default.aspx?tabid=36&amp;EntryID=8</guid>
      <pubDate>Wed, 15 Oct 2008 10:40:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.dbalinks.com/DesktopModules/Blog/Trackback.aspx?id=8</trackback:ping>
    </item>
    <item>
      <title>SQL Server 2005 Service Pack 2</title>
      <description>&lt;p&gt;To  download SQL Server 2005 Service Pack 2 visit: &lt;u&gt;&lt;font color="#800080"&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=d07219b2-1e23-49c8-8f0c-63fa18f26d3a&amp;DisplayLang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=d07219b2-1e23-49c8-8f0c-63fa18f26d3a&amp;DisplayLang=en&lt;/a&gt;&lt;/font&gt;&lt;/u&gt;&lt;/p&gt;</description>
      <link>http://www.dbalinks.com/Home/tabid/36/EntryID/9/Default.aspx</link>
      <comments>http://www.dbalinks.com/Home/tabid/36/EntryID/9/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.dbalinks.com/Default.aspx?tabid=36&amp;EntryID=9</guid>
      <pubDate>Wed, 15 Oct 2008 10:40:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.dbalinks.com/DesktopModules/Blog/Trackback.aspx?id=9</trackback:ping>
    </item>
    <item>
      <title>Microsoft SQL Server 2005 Downloads</title>
      <description>&lt;p&gt; &lt;/p&gt;
&lt;p&gt;To download SQL Server 2005 service packs, tools, trial software visit: &lt;a href="http://technet.microsoft.com/en-us/sqlserver/bb331754.aspx"&gt;http://technet.microsoft.com/en-us/sqlserver/bb331754.aspx&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.dbalinks.com/Home/tabid/36/EntryID/10/Default.aspx</link>
      <comments>http://www.dbalinks.com/Home/tabid/36/EntryID/10/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.dbalinks.com/Default.aspx?tabid=36&amp;EntryID=10</guid>
      <pubDate>Wed, 15 Oct 2008 10:40:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.dbalinks.com/DesktopModules/Blog/Trackback.aspx?id=10</trackback:ping>
    </item>
  </channel>
</rss>