Wednesday, March 25, 2015

top variable needs parentheses

declare @int int = 10

select top (@int) * from

bozo

more things done to improve sql

if force order hint is used - put left joins after inner joins
create indicies on temp tables after inserts

Tuesday, March 24, 2015

to loop through a c# DictionaryList

you use a DictionaryEntry

Tuesday, March 17, 2015

Failed to find project file at path in CI

do a build with clean option checked

Monday, March 9, 2015

to avoid distributed transaction errors during debugging

on the callee comment out :

/*[OperationBehavior(TransactionScopeRequired = true,
TransactionAutoComplete = true)]*/