About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (175)
- Uncategorized (168)
Most used tags
Tag Archives: sqlserver
Performance tuning EF, ASP.NET and loadtest
We are developing webservices for accessing data in SQL Server. The performance requirement was not met until we started to tune our solution. TLDR: use table in stead of view EF First we added the AsNoTracking() extension from EntityFramework to … Continue reading
Posted in Development
Tagged asp.net, async, EF, Entity Framework, Loadtest, sqlserver, Web API
Leave a comment
XML data type for storing messages
We want to store xml message in a database for batch processing, logging and retention. For some time now Sql Server offers the xml data type for columns. This way we could index the xml, validate it with an xsd … Continue reading
Allow incompatible platform in schema comparison
Schema comparison of SQL Express 2012 database and SQL Server 2008 gives an error A project which specifies SQL Server 2012 as the target platform cannot be published to SQL Server 2008. Set the allow incompatible platform in the options … Continue reading
Chocolatey on Azure provision
A recent update on the Windows Azure platform enables you to run a custom powershell script when creating a new Virtual Machine. It can be configured on the last step of the Wizard. This is where chocolatey can do it’s … Continue reading
Posted in Tooling
Tagged chocolatey, nservicebus, sqlserver, virtual machine, Windows Azure
Leave a comment
SpiraTeam database hack for user access
My test colleague uses SpiraTeam and needed some help restoring a backup. After restoring we granted access to the database from IIS (network service). But now he tells me nobody knows the Administrator password. What to do? Solution The SQL … Continue reading