Viewing 4 posts - 1 through 4 (of 4 total)
Looks like a typo. Take a close look at the error message you posted.
Cannot open database "mastir" requested by the login
Did you mistype MASTER?
Chuck
September 23, 2009 at 3:55 pm
I have had the same problem. There is nothing out there that does a fair job of removing comments. This is my solution which is part of a...
September 23, 2009 at 2:54 pm
I made the assumption that you want any task that is due today or in the past.
create table #Task (Task varchar(10), Due smalldatetime)
insert #Task select 'TaskA','09/21/2009'
insert #Task select...
September 23, 2009 at 2:04 pm
Thanks Jeff, I was hung up on having to do a self join with ranking to get the order I wanted. Just over engineering on my part. Thanks
In...
August 13, 2009 at 12:45 pm
Viewing 4 posts - 1 through 4 (of 4 total)