Thomas Bratt

2,061
Reputation
383 views

Registered User

Name Thomas Bratt
Member for 1 year
Seen 21 hours ago
Website
Location Cambridge, UK
Age 35

Software Developer based in Cambridge, United Kingdom.

22h
awarded  Mortarboard
Dec
2
answered Browser support of multipart responses
Dec
2
comment How to trim whitespace from a data-bound XML element in WPF using XPath?
normalize-space() would be fine but I could not seem to get it to work when selecting an element.
Dec
1
comment How to trim whitespace from a data-bound XML element in WPF using XPath?
Using the XML data from your example: DisplayMemberBinding="{Binding XPath=foo}"
Dec
1
comment How to trim whitespace from a data-bound XML element in WPF using XPath?
The problem is that the whitespace is rendered in the GUI using WPF.
Dec
1
asked How to trim whitespace from a data-bound XML element in WPF using XPath?
Nov
26
comment What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?
VisualSVN was not free last time I looked.
Nov
26
accepted What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?
Nov
26
comment How to run a PowerShell script without displaying a window?
Checkout this question if you are interested in learning: stackoverflow.com/questions/573623/…
Nov
26
revised .NET Resource Leak Gotchas
Capitalised .NET. My OCD strikes again...
Nov
26
answered .NET Resource Leak Gotchas
Nov
26
comment How to run a PowerShell script without displaying a window?
Nice tip. I need it for a scheduled task as well :)
Nov
26
comment What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?
Interesting comment on branches (which I don't disagree with in any way). We settled on a system with a single 'trunk' branch. This meant we were continuously integrated and used TeamCity to check for build breaks. We only had a maximum of 8 developers though.
Nov
26
answered What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?
Nov
26
asked How to run a PowerShell script without displaying a window?
Nov
26
revised How to run a stored procedure every day in SQL Server Express Edition?
Removed 'waitfor' comment as this now appears in the answer.
Nov
26
comment How to run a stored procedure every day in SQL Server Express Edition?
Good point! For our case, the database runs continually as it is a customer system that is run 24x7. I wonder if the simplest thing to do is to run the 'MyDatabaseStoredProcedure' script before the wait? In our case this would work fine but it might not for a different application requirement.
Nov
26
comment How to get the FxCop custom dictionary to work?
Thanks! I'll test this as soon as I get time.
Nov
26
comment How to get the FxCop custom dictionary to work?
Thanks! I'll test this as soon as I get time.
Nov
20
awarded  Civic Duty
Nov
20
comment Handling Dialogs in WPF with MVVM
Very nice! Upvoted :)
Nov
20
comment How to create SQL Server Express DB from SQL Server DB
This procedure will not restore the users and logins (including their passwords). If you need to do this then you will need a script to export the logins in encrypted format and restore them at the other end.
Nov
20
answered Sheduled run of stored procedure on MS SQL server
Nov
20
comment How to run a stored procedure every day in SQL Server Express Edition?
sp_procoption will allow a stored procedure to run automatically.
Nov
20
accepted How to run a stored procedure every day in SQL Server Express Edition?
Nov
20
answered How to run a stored procedure every day in SQL Server Express Edition?
Nov
5
revised Asynchronous Stored Procedure Calls
edited tags
Nov
5
comment Launch multiple stored procedures to run ‘in the background’ on SQL Server Express Edition
SQL Server is calling the procedure on startup. I can always work around this by getting SQL Server to call the procedures individually but I thought I would check to see if there was a more elegant way. I have a feeling I'm trying to do something that would break the ACID principles for transactions 8)
Nov
5
revised Launch multiple stored procedures to run ‘in the background’ on SQL Server Express Edition
Clarified version of SQL Server required.
Nov
5
comment Launch multiple stored procedures to run ‘in the background’ on SQL Server Express Edition
The procedure has to run on MS SQL Express Edition, so Jobs can't be used. I'll amend the question to mention this.
Nov
5
asked Launch multiple stored procedures to run ‘in the background’ on SQL Server Express Edition
Nov
4
comment How to run a stored procedure every day in SQL Server Express Edition?
This post looks interesting (referenced in an answer to one of the related questions): sqlteam.com/article/…
Nov
4
revised How to run a stored procedure every day in SQL Server Express Edition?
Added related question.
Nov
4
comment How to run a stored procedure when SQL Server Express Edition starts?
A comment that might explain the code above: "Only the system administrator (sa) can mark a stored procedure to execute automatically. In addition, the stored procedure must be in the master database and owned by sa and cannot have input or output parameters."
Nov
4
comment How to run a stored procedure when SQL Server Express Edition starts?
Excellent answer, thanks :)
Nov
4
asked How to run a stored procedure when SQL Server Express Edition starts?
Nov
4
revised How to run a stored procedure every day in SQL Server Express Edition?
Added sqlexpress tag back. It's important! :)
Nov
4
asked How to run a stored procedure every day in SQL Server Express Edition?
Nov
3
revised What is the best way to convert an int or null to boolean value in an SQL query?
Added .net tag.
Nov
1
accepted Live Webcam on ASP.NET Web Site
Oct
30
answered Connection Timeout exception for a query using ADO.Net
Oct
30
answered Timeout expired. The timeout period elapsed prior to …
Oct
30
answered Do I have to Close() a SQLConnection before it gets disposed?
Oct
29
awarded  Citizen Patrol
Oct
28
awarded  Popular Question
Oct
27
comment Which is faster - C# unsafe code or raw C++
Using fixed memory does help but does not remove all of the runtime checks.
Oct
19
accepted How to localize string resource lookups from all threads in an application?
Oct
19
answered How to localize string resource lookups from all threads in an application?
Oct
16
revised How to localize string resource lookups from all threads in an application?
Changed question to ask about all threads in an application, not just thread pool threads.
Oct
16
answered In .NET is there a way to enable Assembly.Load tracing?