<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 11:47:26 +0000</lastBuildDate>
    <item>
      <title>(SQL) Search object in all databases - pollusb</title>
      <link>https://snipplr.com/view/19075/search-object-in-all-databases</link>
      <description>&lt;p&gt;Place you object name here must be replaced with your object name ;)&lt;/p&gt;</description>
      <pubDate>Mon, 31 Aug 2009 16:33:43 UTC</pubDate>
      <guid>https://snipplr.com/view/19075/search-object-in-all-databases</guid>
    </item>
    <item>
      <title>(SQL) RESTORE DATABASE from a list of files - pollusb</title>
      <link>https://snipplr.com/view/14104/restore-database-from-a-list-of-files</link>
      <description>&lt;p&gt;Use a file list to generate a RESTORE script. You may want to review the WITH option. This script is for advanced user only. Works only with 1 file per database backup.&lt;/p&gt;</description>
      <pubDate>Thu, 16 Apr 2009 22:30:59 UTC</pubDate>
      <guid>https://snipplr.com/view/14104/restore-database-from-a-list-of-files</guid>
    </item>
    <item>
      <title>(SQL) Last Backup Date for All databases - pollusb</title>
      <link>https://snipplr.com/view/14075/last-backup-date-for-all-databases</link>
      <description>&lt;p&gt;In a migration scenario, you may need to take a backup and a differential later to split the transfer over time. But to make it work, there shouldn't be any other full backup in between. This will help you check the last full backup date. Of course, you could use it for a lot of other reason.&lt;/p&gt;</description>
      <pubDate>Thu, 16 Apr 2009 00:09:03 UTC</pubDate>
      <guid>https://snipplr.com/view/14075/last-backup-date-for-all-databases</guid>
    </item>
    <item>
      <title>(SQL) Extract logins default db - pollusb</title>
      <link>https://snipplr.com/view/13485/extract-logins-default-db</link>
      <description>&lt;p&gt;Extract logins default db settings from one server to export to another&lt;/p&gt;</description>
      <pubDate>Thu, 26 Mar 2009 13:26:18 UTC</pubDate>
      <guid>https://snipplr.com/view/13485/extract-logins-default-db</guid>
    </item>
    <item>
      <title>(SQL) sp_ColDefinition or writing upsert SP in a snap - pollusb</title>
      <link>https://snipplr.com/view/13451/spcoldefinition-or-writing-upsert-sp-in-a-snap</link>
      <description>&lt;p&gt;sp_ColDefinition will use the metadata tables to create a table result that looks like this :&#13;
&#13;
DECLARE&#13;
---------------------&#13;
@title_id varchar(6),&#13;
@title varchar(80),&#13;
@type char(12),&#13;
@pub_id char(4),&#13;
@price money,&#13;
@advance money,&#13;
@royalty int,&#13;
@ytd_sales int,&#13;
@notes varchar(200),&#13;
@pubdate datetime(8),&lt;/p&gt;</description>
      <pubDate>Wed, 25 Mar 2009 22:17:48 UTC</pubDate>
      <guid>https://snipplr.com/view/13451/spcoldefinition-or-writing-upsert-sp-in-a-snap</guid>
    </item>
    <item>
      <title>(SQL) Linked Servers Summary - pollusb</title>
      <link>https://snipplr.com/view/13404/linked-servers-summary</link>
      <description>&lt;p&gt;This piece of code is really useful to manage the Linked Servers. It will tell you if a linked server is no longer valid. That is pointing to an invalid DNS entry or an address that doesn't ping.&lt;/p&gt;</description>
      <pubDate>Tue, 24 Mar 2009 11:56:32 UTC</pubDate>
      <guid>https://snipplr.com/view/13404/linked-servers-summary</guid>
    </item>
    <item>
      <title>(SQL) Unable to delete or disable SQL Server job due to error regarding MSX server - pollusb</title>
      <link>https://snipplr.com/view/13329/unable-to-delete-or-disable-sql-server-job-due-to-error-regarding-msx-server</link>
      <description>&lt;p&gt;This is a simplified version to resolve the error "Unable to delete or disable SQL Server job due to error regarding MSX server" when migrating a server&lt;/p&gt;</description>
      <pubDate>Fri, 20 Mar 2009 18:09:59 UTC</pubDate>
      <guid>https://snipplr.com/view/13329/unable-to-delete-or-disable-sql-server-job-due-to-error-regarding-msx-server</guid>
    </item>
    <item>
      <title>(SQL) Deactivate jobs on SQL Server - pollusb</title>
      <link>https://snipplr.com/view/13328/deactivate-jobs-on-sql-server</link>
      <description>&lt;p&gt;Let's say you need to deactivate jobs, do something, then reactivate jobs. You can use this to generate the code for both by changing "@enabled = 0" with 1&lt;/p&gt;</description>
      <pubDate>Fri, 20 Mar 2009 18:05:00 UTC</pubDate>
      <guid>https://snipplr.com/view/13328/deactivate-jobs-on-sql-server</guid>
    </item>
    <item>
      <title>(SQL) Determine Free Disk Space in SQL Server - pollusb</title>
      <link>https://snipplr.com/view/13063/determine-free-disk-space-in-sql-server</link>
      <description>&lt;p&gt;This is not my code but I really like the fact that it's not using a COM object to do it's task such as the one I've been using for years.&lt;/p&gt;</description>
      <pubDate>Thu, 12 Mar 2009 17:30:34 UTC</pubDate>
      <guid>https://snipplr.com/view/13063/determine-free-disk-space-in-sql-server</guid>
    </item>
    <item>
      <title>(SQL) Connect SQL Server to a Windows Shared Folder - pollusb</title>
      <link>https://snipplr.com/view/12973/connect-sql-server-to-a-windows-shared-folder</link>
      <description>&lt;p&gt;This is how you can connect SQL Server to a Share folder for your backups. After running this, you will see the letter T: in the GUI. Each line must be run seperatly.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Mar 2009 20:46:52 UTC</pubDate>
      <guid>https://snipplr.com/view/12973/connect-sql-server-to-a-windows-shared-folder</guid>
    </item>
    <item>
      <title>(SQL) Detach and Attach all - pollusb</title>
      <link>https://snipplr.com/view/12967/detach-and-attach-all</link>
      <description>&lt;p&gt;I wrote that while working at CGI on OcÃ© project in 2009-03.&#13;
This script will help you migrate DB from one server to another. You have to use the source server to generate the script for the destination server.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Mar 2009 19:09:58 UTC</pubDate>
      <guid>https://snipplr.com/view/12967/detach-and-attach-all</guid>
    </item>
  </channel>
</rss>
