We Are Moving

Posted on April 1, 2008 | Leave a Comment

DevMuse was merged with Dev102 where we will be a team of 3 writers. With this strengthened force, we will be able to invest much more effort and provide more content. The existing posts will be redirected to our new home.

You must come and visit us at - www.dev102.com

Dev102

And subscribe to our new RSS Feed

rss

What to do When Lotus Notes Crashes

Posted on March 25, 2008 | 2 Comments

Lotus Notes is an integrated desktop client option for accessing business e-mail, calendars and applications on [an] IBM Lotus Domino server. The Notes client is mainly used as an email client in large organizations, so some of us have to work with it. I, personally don’t like it because it is not user friendly (see Lotus Hall of Shame) and it tends to crash a lot. Continue reading...

How to reset Identity Increment value in MS SQL

Posted on March 22, 2008 | 8 Comments

An Identity column in SQL Server is used to auto number the rows. See this great post on Autonumbering & Identity Columns. When you delete rows from the table, the identity will not reset but you have few options of doing it yourself. The SQL Server Management Studio GUI doesn’t support this option…

1. DBCC CHECKIDENT

This is the most easy way, just set it yourself… Continue reading...