Peter Wone

2,943
Reputation
481 views

Registered User

Name Peter Wone
Member for 1 year
Seen Nov 28 at 11:09
Website
Location Brisbane, Australia
Age 41
The pleasures in my life are good coffee, my wine collection, cooking with herbs from my garden, my motorcycle and alpine skiing. All of these are improved by the company of my beloved Trish.
14h
awarded  Mortarboard
Nov
24
answered most professional way to tell a developer they are no good
Nov
20
comment Is forcing complex passwords “more important” than salting?
By minimum password length I meant enforcing fairly long passwords.
Nov
18
revised Is forcing complex passwords “more important” than salting?
added 62 characters in body
Nov
18
answered Is forcing complex passwords “more important” than salting?
Nov
17
revised Exposing SQL Server database objects as files in a file system
added 224 characters in body
Oct
31
comment How to code a compiler in C?
So, you want to build a Jumbo Jet, only bigger and better, using only the pieces in the basic Meccano set?
Oct
27
revised Linq 2 SQL or Linq Entities
added 554 characters in body
Oct
23
comment Exposing SQL Server database objects as files in a file system
This sounds very much like what I have in mind. I will indeed check out [sic] your work.
Oct
22
revised Exposing SQL Server database objects as files in a file system
added 511 characters in body
Oct
22
revised Exposing SQL Server database objects as files in a file system
deleted 622 characters in body
Oct
22
comment Exposing SQL Server database objects as files in a file system
So essentially you're doing version control on daily snapshots of db structure?
Oct
22
answered Microsoft.SqlServer.Management.Sdk.Sfc.Urn
Oct
22
asked Microsoft.SqlServer.Management.Sdk.Sfc.Urn
Oct
21
revised Exposing SQL Server database objects as files in a file system
added 46 characters in body
Oct
21
revised Exposing SQL Server database objects as files in a file system
added 320 characters in body
Oct
21
revised Exposing SQL Server database objects as files in a file system
added 547 characters in body
Oct
21
comment Exposing SQL Server database objects as files in a file system
Are you suggesting that I put triggers on the system tables?
Oct
21
comment Exposing SQL Server database objects as files in a file system
Needing to educate the users, that's the kicker. Even if they listen, sometimes they will forget.
Oct
21
comment Exposing SQL Server database objects as files in a file system
We too use Red Gate with much the same operations practices. I'm trying to improve the level of automation.
Oct
19
revised Exposing SQL Server database objects as files in a file system
deleted 16 characters in body
Oct
19
comment Exposing SQL Server database objects as files in a file system
I just looked it up and as far as I can see it's sort of MSMQ using a database. I don't see how that's going to let me intercept updates to basically everything that isn't table data.
Oct
19
comment Exposing SQL Server database objects as files in a file system
You're quite right, capturing changes to a folder on disk is quite easy, and a little service could easily push the changes to the server. But what is this SQL Server broker of which you speak?
Oct
19
answered Is there a catchy term for repatriating work once offshored?
Oct
19
revised Exposing SQL Server database objects as files in a file system
added 450 characters in body; edited tags
Oct
19
asked Exposing SQL Server database objects as files in a file system
Oct
18
comment Compare SQL Server Reporting Services to Crystal Reports
+1 for presenting the only credible counterargument I have seen so far. I should point out that "I don't know how to make it do X" is not the same as "It can't do X". Personally I think the Microsoft support is better than the CR support.
Oct
13
accepted SQL Server 2005 error
Sep
23
revised Equals method on Binary object
added 604 characters in body
Sep
23
comment Equals method on Binary object
I actually considered testing it like that but figured someone would just know off the cuff (and then SO went weird and I got obsessed with making it post). Thanks, I guess.
Sep
23
asked Equals method on Binary object
Sep
22
awarded  Yearling
Sep
17
comment How well does .NET scale?
This is a really good book. It ought to be taught at university.
Sep
10
revised Enterprise Reporting Solutions
added 230 characters in body
Sep
6
comment Help me understand this short chunk of code
Yeah it is. Pax you should write textbooks!
Sep
6
answered Question about 3rd Normal Form
Sep
6
comment C#, how to handle constant tables
I wouldn't throw them out. They are harmless, the compiler is stable and it would for some code represent a breaking change. But you are right that I wouldn't have added them in the first place. I've always found a language more interesting for what can be expressed than what can't.
Sep
4
comment Injecting Mouse Input in WPF Applications
Yeah I just noticed the part of your question where you mention that you are getting some mouse events firing, which implies it's all inproc.
Sep
4
revised Injecting Mouse Input in WPF Applications
deleted 31 characters in body
Sep
4
answered Injecting Mouse Input in WPF Applications
Sep
4
comment How to dynamically load internal xaml in Silverlight 3 at runtime?
There's a whole chapter on this in my Silverlight book which is unfortunately at home right now. This evening (in about four hours) I can give you as much info as you like.
Sep
4
answered Best way to share data between .NET application instance?
Sep
4
comment C#, how to handle constant tables
But I still don't see what the fuss is about. There's no need to make the table incapable of accepting updates. All he has to do is refrain from writing code that updates it.
Sep
4
comment C#, how to handle constant tables
aha yes, suddenly the question makes more sense
Sep
3
answered C#, how to handle constant tables
Sep
3
answered “Out of browser” web application running at Start-Up?
Sep
2
awarded  Great Answer
Sep
2
revised When and why are database joins expensive?
added 309 characters in body
Sep
2
comment When and why are database joins expensive?
The implications of the presence or absence of surrogate keys depends on many things, the most significant of which are already considered in the main text above. Whether they will be used is up to the optimiser. If you fail to provide an index you guarantee that it won't be used. Indexes do impose hefty overheads on updates. In a data warehousing scenario the OLAP database would be a lot more heavily indexed than the normalised OLTP database.
Aug
31
comment SerialPort and the BSOD
Hell, drivers should not run in ring 0. But for performance reasons they do. The grace to accept what I cannot change, y'know?