<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Rujith Anand's space</title>
    <link>http://www.rujith.net/RujithBlogTech/</link>
    <description>The techie in me</description>
    <language>en-us</language>
    <copyright>Rujith Anand</copyright>
    <lastBuildDate>Mon, 30 Aug 2010 22:13:00 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>rujith@rujith.net</managingEditor>
    <webMaster>rujith@rujith.net</webMaster>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=21d449c2-00fb-48b6-8ece-714c69180708</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,21d449c2-00fb-48b6-8ece-714c69180708.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,21d449c2-00fb-48b6-8ece-714c69180708.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=21d449c2-00fb-48b6-8ece-714c69180708</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Recently I was trying to find duplicate records in a table. The records are considered
duplicate if two columns in different records has the same value. For example if first
name and last name is same in record1 and record2, they considered as duplicate. 
</p>
        <p>
The below query will help to find the duplicate records. 
</p>
        <p>
SELECT fname, lname, COUNT(*) AS DuplicateCount FROM [Users]<br />
GROUP BY fname, lname HAVING COUNT(*) &gt; 1<br />
ORDER BY COUNT(*), fname. 
</p>
        <p>
  
</p>
        <p>
(I know this is pretty simple one, but most of the time you struggle for the simplest
query :) so thought of sharing it)
</p>
      </body>
      <title>Finding duplicate records based on multiple columns in SQL</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,21d449c2-00fb-48b6-8ece-714c69180708.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/08/30/FindingDuplicateRecordsBasedOnMultipleColumnsInSQL.aspx</link>
      <pubDate>Mon, 30 Aug 2010 22:13:00 GMT</pubDate>
      <description>&lt;p&gt;
Recently I was trying to find duplicate records in a table. The records are considered
duplicate if two columns in different records has the same value. For example if first
name and last name is same in record1 and record2, they considered as duplicate. 
&lt;/p&gt;
&lt;p&gt;
The below query will help to find the duplicate records. 
&lt;/p&gt;
&lt;p&gt;
SELECT fname, lname, COUNT(*) AS DuplicateCount FROM [Users]&lt;br&gt;
GROUP BY fname, lname HAVING COUNT(*) &amp;gt; 1&lt;br&gt;
ORDER BY COUNT(*), fname. 
&lt;p&gt;
&amp;nbsp; 
&lt;p&gt;
(I know this is pretty simple one, but most of the time you struggle for the simplest
query :) so thought of sharing it)
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,21d449c2-00fb-48b6-8ece-714c69180708.aspx</comments>
      <category>Database</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=89973a28-1e94-41d2-9855-413aee325702</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,89973a28-1e94-41d2-9855-413aee325702.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,89973a28-1e94-41d2-9855-413aee325702.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=89973a28-1e94-41d2-9855-413aee325702</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
String.Replace is not case insensitive, so what is the best way to do it. There are
several ways, if I think of the quickest one it is using regex.
</p>
        <pre class="csharpcode">
          <span class="kwrd">using</span> System.Text.RegularExpressions;<span class="kwrd">string</span><span class="kwrd">string</span> str
= <span class="str">"The quick brown Fox jumps over the lazy dog"</span>; <span class="kwrd">string</span> strReplace
= <span class="str">"cat"</span>; <span class="kwrd">string</span> result = Regex.Replace(str, <span class="str">"fox"</span>,
strReplace, RegexOptions.IgnoreCase);</pre>
        <p>
-Rujith
</p>
        <p>
 
</p>
        <style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>
      </body>
      <title>Quickest String.Replace case insensitive</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,89973a28-1e94-41d2-9855-413aee325702.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/04/10/QuickestStringReplaceCaseInsensitive.aspx</link>
      <pubDate>Sat, 10 Apr 2010 22:18:00 GMT</pubDate>
      <description>&lt;p&gt;
String.Replace is not case insensitive, so what is the best way to do it. There are
several ways, if I think of the quickest one it is using regex.
&lt;/p&gt;
&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Text.RegularExpressions;&lt;span class="kwrd"&gt;string&lt;/span&gt; &lt;span class="kwrd"&gt;string&lt;/span&gt; str
= &lt;span class="str"&gt;"The quick brown Fox jumps over the lazy dog"&lt;/span&gt;; &lt;span class="kwrd"&gt;string&lt;/span&gt; strReplace
= &lt;span class="str"&gt;"cat"&lt;/span&gt;; &lt;span class="kwrd"&gt;string&lt;/span&gt; result = Regex.Replace(str, &lt;span class="str"&gt;"fox"&lt;/span&gt;,
strReplace, RegexOptions.IgnoreCase);&lt;/pre&gt;
&lt;p&gt;
-Rujith
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;style type="text/css"&gt;.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,89973a28-1e94-41d2-9855-413aee325702.aspx</comments>
      <category>Coding</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=6b8104a3-84b0-410c-b946-cac1cb8755ba</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,6b8104a3-84b0-410c-b946-cac1cb8755ba.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,6b8104a3-84b0-410c-b946-cac1cb8755ba.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=6b8104a3-84b0-410c-b946-cac1cb8755ba</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I had lot of trouble in my last project due the html body onload event. The aspx pages
were relying lot on this event ( I agree its not the best way, but we don't have the
budget and time for to rebuild the entire site). These sites were AJAXyfied recently
using Telerik RadControls, and were not working in FireFox. I must admin Telerik controls
are really good, its makes your job very easy in AJAX world. Though I don't like their
quarterly release idea. YES, they release a new version every quarter... 
</p>
        <p>
So the problem in AJAX is, the page can be loaded asynchronously, so when the onload
event on the body is fired the controls may not be ready, so you get null exceptions. 
</p>
        <p>
The best way I found is to use the built in ‘pageLoad()’ method(this is a reserved
method). This will be called once all AJAX load events are finished. Remember you
can use this only in AJAX pages. Also this is consistent in different browsers. (If
you are going with FireFox you have to use window.load=function() instead onload=function())
</p>
        <p>
Coding is fun
</p>
        <p>
-Rujith
</p>
      </body>
      <title>Body onload and AJAX</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,6b8104a3-84b0-410c-b946-cac1cb8755ba.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/02/08/BodyOnloadAndAJAX.aspx</link>
      <pubDate>Mon, 08 Feb 2010 00:32:00 GMT</pubDate>
      <description>&lt;p&gt;
I had lot of trouble in my last project due the html body onload event. The aspx pages
were relying lot on this event ( I agree its not the best way, but we don't have the
budget and time for to rebuild the entire site). These sites were AJAXyfied recently
using Telerik RadControls, and were not working in FireFox. I must admin Telerik controls
are really good, its makes your job very easy in AJAX world. Though I don't like their
quarterly release idea. YES, they release a new version every quarter... 
&lt;/p&gt;
&lt;p&gt;
So the problem in AJAX is, the page can be loaded asynchronously, so when the onload
event on the body is fired the controls may not be ready, so you get null exceptions. 
&lt;/p&gt;
&lt;p&gt;
The best way I found is to use the built in ‘pageLoad()’ method(this is a reserved
method). This will be called once all AJAX load events are finished. Remember you
can use this only in AJAX pages. Also this is consistent in different browsers. (If
you are going with FireFox you have to use window.load=function() instead onload=function())
&lt;/p&gt;
&lt;p&gt;
Coding is fun
&lt;/p&gt;
&lt;p&gt;
-Rujith
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,6b8104a3-84b0-410c-b946-cac1cb8755ba.aspx</comments>
      <category>Coding</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=86152535-3c14-42da-939d-9d86384332a7</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=86152535-3c14-42da-939d-9d86384332a7</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Maximum request length matters when you want to allow upload/download of large files.
</p>
        <p>
This is one of the major change in IIS7. In previous version the default is 4MB, in
IIS7 its 28.6MB. So when you deploy your ASP.NET application you will see that it
will work for files larger than 4MB, but will give as soon as you cross the 28MB.
</p>
        <p>
In IIS 7, the attribute has been changed to maxAllowedContentLength and it has to
appear in &lt;system.webServer&gt; section (as for all IIS 7 settings). The complete
attribute will look something like this…
</p>
        <pre class="code">
          <span style="color: blue">&lt;</span>
          <span style="color: #a31515">system.webServer</span>
          <span style="color: blue">&gt;</span>
          <span style="color: blue">
            <br />
&lt;</span>
          <span style="color: #a31515">security </span>
          <span style="color: blue">&gt;
&lt;</span>
          <span style="color: #a31515">requestFiltering</span>
          <span style="color: blue">&gt;
&lt;</span>
          <span style="color: #a31515">requestLimits </span>
          <span style="color: red">maxAllowedContentLength</span>
          <span style="color: blue">=</span>"<span style="color: blue">3072000000</span>" <span style="color: blue">/&gt;
&lt;/</span><span style="color: #a31515">requestFiltering</span><span style="color: blue">&gt;
&lt;/</span><span style="color: #a31515">security</span><span style="color: blue">&gt;</span></pre>
        <p>
…
</p>
        <p>
 
</p>
        <p>
          <a href="http://11011.net/software/vspaste">
          </a>
        </p>
      </body>
      <title>Change Request length in IIS 7</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/02/07/ChangeRequestLengthInIIS7.aspx</link>
      <pubDate>Sun, 07 Feb 2010 00:18:00 GMT</pubDate>
      <description>&lt;p&gt;
Maximum request length matters when you want to allow upload/download of large files.
&lt;/p&gt;
&lt;p&gt;
This is one of the major change in IIS7. In previous version the default is 4MB, in
IIS7 its 28.6MB. So when you deploy your ASP.NET application you will see that it
will work for files larger than 4MB, but will give as soon as you cross the 28MB.
&lt;/p&gt;
&lt;p&gt;
In IIS 7, the attribute has been changed to maxAllowedContentLength and it has to
appear in &amp;lt;system.webServer&amp;gt; section (as for all IIS 7 settings). The complete
attribute will look something like this…
&lt;/p&gt;
&lt;pre class="code"&gt;&lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;system.webServer&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: blue"&gt;
&lt;br&gt;
&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;security &lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;requestFiltering&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;requestLimits &lt;/span&gt;&lt;span style="color: red"&gt;maxAllowedContentLength&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;3072000000&lt;/span&gt;" &lt;span style="color: blue"&gt;/&amp;gt;
&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;requestFiltering&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;security&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;
…
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</comments>
      <category>Coding</category>
      <category>WCF</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=26bcb1da-bfce-4c26-b5b5-240e7d32e3ef</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=26bcb1da-bfce-4c26-b5b5-240e7d32e3ef</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I ran into trouble during deploying a WCF service on IIS7 with https.
</p>
        <p>
There's a great resource on all things WCF Security related here
</p>
        <p>
          <a title="http://www.codeplex.com/WCFSecurity" href="http://www.codeplex.com/WCFSecurity">http://www.codeplex.com/WCFSecurity</a>
        </p>
        <p>
This helped me a lot.
</p>
      </body>
      <title>WCF Security Guidance</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/01/12/WCFSecurityGuidance.aspx</link>
      <pubDate>Tue, 12 Jan 2010 19:50:00 GMT</pubDate>
      <description>&lt;p&gt;
I ran into trouble during deploying a WCF service on IIS7 with https.
&lt;/p&gt;
&lt;p&gt;
There's a great resource on all things WCF Security related here
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://www.codeplex.com/WCFSecurity" href="http://www.codeplex.com/WCFSecurity"&gt;http://www.codeplex.com/WCFSecurity&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
This helped me a lot.
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</comments>
      <category>WCF</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=63430cde-d51d-4c82-8a67-3ec0498ddb27</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,63430cde-d51d-4c82-8a67-3ec0498ddb27.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,63430cde-d51d-4c82-8a67-3ec0498ddb27.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=63430cde-d51d-4c82-8a67-3ec0498ddb27</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
When you are working with Active Directory the following may be useful,
</p>
        <p>
Import and export directory objects – <a href="http://www.computerperformance.co.uk/Logon/Logon_CSVDE_Home.htm" target="_blank">CSVDE</a> &amp; <a href="http://www.computerperformance.co.uk/Logon/Logon_LDIF.htm" target="_blank">LDIFDE</a><br />
ex: from the command prompt try CSVDE -f C:\Exportfile.csv<br />
more help is available in <a href="http://support.microsoft.com/kb/237677" target="_blank">this
KB article</a>.
</p>
        <p>
Another useful utility while working with Active directory and LDAP(Light Weight Directory
Access Protocol) is <a href="http://technet.microsoft.com/en-us/library/cc773354(WS.10).aspx" target="_blank">ADSI
Edit (adsiedit.msc)</a>. <a href="http://www.computerperformance.co.uk/w2k3/utilities/adsi_edit.htm" target="_blank">Nice
link</a> if you want to know in detail.
</p>
        <p>
Also found this interesting link with attributes and its description for AD Users. <a href="http://www.winzero.ca/Active-Directory-users.htm" target="_blank">see
here</a>. And check <a href="http://halfloaded.com/blog/list-all-user-object-attributes-in-active-directory-schema-whew/" target="_blank">this
script</a> to list all User object attributes in active directory schema.
</p>
      </body>
      <title>Exporting Active Directory attributes</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,63430cde-d51d-4c82-8a67-3ec0498ddb27.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/01/10/ExportingActiveDirectoryAttributes.aspx</link>
      <pubDate>Sun, 10 Jan 2010 22:23:00 GMT</pubDate>
      <description>&lt;p&gt;
When you are working with Active Directory the following may be useful,
&lt;/p&gt;
&lt;p&gt;
Import and export directory objects – &lt;a href="http://www.computerperformance.co.uk/Logon/Logon_CSVDE_Home.htm" target="_blank"&gt;CSVDE&lt;/a&gt; &amp;amp; &lt;a href="http://www.computerperformance.co.uk/Logon/Logon_LDIF.htm" target="_blank"&gt;LDIFDE&lt;/a&gt;
&lt;br&gt;
ex: from the command prompt try CSVDE -f C:\Exportfile.csv&lt;br&gt;
more help is available in &lt;a href="http://support.microsoft.com/kb/237677" target="_blank"&gt;this
KB article&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Another useful utility while working with Active directory and LDAP(Light Weight Directory
Access Protocol) is &lt;a href="http://technet.microsoft.com/en-us/library/cc773354(WS.10).aspx" target="_blank"&gt;ADSI
Edit (adsiedit.msc)&lt;/a&gt;. &lt;a href="http://www.computerperformance.co.uk/w2k3/utilities/adsi_edit.htm" target="_blank"&gt;Nice
link&lt;/a&gt; if you want to know in detail.
&lt;/p&gt;
&lt;p&gt;
Also found this interesting link with attributes and its description for AD Users. &lt;a href="http://www.winzero.ca/Active-Directory-users.htm" target="_blank"&gt;see
here&lt;/a&gt;. And check &lt;a href="http://halfloaded.com/blog/list-all-user-object-attributes-in-active-directory-schema-whew/" target="_blank"&gt;this
script&lt;/a&gt; to list all User object attributes in active directory schema.
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,63430cde-d51d-4c82-8a67-3ec0498ddb27.aspx</comments>
      <category>Coding</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=a1b30200-8959-4137-9419-caf961428798</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,a1b30200-8959-4137-9419-caf961428798.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,a1b30200-8959-4137-9419-caf961428798.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=a1b30200-8959-4137-9419-caf961428798</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
ADO.NET data provider for Oracle is dying. ADO.NET team has decided to kill(deprecate)
it in .NET 4.0. How sad isn’t it? Read more about the story on <a href="http://blogs.msdn.com/adonet/archive/2009/06/15/system-data-oracleclient-update.aspx" target="_blank">ADO.NET
team blog</a></p>
        <p>
Though sometimes I feel its unnecessary to have a duplicate copy of Oracle data provider.
Most of the people use ODP.NET or some other third party client. Nice comparison <a href="http://msdn.microsoft.com/en-us/library/ms971518.aspx" target="_blank">here</a> (and
that is why people don’t use .NET Oracle client :))
</p>
        <p>
One very bad thing I noticed about these providers is both of them need Oracle client
installed. For the MS provider(System.Data.OracleClient) the minimum requirement is
Oracle 8i Release 3 (8.1.7) Client or later. Check the requirement in detail here <a href="http://msdn.microsoft.com/en-us/library/2d7h4ycx.aspx" target="_blank">System
Requirements (Oracle).</a><br />
For the ODP.NET Oracle client version 9.2 or later.
</p>
        <p>
Its not always possible to install a large application like Oracle client in some
scenario, so there is an alternative without installing the Oracle client, use <a href="http://www.oracle.com/technology/tech/oci/instantclient/index.html" target="_blank">Oracle
Database Instant Client</a>. Just put Oracle Instant Client in the same folder as
your executable file.
</p>
        <p>
-Rujith
</p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:214bbe38-79b4-4114-940b-6a47b3b45a2d" class="wlWriterEditableSmartContent">Technorati
Tags: <a href="http://technorati.com/tags/Oracle" rel="tag">Oracle</a>,<a href="http://technorati.com/tags/ADO.NET" rel="tag">ADO.NET</a>,<a href="http://technorati.com/tags/Oracle+Data+Client" rel="tag">Oracle
Data Client</a>,<a href="http://technorati.com/tags/Oracle+Instant+client" rel="tag">Oracle
Instant client</a></div>
      </body>
      <title>System.Data.OracleClient is dying</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,a1b30200-8959-4137-9419-caf961428798.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2009/12/04/SystemDataOracleClientIsDying.aspx</link>
      <pubDate>Fri, 04 Dec 2009 15:58:00 GMT</pubDate>
      <description>&lt;p&gt;
ADO.NET data provider for Oracle is dying. ADO.NET team has decided to kill(deprecate)
it in .NET 4.0. How sad isn’t it? Read more about the story on &lt;a href="http://blogs.msdn.com/adonet/archive/2009/06/15/system-data-oracleclient-update.aspx" target="_blank"&gt;ADO.NET
team blog&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Though sometimes I feel its unnecessary to have a duplicate copy of Oracle data provider.
Most of the people use ODP.NET or some other third party client. Nice comparison &lt;a href="http://msdn.microsoft.com/en-us/library/ms971518.aspx" target="_blank"&gt;here&lt;/a&gt; (and
that is why people don’t use .NET Oracle client :))
&lt;/p&gt;
&lt;p&gt;
One very bad thing I noticed about these providers is both of them need Oracle client
installed. For the MS provider(System.Data.OracleClient) the minimum requirement is
Oracle 8i Release 3 (8.1.7) Client or later. Check the requirement in detail here &lt;a href="http://msdn.microsoft.com/en-us/library/2d7h4ycx.aspx" target="_blank"&gt;System
Requirements (Oracle).&lt;/a&gt;
&lt;br&gt;
For the ODP.NET Oracle client version 9.2 or later.
&lt;/p&gt;
&lt;p&gt;
Its not always possible to install a large application like Oracle client in some
scenario, so there is an alternative without installing the Oracle client, use &lt;a href="http://www.oracle.com/technology/tech/oci/instantclient/index.html" target="_blank"&gt;Oracle
Database Instant Client&lt;/a&gt;. Just put Oracle Instant Client in the same folder as
your executable file.
&lt;/p&gt;
&lt;p&gt;
-Rujith
&lt;/p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:214bbe38-79b4-4114-940b-6a47b3b45a2d" class="wlWriterEditableSmartContent"&gt;Technorati
Tags: &lt;a href="http://technorati.com/tags/Oracle" rel="tag"&gt;Oracle&lt;/a&gt;,&lt;a href="http://technorati.com/tags/ADO.NET" rel="tag"&gt;ADO.NET&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Oracle+Data+Client" rel="tag"&gt;Oracle
Data Client&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Oracle+Instant+client" rel="tag"&gt;Oracle
Instant client&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,a1b30200-8959-4137-9419-caf961428798.aspx</comments>
      <category>Coding</category>
      <category>Database</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=91d5fff8-299e-4285-9b9f-7fca352d3a0e</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,91d5fff8-299e-4285-9b9f-7fca352d3a0e.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,91d5fff8-299e-4285-9b9f-7fca352d3a0e.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=91d5fff8-299e-4285-9b9f-7fca352d3a0e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nine Options for Managing Persistent User State in Your ASP.NET Application… one of
the basic things to learn when you start ASP.NET training… :) I am forgetting simple
things… 
</p>
        <p>
  
</p>
        <p>
so the methods are
</p>
        <ol>
          <li>
Application 
</li>
          <li>
Cookies 
</li>
          <li>
Form Post / Hidden Form Field 
</li>
          <li>
Query String 
</li>
          <li>
Session 
</li>
          <li>
New State Containers in ASP.NET 
</li>
          <li>
Cache 
</li>
          <li>
Context 
</li>
          <li>
ViewState 
</li>
          <li>
Web.config and Machine.config Files 
</li>
          <li>
Profile (ASP.NET 2.0) ??</li>
        </ol>
        <p>
more details are on <a href="http://msdn.microsoft.com/en-us/magazine/cc300437.aspx" target="_blank">MSDN</a></p>
        <p>
 
</p>
        <p>
        </p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c11a68db-962b-4a91-9bee-6d61bb323c97" class="wlWriterEditableSmartContent">Technorati
Tags: <a href="http://technorati.com/tags/ASP.NET" rel="tag">ASP.NET</a>,<a href="http://technorati.com/tags/Persisting+User+state" rel="tag">Persisting
User state</a></div>
      </body>
      <title>Going back to basics&amp;hellip;</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,91d5fff8-299e-4285-9b9f-7fca352d3a0e.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2009/11/23/GoingBackToBasicshellip.aspx</link>
      <pubDate>Mon, 23 Nov 2009 18:13:17 GMT</pubDate>
      <description>&lt;p&gt;
Nine Options for Managing Persistent User State in Your ASP.NET Application… one of
the basic things to learn when you start ASP.NET training… :) I am forgetting simple
things… 
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp; 
&lt;p&gt;
so the methods are
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Application 
&lt;li&gt;
Cookies 
&lt;li&gt;
Form Post / Hidden Form Field 
&lt;li&gt;
Query String 
&lt;li&gt;
Session 
&lt;li&gt;
New State Containers in ASP.NET 
&lt;li&gt;
Cache 
&lt;li&gt;
Context 
&lt;li&gt;
ViewState 
&lt;li&gt;
Web.config and Machine.config Files 
&lt;li&gt;
Profile (ASP.NET 2.0) ??&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
more details are on &lt;a href="http://msdn.microsoft.com/en-us/magazine/cc300437.aspx" target="_blank"&gt;MSDN&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c11a68db-962b-4a91-9bee-6d61bb323c97" class="wlWriterEditableSmartContent"&gt;Technorati
Tags: &lt;a href="http://technorati.com/tags/ASP.NET" rel="tag"&gt;ASP.NET&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Persisting+User+state" rel="tag"&gt;Persisting
User state&lt;/a&gt;
&lt;/div&gt;
&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,91d5fff8-299e-4285-9b9f-7fca352d3a0e.aspx</comments>
      <category>Everything</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=56c6f8b8-5b79-4619-9eea-0d35422e3b29</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,56c6f8b8-5b79-4619-9eea-0d35422e3b29.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,56c6f8b8-5b79-4619-9eea-0d35422e3b29.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=56c6f8b8-5b79-4619-9eea-0d35422e3b29</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Found this interesting post <a href="http://blogs.msdn.com/jmeier/archive/2009/11/23/patterns-and-practices-for-distributed-teams.aspx" target="_blank">here</a>…
</p>
        <p>
I am sure all of us (s/w fellows) must have come across so called ‘distributed team’…
nice point to note… 
</p>
        <p>
-Rujith
</p>
        <p>
        </p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:45922b5f-3835-49ba-a5a4-78e4dd8220ed" class="wlWriterEditableSmartContent">Technorati
Tags: <a href="http://technorati.com/tags/Distributed+Teams" rel="tag">Distributed
Teams</a></div>
      </body>
      <title>Patterns and Practices for Distributed Teams</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,56c6f8b8-5b79-4619-9eea-0d35422e3b29.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2009/11/23/PatternsAndPracticesForDistributedTeams.aspx</link>
      <pubDate>Mon, 23 Nov 2009 01:32:00 GMT</pubDate>
      <description>&lt;p&gt;
Found this interesting post &lt;a href="http://blogs.msdn.com/jmeier/archive/2009/11/23/patterns-and-practices-for-distributed-teams.aspx" target="_blank"&gt;here&lt;/a&gt;…
&lt;/p&gt;
&lt;p&gt;
I am sure all of us (s/w fellows) must have come across so called ‘distributed team’…
nice point to note… 
&lt;/p&gt;
&lt;p&gt;
-Rujith
&lt;/p&gt;
&lt;p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:45922b5f-3835-49ba-a5a4-78e4dd8220ed" class="wlWriterEditableSmartContent"&gt;Technorati
Tags: &lt;a href="http://technorati.com/tags/Distributed+Teams" rel="tag"&gt;Distributed
Teams&lt;/a&gt;
&lt;/div&gt;
&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,56c6f8b8-5b79-4619-9eea-0d35422e3b29.aspx</comments>
      <category>Everything</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=2fff7885-a97a-474e-a703-72e534a50cdb</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=2fff7885-a97a-474e-a703-72e534a50cdb</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
See how you can things more complicated… <a href="http://msdn.microsoft.com/en-us/library/ms731734.aspx" target="_blank">click
here</a>… 
</p>
        <p>
 
</p>
        <p>
and how you can make things simpler… <a href="http://winterdom.com/2007/02/wcfconfigurationcomplexity" target="_blank">here</a></p>
      </body>
      <title>WCF configuration schema is complicated !</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2009/11/10/WCFConfigurationSchemaIsComplicated.aspx</link>
      <pubDate>Tue, 10 Nov 2009 14:58:17 GMT</pubDate>
      <description>&lt;p&gt;
See how you can things more complicated… &lt;a href="http://msdn.microsoft.com/en-us/library/ms731734.aspx" target="_blank"&gt;click
here&lt;/a&gt;… 
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
and how you can make things simpler… &lt;a href="http://winterdom.com/2007/02/wcfconfigurationcomplexity" target="_blank"&gt;here&lt;/a&gt;
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</comments>
      <category>WCF</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=5a258ad2-645d-4612-bd6d-dc1113ec4f08</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,5a258ad2-645d-4612-bd6d-dc1113ec4f08.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,5a258ad2-645d-4612-bd6d-dc1113ec4f08.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=5a258ad2-645d-4612-bd6d-dc1113ec4f08</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For my new project I had to create a plan, I guess all the project managers need one…
and the best way to represent the plan is in Gantt chart. So that your boss will know
when each milestone will be achieved in the timeline.<br />
I searched in the web for free Gantt chart tools and couldn’t find any good ones,
and we didn't had budget to buy one. 
</p>
        <p>
Then I decided to use the almighty excel to create one. It was very easy to create
one, excel support charts, what else you need. Excel is really powerful isn't it..I
remember when I used to share accommodation with my friends I used excel spreadsheet
to calculate our common expenses, though some of them argue there is mistake in the
formula they are paying more :)
</p>
        <p>
So to cut the crap out, the Excel Project Plan Gantt chart is available <a title="Project plan Gantt chart in Excel" href="http://www.rujith.net/RujithBlogTech/content/binary/ExcelGanttchart.zip" target="_blank">here</a> for
download. In short the features include<br />
1. Gantt chart of the project plan<br />
2. Need only minimal inputs(project start date, tasks and task estimates)<br />
3. The formula takes care of Weekends(NOT holidays) while calculating dates.<br />
3. Fully customizable. you are free to change the formula to suit your purpose. you
can even convert it into an excel template Gantt chart if you like.
</p>
        <p>
Rest you can see yourself in the spreadsheet.
</p>
        <p>
Please feel free to leave your comments and suggestions in this blog. 
</p>
        <p>
Some of the references I have used are below
</p>
        <p>
1. Using Excel to Create a Gantt Chart by Michele McDonough<br /><a title="http://www.brighthub.com/office/project-management/articles/3418.aspx" href="http://www.brighthub.com/office/project-management/articles/3418.aspx">http://www.brighthub.com/office/project-management/articles/3418.aspx</a></p>
        <p>
2. and of course office online excel help
</p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:04277ed2-2f67-44fa-8d9c-36c5f0d438f7" class="wlWriterEditableSmartContent">
          <p>
Excel spreadsheet Project plan with Gantt Chart can be <a href="http://www.rujith.net/RujithBlogTech/content/binary/ExcelGanttchart.zip" target="_blank">Download
here</a></p>
        </div>
        <p>
        </p>
        <p>
-Rujith
</p>
        <p>
        </p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:37df8426-e22c-4997-925f-42e04ab45895" class="wlWriterEditableSmartContent">Technorati
Tags: <a href="http://technorati.com/tags/Project+plan" rel="tag">Project plan</a>,<a href="http://technorati.com/tags/Gantt+Chart" rel="tag">Gantt
Chart</a>,<a href="http://technorati.com/tags/Excel+2007" rel="tag">Excel 2007</a>,<a href="http://technorati.com/tags/Gantt+chart+in+Excel+2007" rel="tag">Gantt
chart in Excel 2007</a></div>
        <a href="http://www.rujith.net/RujithBlogTech/content/binary/ExcelGanttchart.zip">ExcelGanttchart.zip
(18.01 KB)</a>
      </body>
      <title>Project plan Gantt Chart using Excel 2007</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,5a258ad2-645d-4612-bd6d-dc1113ec4f08.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2009/09/26/ProjectPlanGanttChartUsingExcel2007.aspx</link>
      <pubDate>Sat, 26 Sep 2009 18:29:00 GMT</pubDate>
      <description>&lt;p&gt;
For my new project I had to create a plan, I guess all the project managers need one…
and the best way to represent the plan is in Gantt chart. So that your boss will know
when each milestone will be achieved in the timeline.&lt;br&gt;
I searched in the web for free Gantt chart tools and couldn’t find any good ones,
and we didn't had budget to buy one. 
&lt;/p&gt;
&lt;p&gt;
Then I decided to use the almighty excel to create one. It was very easy to create
one, excel support charts, what else you need. Excel is really powerful isn't it..I
remember when I used to share accommodation with my friends I used excel spreadsheet
to calculate our common expenses, though some of them argue there is mistake in the
formula they are paying more :)
&lt;/p&gt;
&lt;p&gt;
So to cut the crap out, the Excel Project Plan Gantt chart is available &lt;a title="Project plan Gantt chart in Excel" href="http://www.rujith.net/RujithBlogTech/content/binary/ExcelGanttchart.zip" target="_blank"&gt;here&lt;/a&gt; for
download. In short the features include&lt;br&gt;
1. Gantt chart of the project plan&lt;br&gt;
2. Need only minimal inputs(project start date, tasks and task estimates)&lt;br&gt;
3. The formula takes care of Weekends(NOT holidays) while calculating dates.&lt;br&gt;
3. Fully customizable. you are free to change the formula to suit your purpose. you
can even convert it into an excel template Gantt chart if you like.
&lt;/p&gt;
&lt;p&gt;
Rest you can see yourself in the spreadsheet.
&lt;/p&gt;
&lt;p&gt;
Please feel free to leave your comments and suggestions in this blog. 
&lt;/p&gt;
&lt;p&gt;
Some of the references I have used are below
&lt;/p&gt;
&lt;p&gt;
1. Using Excel to Create a Gantt Chart by Michele McDonough&lt;br&gt;
&lt;a title="http://www.brighthub.com/office/project-management/articles/3418.aspx" href="http://www.brighthub.com/office/project-management/articles/3418.aspx"&gt;http://www.brighthub.com/office/project-management/articles/3418.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
2. and of course office online excel help
&lt;/p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:04277ed2-2f67-44fa-8d9c-36c5f0d438f7" class="wlWriterEditableSmartContent"&gt;
&lt;p&gt;
Excel spreadsheet Project plan with Gantt Chart can be &lt;a href="http://www.rujith.net/RujithBlogTech/content/binary/ExcelGanttchart.zip" target="_blank"&gt;Download
here&lt;/a&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
-Rujith
&lt;/p&gt;
&lt;p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:37df8426-e22c-4997-925f-42e04ab45895" class="wlWriterEditableSmartContent"&gt;Technorati
Tags: &lt;a href="http://technorati.com/tags/Project+plan" rel="tag"&gt;Project plan&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Gantt+Chart" rel="tag"&gt;Gantt
Chart&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Excel+2007" rel="tag"&gt;Excel 2007&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Gantt+chart+in+Excel+2007" rel="tag"&gt;Gantt
chart in Excel 2007&lt;/a&gt;
&lt;/div&gt;
&gt;
&lt;a href="http://www.rujith.net/RujithBlogTech/content/binary/ExcelGanttchart.zip"&gt;ExcelGanttchart.zip
(18.01 KB)&lt;/a&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,5a258ad2-645d-4612-bd6d-dc1113ec4f08.aspx</comments>
      <category>Office</category>
    </item>
  </channel>
</rss>