Showing posts with label Services. Show all posts
Showing posts with label Services. Show all posts

Wednesday, October 28, 2015

There was no endpoint listening at

oh my. I didn't check the address - it was missing ;(

Monday, January 14, 2013

how xml path concatenation trick works


select * from
(select  temp.data + ''  from
 (
select  'aa' joindata , null data
union select 'ba' joindata , 'a' data
union select 'bb' joindata , 'a' data
union select 'bb' joindata , 'b' data
union select 'bc' joindata , 'b' data
 ) temp
where temp.data is not null
FOR XML PATH('')
) as results(result)

returns aabb

why?since in the sql the column is thus temp.data + ''  designated - sql server does not know how to tag the data and therefore leaves it empty


Thursday, October 4, 2012

Another difference between sc and installutil

if the actual exe is deleted (after the service is stopped) installutil /u will fail as opposed to sc

Wednesday, August 29, 2012

Location of installutil

may be here under the current version

C:\Windows\Microsoft.NET\Framework\

Tuesday, July 17, 2012