<?xml version="1.0" encoding="utf-8"?>          <rss version="2.0">     <channel>     <title>Cozmo&apos;s Dev Blog - MS SQL SERVER</title>     <link>http://www.myinternetisbroken.com/index.cfm</link>     <description>The Dev Blog</description>     <language>en-us</language>     <pubDate>Sun, 05 Sep 2010 08:38:53-0700</pubDate>     <lastBuildDate>Tue, 21 Oct 2008 00:13:00-0700</lastBuildDate>     <generator>BlogCFC</generator>     <docs>http://blogs.law.harvard.edu/tech/rss</docs>     <managingEditor>coz@myinternetisbroken.com</managingEditor>     <webMaster>coz@myinternetisbroken.com</webMaster>          <item>      <title>Just added &gt;&gt; CF_jscalendar &amp; FileUpload.cfc</title>      <link>http://www.myinternetisbroken.com/index.cfm/2008/10/21/Just-added--CFjscalendar--FileUploadcfc</link>      <description>            CF_jscalendar is a port of &lt;a href=&quot;http://www.dynarch.com/projects/calendar/&quot; target=&quot;_blank&quot;&gt; jscalendar from dynarch.com &lt;/a&gt; for CF 5 and above.  FileUpload.cfc is a very simple File Upload component that uploads a file and sanitizes the file name for Windows servers. It was tested on on CF 7 and above and should work on Railo 2+ and (Open) BlueDragon 6.x and above.   &lt;B&gt;Update:&lt;/B&gt;  Tuesday, 10/21/08 I added set_SQL_permissions.cfm.  It is just a little throw away script that creates the SQL need to grants SELECT, INSERT, DELETE, UPDATE permissions to tables for MSSQL. Setting permissions using the SQL Server Management Studio, in a word, sucks.       </description>            <category>Open Sores</category>                <category>JavaScript</category>                <category>MS SQL SERVER</category>                <category>ColdFusion</category>                <pubDate>Tue, 21 Oct 2008 00:13:00-0700</pubDate>      <guid>http://www.myinternetisbroken.com/index.cfm/2008/10/21/Just-added--CFjscalendar--FileUploadcfc</guid>           </item>          <item>      <title>Setting Permissions after importing data into MS SQL Server.</title>      <link>http://www.myinternetisbroken.com/index.cfm/2007/4/13/Setting-Permissions-after-importing-data-into-MS-SQL-Server</link>      <description>            &lt;p&gt;At work we use MS SQL Server for our intranet. A lot of times we have to import   data from the live server to development box do we can trouble shoot problems   or need to copy tables from development to the live server for a launch. When   you use the import/export function in SQL Server Enterprise Manager/ Management   Studio you lose all your permissions and your Identity specifications. Setting   permissions on Server Enterprise Manager/ Management Studio is a total pain   in the ass. So I wrote this little script to help speed up the process&lt;/p&gt; &lt;p&gt;&lt;b&gt;Notes: &lt;/b&gt;&lt;/p&gt; &lt;p&gt;These are all the permissions&amp;quot;&lt;/p&gt; &lt;p&gt;GRANT SELECT, INSERT, DELETE, REFERENCES, UPDATE, CONTROL, TAKE OWNERSHIP,   ALTER, VIEW DEFINITION&lt;/p&gt; &lt;p&gt;I use &lt;a href=&quot;http://sqlmanager.net/products/mssql/manager/&quot;&gt; EMS SQL Manager 2005 Lite for SQL Server&lt;/a&gt; to   run to run the SQL. Enterprise Manager/ Management Studio doesn&amp;#8217;t seem   to want to execute the SQL statement for some reason.&lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;/p&gt;  &lt;code&gt;  &lt;cfset tmp_user = &quot;someuser,someotheruser&quot;&gt; &lt;cfset tmp_Permissions = &quot;SELECT, INSERT, DELETE, UPDATE&quot;&gt;    &lt;PRE &gt; &lt;cfoutput&gt; &lt;CFLOOp  list=&quot;#tmp_user#&quot; index=&quot;index1&quot; &gt;   &lt;CFLOOp  list=&quot;SomeTable,SomeOtherTable,YetOtherTable&quot; index=&quot;indx2&quot; &gt;  GRANT #tmp_Permissions# ON [dbo].[#indx2#] TO [#index1#] GO  &lt;/CFLOOp&gt; &lt;/CFLOOp&gt; &lt;/cfoutput&gt; &lt;/PRE&gt; &lt;/code&gt;       </description>            <category>Tools</category>                <category>MS SQL SERVER</category>                <category>ColdFusion</category>                <pubDate>Fri, 13 Apr 2007 19:30:00-0700</pubDate>      <guid>http://www.myinternetisbroken.com/index.cfm/2007/4/13/Setting-Permissions-after-importing-data-into-MS-SQL-Server</guid>           </item>     </channel></rss>