<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Technical Aspects in IT</title>
	<atom:link href="http://scmay.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://scmay.wordpress.com</link>
	<description>Stand on the shoulders of giants - http://scholar.google.com</description>
	<lastBuildDate>Thu, 26 Nov 2009 00:21:49 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='scmay.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ca69d996ab9c934fce13924fe6dbb782?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Technical Aspects in IT</title>
		<link>http://scmay.wordpress.com</link>
	</image>
			<item>
		<title>&#8230; may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY constraints.</title>
		<link>http://scmay.wordpress.com/2009/11/26/may-cause-cycles-or-multiple-cascade-paths-specify-on-delete-no-action-or-on-update-no-action-or-modify-other-foreign-key-constraints/</link>
		<comments>http://scmay.wordpress.com/2009/11/26/may-cause-cycles-or-multiple-cascade-paths-specify-on-delete-no-action-or-on-update-no-action-or-modify-other-foreign-key-constraints/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 00:20:13 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[sql server 2005 express]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=143</guid>
		<description><![CDATA[Chances are, you are here because you have googled for the above mentioned error from SQL Server.
In case you did not understand what it means, I&#8217;ve found a simple yet effective explanation in this link
I quote
CREATE TABLE foo (
    fooid int IDENTITY,
    foovalue varchar(47)
    )
CREATE TABLE [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=143&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Chances are, you are here because you have googled for the above mentioned error from SQL Server.</p>
<p>In case you did not understand what it means, I&#8217;ve found a simple yet effective explanation in this <a href="http://lists.evolt.org/archive/Week-of-Mon-20030421/139403.html">link</a></p>
<p>I quote</p>
<blockquote><p>CREATE TABLE foo (<br />
    fooid int IDENTITY,<br />
    foovalue varchar(47)<br />
    )</p>
<p>CREATE TABLE bar (<br />
    barid int IDENTITY,<br />
    barvalue varchar(47),<br />
    fooid int<br />
    CONSTRAINT fk_bar_foo FOREIGN KEY(fooid)<br />
        REFERENCES foo(fooid)<br />
            ON UPDATE<br />
                CASCADE<br />
            ON DELETE<br />
                CASCADE<br />
    )</p>
<p>CREATE TABLE baz (<br />
    bazid int IDENTITY,<br />
    bazvalue varchar(47),<br />
    barid int<br />
    CONSTRAINT fk_baz_bar FOREIGN KEY(barid)<br />
        REFERENCES bar(barid)<br />
            ON UPDATE<br />
                CASCADE<br />
            ON DELETE<br />
                CASCADE<br />
    )
</p></blockquote>
<blockquote><p>SQL Server will say, hey, if we delete a row from foo, well, we could delete<br />
multiple rows from bar, and then we&#8217;ll have to delete multiple rows from<br />
baz, and that could go on forever! So let&#8217;s issue a warning about &#8220;cycles or<br />
multiple cascade paths&#8221; and disallow it.</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=143&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/11/26/may-cause-cycles-or-multiple-cascade-paths-specify-on-delete-no-action-or-on-update-no-action-or-modify-other-foreign-key-constraints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Wave</title>
		<link>http://scmay.wordpress.com/2009/10/22/google-wave/</link>
		<comments>http://scmay.wordpress.com/2009/10/22/google-wave/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 22:56:17 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google wave]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=128</guid>
		<description><![CDATA[Add me.
scmay83@googlewave.com
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=128&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Add me.<br />
scmay83@googlewave.com</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=128&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/10/22/google-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Using .NET to export data to Excel</title>
		<link>http://scmay.wordpress.com/2009/08/06/using-net-to-export-data-to-excel/</link>
		<comments>http://scmay.wordpress.com/2009/08/06/using-net-to-export-data-to-excel/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 04:37:47 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[pastebin]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=122</guid>
		<description><![CDATA[Asked to transfer data from database in .NET VS2005 to Ms Excel (2007)
Tons of links/codes out there, but with many errors too.
Links that helped me:
How to Export Data to Excel from an ASP.NET Application + Avoid the File Format Differ Prompt &#8211; this summarizes a lot of the questions about exporting to Excel

Working with MS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=122&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Asked to transfer data from database in .NET VS2005 to Ms Excel (2007)</p>
<p>Tons of links/codes out there, but with many errors too.</p>
<p>Links that helped me:<br />
<a href="http://blogs.msdn.com/erikaehrli/archive/2009/01/30/how-to-export-data-to-excel-from-an-asp-net-application-avoid-the-file-format-differ-prompt.aspx">How to Export Data to Excel from an ASP.NET Application + Avoid the File Format Differ Prompt &#8211; this summarizes a lot of the questions about exporting to Excel</a>
<p>
<a href="http://www.codeproject.com/KB/miscctrl/Excel_data_access.aspx#ways">Working with MS Excel(xls / xlsx) Using MDAC and Oledb &#8211; have not had a chance to look at this but it looks promising (VS2008)</a></p>
<p>Solutions that I came up with (with some improvisation)<br />
<a href="http://scmay.pastebin.com/f43f9172d">Solution 1</a><br />
This works, but always prompt with the error <a href="http://support.microsoft.com/kb/948615">The file you are trying to open, &#8216;name.ext&#8217;, is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?</a><br />
Solution to that issue is given in the link.</p>
<p><a href="http://scmay.pastebin.com/f5b255768">Solution 2</a> which uses OLEDB, improvised from the original code <a href="http://davidhayden.com/blog/dave/archive/2006/05/26/2973.aspx">here</a>. This looks good, but I haven&#8217;t done enough testing yet what happens when its opened in Excel 03 and client environment&#8230;will update this in due time.</p>
<p>* Tried <a href="http://www.pastebin.com">pastebin</a>, looks good. Lets hope my code remains permanent, and doesn&#8217;t disappear after a while.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=122&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/08/06/using-net-to-export-data-to-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Errors upgrading SQL Server 2005 to SQL Server 2008</title>
		<link>http://scmay.wordpress.com/2009/06/26/errors-upgrading-sql-server-2005-to-sql-server-2008/</link>
		<comments>http://scmay.wordpress.com/2009/06/26/errors-upgrading-sql-server-2005-to-sql-server-2008/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 01:26:45 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[t-sql]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=110</guid>
		<description><![CDATA[I have an existing SQL Server 2005 database which I would like to use in SQL Server 2008 database.
Everyone knows there are 2 ways to do this. Attach a database ( you need mdf and ldf file ) or Restore from a backup file (thus you need .bak file)
As much as I tried attaching the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=110&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have an existing SQL Server 2005 database which I would like to use in SQL Server 2008 database.</p>
<p>Everyone knows there are 2 ways to do this. Attach a database ( you need mdf and ldf file ) or Restore from a backup file (thus you need .bak file)</p>
<p>As much as I tried attaching the database, I could not update my login ID in the database (using the conventional sp_change_users_login &#8216;Auto_Fix&#8217;, &#8216;MyLoginName&#8217;)</p>
<p>So, I tried restoring the database. Steps followed are from <a href="http://blog.sqlauthority.com/2007/02/25/sql-server-restore-database-backup-using-sql-script-t-sql/">here </a></p>
<p>I hit an error at &#8211;Restore Database step</p>
<blockquote><p>Msg 3154, Level 16, State 4, Line 1<br />
The backup set holds a backup of a database other than the existing &#8216;MyDatabaseName&#8217; database.<br />
Msg 3013, Level 16, State 1, Line 1<br />
RESTORE DATABASE is terminating abnormally.</p></blockquote>
<p>Which brings me to this <a href="http://blog.sqlauthority.com/2007/09/27/sql-server-fix-error-3154-the-backup-set-holds-a-backup-of-a-database-other-than-the-existing-database/">link</a></p>
<p>So the fix for me is</p>
<blockquote><p>
USE master<br />
ALTER DATABASE MyDatabaseName SET SINGLE_USER WITH ROLLBACK IMMEDIATE<br />
RESTORE DATABASE MyDatabaseName<br />
FROM DISK = &#8216;C:\MyDatabaseName.bak&#8217;<br />
WITH MOVE &#8216;YourMDFLogicalName&#8217; TO &#8216;D:\DataYourMDFFile.mdf&#8217;,<br />
REPLACE
</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=110&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/06/26/errors-upgrading-sql-server-2005-to-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>If it doesn&#8217;t break, don&#8217;t change it</title>
		<link>http://scmay.wordpress.com/2009/06/09/if-it-doesnt-break-dont-change-it/</link>
		<comments>http://scmay.wordpress.com/2009/06/09/if-it-doesnt-break-dont-change-it/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 23:52:22 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=108</guid>
		<description><![CDATA[I noticed something wasn&#8217;t quite right in one of the database settings. Sure, it won&#8217;t be obvious and it will never get spotted on the surface if everything is entered via the system, but if you were to manually enter via database, sooner or later some error is going to happen. I was thinking of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=108&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I noticed something wasn&#8217;t quite right in one of the database settings. Sure, it won&#8217;t be obvious and it will never get spotted on the surface if everything is entered via the system, but if you were to manually enter via database, sooner or later some error is going to happen. I was thinking of fixing it, but then I remembered a colleague once said, &#8220;If it doesn&#8217;t break, don&#8217;t change it&#8221; (it might become worse after changing it)</p>
<p>Which was what happened to my VS2005, which was running pretty slow and I decided to &#8216;clean&#8217; the registry manager, till I realised that &#8216;cleaning&#8217; meant removing most of the keys (which meant that the program was really stupid to identify which keys should be removed and which shouldn&#8217;t). Sad to say, Resharper could not work on my VS2005 and also made my VS weird. (Eg I cannot add a new file in a project) </p>
<p>VS2003 went through the whole clean-up-and-reinstall process, but since I was mainly working on VS2005 and the reinstall usually takes up a lot of time I had to do without Resharper for sometime. Strangely, I managed to install Resharper again the other day after months without it (It did not work previously, clean-and-install, contacting Helpdesk and etc)</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=108&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/06/09/if-it-doesnt-break-dont-change-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Drive detected in Device Manager but not shown in My Computer</title>
		<link>http://scmay.wordpress.com/2009/06/02/drive-detected-in-device-manager-but-not-shown-in-my-computer/</link>
		<comments>http://scmay.wordpress.com/2009/06/02/drive-detected-in-device-manager-but-not-shown-in-my-computer/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 22:35:04 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=106</guid>
		<description><![CDATA[My pendrive does not get automatically displayed in my work PC (XP) but it is displayed in the device manager. 
Easy way out
Click Start. Right click My Computer &#62; Manage. Select Disk Management. You should see your drive there. Right click and Change Drive Letter and Paths. 

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=106&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My pendrive does not get automatically displayed in my work PC (XP) but it is displayed in the device manager. </p>
<p>Easy way out</p>
<p>Click Start. Right click My Computer &gt; Manage. Select Disk Management. You should see your drive there. Right click and Change Drive Letter and Paths. </p>
<p><a href="http://www.daniweb.com/forums/thread43251.html#"></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=106&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/06/02/drive-detected-in-device-manager-but-not-shown-in-my-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Agile Business Analysis</title>
		<link>http://scmay.wordpress.com/2009/03/24/agile-business-analysis/</link>
		<comments>http://scmay.wordpress.com/2009/03/24/agile-business-analysis/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 03:05:42 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Business analyst]]></category>
		<category><![CDATA[ellen gottesdiener]]></category>
		<category><![CDATA[IIBA]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=99</guid>
		<description><![CDATA[I had the privilege yesterday to attend the Agile Business Analysis talk by Ellen Gottesdiener, the one hour session for those who were unable to attend the ongoing Software Development Conference.
It was interesting being amongst the Business Analysts, learning what they did, how Agile fits into the business perspective and something that I took away with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=99&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had the privilege yesterday to attend the <a href="http://australia.theiiba.org/default.asp?contentID=596">Agile Business Analysis</a> talk by <a href="http://www.softed.com/sdc/Speakers.aspx#ellen_gottesdiener">Ellen Gottesdiener</a>, the one hour session for those who were unable to attend the ongoing Software Development Conference.</p>
<p>It was interesting being amongst the Business Analysts, learning what they did, how Agile fits into the business perspective and something that I took away with me that day, how one should test their system (verification &amp; validation)</p>
<p>I look forward to attend more sessions such as these.</p>
<p>For those interested, please take a look at <a href="http://australia.theiiba.org">Australia IIBA</a> they are certainly encouraging more BA&#8217;s to join them.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=99&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/03/24/agile-business-analysis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Bushfire assistance &#8211; Technical Assistance needed</title>
		<link>http://scmay.wordpress.com/2009/02/12/bushfire-assistance-technical-assistance-needed/</link>
		<comments>http://scmay.wordpress.com/2009/02/12/bushfire-assistance-technical-assistance-needed/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 21:17:07 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=93</guid>
		<description><![CDATA[ As you know, many families have been severely impacted by the recent bushfires in Victoria.  A great deal of people have been left homeless and displaced, and as various aid agencies’ efforts to provide immediate assistance and relief gain traction, thoughts are now turning to ‘what next’.  One simple tool that can assist [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=93&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote><p> As you know, many families have been severely impacted by the recent bushfires in Victoria.  A great deal of people have been left homeless and displaced, and as various aid agencies’ efforts to provide immediate assistance and relief gain traction, thoughts are now turning to ‘what next’.  One simple tool that can assist families to start picking up the pieces of their lives is access to the internet, along with various other tools such as printers, scanners copiers and fax machines.  To meet this need, Melbourne organisation Infoxchange aims to establish Technology Resource Hubs in locations affected by the fires, and are also working to connect people in affected areas who have a technology need with people who are able to help out.  In order to successfully scale their activities, Infoxchange are seeking of donations of both equipment and time.  Which is where you come in <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   If you have technology skills, and can volunteer some time to go out onsite to assist with installing machines and configuring networking and internet connections, it’d be great if you could please register at the link below.  If you can’t physically help, but have serviceable PCs or laptops laying around that could be pressed into service as internet browsing systems, or if you have any networking gear that’s surplus to requirements, then please also contact Infoxchange via the link below – they’d be pleased to accept your donations.</p>
<p><a href="http://www.bushfirerelief.infoxchange.net.au/"> http://www.bushfirerelief.infoxchange.net.au/</a></p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=93&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/02/12/bushfire-assistance-technical-assistance-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 2005 Keyboard Environment, missing Step Into F11</title>
		<link>http://scmay.wordpress.com/2009/01/29/visual-studio-2005-keyboard-environment-missing-step-into-f11/</link>
		<comments>http://scmay.wordpress.com/2009/01/29/visual-studio-2005-keyboard-environment-missing-step-into-f11/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 03:46:00 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[f11]]></category>
		<category><![CDATA[step into]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[vs2005]]></category>
		<category><![CDATA[vs2008 vs2003]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=86</guid>
		<description><![CDATA[I&#8217;m not sure if I&#8217;m the only one, I recently used another user profile on VS2005, needless to say all the environment settings were reset and I realized that my favourite Step Into button no longer exists, and the keyboard F11 no longer works. Only using Step Over F10 isn&#8217;t very favourable. 
http://msdn.microsoft.com/en-us/library/bb245788(VS.80).aspx
 
Anyway, this is what [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=86&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m not sure if I&#8217;m the only one, I recently used another user profile on VS2005, needless to say all the environment settings were reset and I realized that my favourite Step Into button no longer exists, and the keyboard F11 no longer works. Only using Step Over F10 isn&#8217;t very favourable. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb245788(VS.80).aspx">http://msdn.microsoft.com/en-us/library/bb245788(VS.80).aspx</a></p>
<p> </p>
<p>Anyway, this is what I did.</p>
<p>Tools &gt; Import and Export Settings</p>
<p>Import selected environment settings</p>
<p>Yes, save my current settings</p>
<p>Default Settings &gt; General Development Settings</p>
<p>(Description: Configures the environment to closely match VS .NET 2003 to provide an experience that is already familiar to you. Select this collection of settings if you develop in more than one programming language)</p>
<p> </p>
<p>Someone else has blogged about the menu settings different for C# and VB, so he adds/changes the C# environment into the menu to get the Step Into button</p>
<p><a href="http://blogs.vertigo.com/personal/keithc/Blog/archive/2007/07/20/missing-menu-options-in-visual-studio-2005.aspx">http://blogs.vertigo.com/personal/keithc/Blog/archive/2007/07/20/missing-menu-options-in-visual-studio-2005.aspx</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=86&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/01/29/visual-studio-2005-keyboard-environment-missing-step-into-f11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
		<item>
		<title>Drop a default constraint without knowing the name</title>
		<link>http://scmay.wordpress.com/2009/01/06/drop-a-default-constraint-without-knowing-the-name/</link>
		<comments>http://scmay.wordpress.com/2009/01/06/drop-a-default-constraint-without-knowing-the-name/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 05:47:48 +0000</pubDate>
		<dc:creator>scmay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://scmay.wordpress.com/?p=82</guid>
		<description><![CDATA[This is a very nice script written by Rob Farley
http://msmvps.com/blogs/robfarley/archive/2007/11/26/two-ways-to-find-drop-a-default-constraint-without-knowing-its-name.aspx
declare @table_name nvarchar(256)
declare @col_name nvarchar(256)
set @table_name = N&#8217;Department&#8217;
set @col_name = N&#8217;ModifiedDate&#8217;
select t.name, c.name, d.name, d.definition
from sys.tables t
    join
    sys.default_constraints d
        on d.parent_object_id = t.object_id
    join
    sys.columns c
        on c.object_id = t.object_id
        and c.column_id = d.parent_column_id
where t.name = @table_name
and c.name = @col_name
      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=82&subd=scmay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a very nice script written by Rob Farley</p>
<p><a href="http://msmvps.com/blogs/robfarley/archive/2007/11/26/two-ways-to-find-drop-a-default-constraint-without-knowing-its-name.aspx">http://msmvps.com/blogs/robfarley/archive/2007/11/26/two-ways-to-find-drop-a-default-constraint-without-knowing-its-name.aspx</a></p>
<blockquote><p>declare @table_name nvarchar(256)<br />
declare @col_name nvarchar(256)<br />
set @table_name = N&#8217;Department&#8217;<br />
set @col_name = N&#8217;ModifiedDate&#8217;</p>
<p>select t.name, c.name, d.name, d.definition<br />
from sys.tables t<br />
    join<br />
    sys.default_constraints d<br />
        on d.parent_object_id = t.object_id<br />
    join<br />
    sys.columns c<br />
        on c.object_id = t.object_id<br />
        and c.column_id = d.parent_column_id<br />
where t.name = @table_name<br />
and c.name = @col_name</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scmay.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scmay.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scmay.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scmay.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scmay.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scmay.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scmay.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scmay.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scmay.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scmay.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scmay.wordpress.com&blog=922557&post=82&subd=scmay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://scmay.wordpress.com/2009/01/06/drop-a-default-constraint-without-knowing-the-name/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8561643472e167276f7b51e1e923983c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scmay</media:title>
		</media:content>
	</item>
	</channel>
</rss>