Archive for February, 2008

12 Feb 2008

Lotus Notes, AOL for the Corporate World

8 Comments Uncategorized

So today I was reading Jeff’s Post on The Dramatic Password Reveal, and I had a flash back, to about a year or more ago, when I was working for a large bank based out of Pittsburgh who shale remain nameless. The flash back was to the usability nightmare that Lotus Notes and Lotus Sametime provided to anybody that had to do a simple task such as sending an e-mail (or Memo in Lotus Notes terminology). I think Jeff summed it up nicely and probably let Lotus Notes off a little easy by calling it a a massive train wreck.

Lotus Notes was so bad that I was actually considering quiting my job just to get away from the piece of software. Every time I had to look at the client interface I thought to myself where did I go wrong. This wasn’t a bad job either, it paid very well, had good benefits, however the job wasn’t really challenging. Combine that all on a 4 year old computer and a 15-inch CRT and you have my life at this job. So the lack of fulfillment and Lotus Notes drove me to look for another job after only a month and a half at the company.

I refer to Lotus Suite of Products as the AOL for the Corporate World for a couple of reasons. You have to think about AOL in terms of mid-to-late 90′s mainframe terminal interface, not AOL’s website in the new century. Unfortunately IBM hasn’t brought Lotus Notes in to this century or even the late 90′s. The following is my reasons for comparing AOL and Lotus Notes:

  1. Every link you get in your E-Mail (or Memo) needs to be opened with in the Lotus Notes client. Just like AOL required when clicking on a link in their Mail system.
  2. Every corporate form to collect information is done in a proprietary Lotus Notes data collector that tries to imitate Microsoft Access imitating a web form. Much like AOL did with all the forms available for their bazillion different pop ups.
  3. Lotus notes constantly crashed my computer. AOL did the same.
  4. Lotus notes had a built in proprietary IM client called Sametime. So did AOL. (See Lotus Sametime)
  5. If you think of everything you company has implimented, time tracking, specialized databases, calendars, task lists, corporate web, internet browsing, etc. You can bet Lotus notes has half assed that feature in to their product some how. Much like AOL did before they realized people hated that.
  6. Lotus Notes LoginThe login screen. No real gripe with AOL about this, at least AOL didn’t have hieroglyphics.

    This dialog box contains several security “features”:

    • The hieroglyphics on the left of the dialog box are supposed to distract anyone who is peering over your shoulder trying to learn your password as you type.
    • The number of characters you type is hidden; a random number of X’s appear instead of one asterisk per character.

    Is any of this nonsense really necessary? If I want to learn someone’s password as he or she types it, I will look at the keyboard, not the screen!

  7. Lotus Notes EmailThe inefficient use of screen real estate. We all take writing an e-mail for granted with our nice large boxes for TO, CC, Subject, and Attachments. However in the Lotus Notes world your name and some numbers that only mean something to Lotus Notes takes up half of the real estate. I can only image this is in case you forget who you are.

Is it any wonder why it’s often referred to as a train wreck of colossal proportions.

Apple fanboys are always talking about their wonderful interfaces that behave like a user is suppose to interact with a computer.   As sort of a sick, but probably boring, reality show I have always wanted to sit them in front of Lotus Notes and tell them to have at it.  Sort of a last man standing competition.

Also after a month on Lotus Notes, Microsoft Outlook and Exchange started to look like a gift from Heaven.

So that is my rant on Lotus Notes, it is now 12:30 AM, but I just had to get that all out.  And that was just from seeing one picture on Jeff Atwood’s website.  Imagin having to work with the application every day.

Interviewing Tip: Always ask your future employer if they used Lotus Notes, if they say yes, politely end the interview and don’t look back.  Or just bolt from the room at full speed with out looking back.  Either will allow you to achieve you goal of staying away from Lotus Notes.

11 Feb 2008

LINQ Cheat Sheet

No Comments Uncategorized

This cheat sheet was compiled by Milan Negovan at http://www.aspnetresources.com/. It is very handy and I recommend everybody download it and print it out.

Download: LINQ Cheat Sheet Document

11 Feb 2008

How To: Change Instance Name Of SQL Server

27 Comments Uncategorized

Recently I change the network name of one of my servers at work, because the box changed its job from a virtual machine server to the database server. Everything was going great until I decided to setup the server for replication and received the following error message.

New Publication Wizard
——————————

SQL Server replication requires the actual server name to make a connection to the server. Connections through a server alias, IP address, or any other alternate name are not supported. Specify the actual server name, ‘old_name’. (Replication.Utilities)

——————————
OK
——————————

So with a little hunting and SQL queries I found out that SQL Server doesn’t use the network name, it only excepts that as an alias. My SQL Server instance was still named “old_name”. I found that out by running these two queries:

sp_helpserver
select @@servername

So in order to get the network name and the SQL Server instance name back in sync I had do these steps:

  1. Run this in Microsoft SQL Server Management Studio:
    sp_dropserver 'old_name'
    go
    sp_addserver 'new_name','local'
    go
  2. Restart SQL Server service. I prefer the command prompt for this, but you can just as easily do it in Services under the Control Panel
    net stop mssqlserver
    net start mssqlserver

Then after that is done run this again, to make sure everything is changed:

sp_helpserver
select @@servername

I don’t understand why SQL Server uses it’s own name versus the network name, might be due to the fact you can have multiple SQL Server instances install on one machine. It wasn’t too hard to change and probably stems from the days when SQL Server was known as Sybase, all in all, I learned something new and it only took 30 minutes of my day to fine the answer.