Author Archives: Alex Shlega

I’m doing the best I can – is it so bad to say?

I ran into this blog post today: http://socialtriggers.com/never-say-this-again Which is discussing the implications of saying “I’m doing the best I can”. And, suddenly, I don’t agree with the seemingly obvious. Why? Well, apparently one can use that kind of language to justify their lack of actions. On the other hand, we have natural limits, yet those… Read More »

DB Scripts – for my own reference

List of running processes use master Select * from master.dbo.sysprocesses where dbid = db_id(‘DBNAME’) Killing all processes Use master Go Declare @dbname sysname Set @dbname = ‘DBNAME’ Declare @spid int Select @spid = min(spid) from master.dbo.sysprocesses where dbid = db_id(@dbname) While @spid Is Not Null Begin Execute (‘Kill ‘ + @spid) Select @spid = min(spid)… Read More »

Dynamics CRM: Creating navigation tabs

Once upon a time, there was a project where an attempt was made to use Dynamics CRM business process stages as navigation tabs. I think it happened, at first, because of some misunderstanding of what business processes are and how they are supposed to be utilized. Still, as I joined the team a few months ago,… Read More »

Step into the emptiness

I noticed a strange thing about those stairs in my house. It’s a split house, so, every night, I would turn off the lights in the living room and go upstairs.. And what I hate about it is that almost every single time I would keep going up when there are no stairs anymore. Did… Read More »