User le dorfier - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T22:46:29Zhttp://stackoverflow.com/feeds/user/31641http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1854747#18547470Answer by le dorfier for simple proof that GUID is not uniquele dorfier2009-12-06T08:20:10Z2009-12-06T08:25:45Z<p>340282366920938463463374607431768211456? Let me check ... yes, you're in luck. I can help. I got that number once. Consider it proven.</p>
<p>Maybe even a couple of times ...</p>
http://stackoverflow.com/questions/1854544/how-to-select-the-latest-version-of-answers-given-by-each-answerer-in-mysql/1854596#18545961Answer by le dorfier for How to select the latest version of answers given by each answerer in MySQL?le dorfier2009-12-06T06:57:01Z2009-12-06T07:06:04Z<p>Do a self-join and find the user/question with no higher id:</p>
<pre><code>SELECT a.*
FROM answers AS a
LEFT JOIN answers AS b
ON a.answerer_id = b.answerer_id
AND a.question_id = b.question_id
AND a.id < b.id
WHERE
b.id IS NULL
</code></pre>
<p>Or, if you have a timestamp you can use that.</p>
http://stackoverflow.com/questions/411668/what-can-we-learn-from-your-most-recent-cataclysmic-paradigm-shift2What can we learn from your most recent cataclysmic paradigm shift?le dorfier2009-01-04T21:07:06Z2009-12-03T16:57:52Z
<p>Very occasionally we go throuh a software learning experience that turns our assumptions upside down, and we view software development from a whole new perspective. The most obvious one I suspect for most of us who have been around a while was the transition to hard-core OOP. What other such earthquakes have you experienced, and how would you suggest we might use your experience to question our assumptions?</p>
<p>EDIT: Maybe some suggestions about what you learned, and how it's changed your programming?</p>
http://stackoverflow.com/questions/288366/community-wiki-a-way-to-make-questions-disappear5Community Wiki - a way to make questions disappear? [closed]le dorfier2008-11-13T21:21:00Z2009-12-02T20:00:49Z
<p>I recently posted a question about answering strategies for SO. I was amazed and astounded by how many people took offense, and eagerly imputed nasty motives for doing so.</p>
<p>The consequence was that I learned in a hurry about the CW's existence, but I still don't understand what it's for, why my question was offensive, and why it seems to have disappeared from the Question List (after having been mystically branded as CW).</p>
<p>And then it disappeared. I have no idea where the quesion went, or how people who would like to see it or discuss it would ever come across it.</p>
<p>I'm sorry I'm not cogniscenti enough, but it sure seems to me that we've got a loose cannon rolling around on the deck.</p>
<p>Please if you can remove all rep points associated with this episode. They're the last reason I come to the site, and the last thing I want to benefit from.</p>
<p>(Watch the negative votes add up ...)</p>
http://stackoverflow.com/questions/1811239/running-30-php-script-at-once-in-the-background/1811410#18114100Answer by le dorfier for Running 30 php script at once in the backgroundle dorfier2009-11-28T03:02:53Z2009-11-28T03:02:53Z<p>Given the simplicity of the question, I suggest you look for the simplest answer. Off the top, I'd say you might consider using one instance looping through 30 arguments.</p>
http://stackoverflow.com/questions/1811384/what-is-the-best-language-for-sockets-programming/1811400#18114003Answer by le dorfier for What is the best language for sockets programming?le dorfier2009-11-28T02:55:43Z2009-11-28T02:55:43Z<p>The language you are writing the client software with, if it's adequate, and almost any client language would be. Keep things simple.</p>
http://stackoverflow.com/questions/1798491/query-strings-use-row-ids-or-human-readable-values/1798598#17985980Answer by le dorfier for query strings - use row ids or human readable values?le dorfier2009-11-25T17:30:35Z2009-11-25T17:30:35Z<p>You shouldn't worry about the efficiency for any typically sized application on any reasonable database engine. Write your app for users, not for query optimizers. QO's can more easily take care of themselves. Deal with optimization in the unlikely event you start seeing a problem.</p>
http://stackoverflow.com/questions/1775240/mysql-several-parents-identifying-their-children-from-one-table/1777265#17772650Answer by le dorfier for MySQL: several parents identifying their children from one tablele dorfier2009-11-22T00:14:52Z2009-11-22T00:20:35Z<p>There are no Parents involved - you just have photos with two atttributes - Place and Tour.</p>
<p>So use a Photos table with two foreign keys, one for Tour, the other for Place. And then of course
a Tours table and a Places table.</p>
<p>If you need to know which Tours went to which Places, deal with it directly with a Tour_Places table
which justifies itself independently.</p>
<p>As for "Parentness", this solution still lets you identify, for a Tour (or Place), which Photos are associated.</p>
http://stackoverflow.com/questions/1777089/measuring-online-time-on-website/1777247#17772471Answer by le dorfier for Measuring online time on websitele dorfier2009-11-22T00:08:56Z2009-11-22T00:08:56Z<p>Two factors are working against you -</p>
<ol>
<li><p>You can only collect point-in-time statistics (page views), and there's no reasonable way to detect what happened between those points;</p></li>
<li><p>Even then, you'd be counting browser window time, not user time; users can easily have multiple tabs open on multiple browser instances simultaneously.</p></li>
</ol>
<p>I suspect your best approximation is attributing some average amount of attention time per click and then multiplying. But then you might just as well measure clicks.</p>
http://stackoverflow.com/questions/405491/choosing-isam-rather-than-sql4Choosing ISAM rather than SQLle dorfier2009-01-01T21:14:25Z2009-11-21T00:54:07Z
<p>Many developers seem to be either intimidated or a bit overwhelmed when an application design requires both procedural code and a substantial database. In most cases, "database" means an RDBMS with an SQL interface.</p>
<p>Yet it seems to me that many of the techniques for addressing the "impedance mismatch" between the two paradigms would be much better suited to an ISAM (indexed-sequential access method) toolset, where you can (must) specify tables, indexes, row-naviagation, etc. overtly - exactly the behavior prescribed by the ActiveRecord model, for instance.</p>
<p>In early PC days, dBASE and its progeny were the dominant dbms platforms, and it was an enhanced ISAM. Foxpro continues this lineage quite successfully through to today. MySQL and Informix are two RDBMSs that were at least initially built on top of ISAM implementations, so this approach should be at least equally performant. I get the feeling that many developers who are unhappy with SQL are at least unconsciously yearning for the ISAM approach to be revived, and the database could be more easily viewed as a set of massively efficient linkable hyper-arrays. It seems to me that it could be a really good idea.</p>
<p>Have you ever tried, say, an ORM-to-ISAM implementation? How successfully? If not, do you think it might be worth a try? Are there any toolsets for this model explicitly?</p>
http://stackoverflow.com/questions/1773560/tips-for-optimizing-sql-commands-worrying-about-legacy/1773905#17739050Answer by le dorfier for Tips for optimizing sql commands worrying about legacyle dorfier2009-11-20T23:43:43Z2009-11-20T23:50:38Z<p>I've found the best solution to be to include, in your comments, a clearly qualified, duplicable optimization test for the query, using statistics from the optimizer. (This also works nicely for stored procedures, where the same issues appear.)</p>
<p>Include a statement about the nature of the testing context (hardware and data), data generation code if necessary, and a clear description of testing conditions (cache settings, repetitions, etc.) Better yet, agree on a team template for this spec.</p>
<p>Then enforcing comparisons needs to be built into your culture somewhere ... the best solution would be for the culture to expect documented before-and-after optimization testing.</p>
http://stackoverflow.com/questions/1771795/select-vs-specifying-column-names/1771817#17718170Answer by le dorfier for Select * vs Specifying Column Namesle dorfier2009-11-20T16:57:36Z2009-11-20T16:57:36Z<p>Query performance, or developer performance? The biggest issue is that you are losing clarity and implied intent. It's like reading maths and having a proof conclude with "QED" when you're not ready.</p>
http://stackoverflow.com/questions/1771692/when-does-template-instantiation-bloat-matter-in-practice/1771739#17717390Answer by le dorfier for When does template instantiation bloat matter in practice?le dorfier2009-11-20T16:47:18Z2009-11-20T16:47:18Z<p>I think it's mainly mental bloat. The next programmer to work on your code will first need to figure out what subset of it matters.</p>
http://stackoverflow.com/questions/1768576/what-is-the-best-framework-cms-and-shopping-cart-plugin-module-etc-combination/1768645#17686451Answer by le dorfier for What is the best framework/cms and shopping cart plugin/module/etc. combination?le dorfier2009-11-20T06:14:42Z2009-11-20T06:21:32Z<p>In terms of market share, wordpress probably has the most widely accepted platform for this kind of stuff. Part of the reason is its maintainability; another is the breadth of its secondary sources for add-ons, especially including shopping-carts. It's written in PHP over MySQL.</p>
<p>A project such as you describe could be accomplished by non-programmers - in many cases has been.</p>
<p>Market share isn't the whole story by any means, and I'm not endorsing wordpress unreservedly. But at least you'd be following a well-trodden path.</p>
<p>And your setup time for a fully equipped development and production server would be about 15 minutes on a hosted site for less than $25/month. Pretty low-risk.</p>
http://stackoverflow.com/questions/327199/what-will-we-do-after-access19What will we do after Access?le dorfier2008-11-29T05:10:08Z2009-10-30T23:58:14Z
<p>Microsoft seems hell-bent on deprecating the swiss-army-knife of database tools. What else comes close for facading/file-swapping/cloning/name-your-acronym-connecting arbitrary database servers/spreadsheets/CSV's/flatfiles?</p>
<p>What weird kinds of functionality have you squeezed out of Access? And what else is there to take its place?</p>
http://stackoverflow.com/questions/1578561/how-to-migrate-an-old-database-into-a-new-database-using-microsoft-access/1585824#15858241Answer by le dorfier for How to migrate an old Database into a new Database using Microsoft Accessle dorfier2009-10-18T19:42:42Z2009-10-18T19:42:42Z<p>You'll need to create the schema separately in MySQL but it's not difficult, there are lots of tutorials, and you can probably find a Firebird tool to export the DDL into a script that will either just work, or be easy to modify.</p>
<p>If you want to use Access in the middle, just attach each of the two external databases from Access (using ODBC or your choice of drivers). You can use the query designer wizards to build a INSERT INTO ... FROM ... type query as you would for any other situation.</p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/433857#43385715Answer by le dorfier for Significant new inventions in computing since 1980le dorfier2009-01-11T22:24:15Z2009-10-14T23:42:27Z<p>To address the two questions about "Why the death of new ideas", and "what to do about it"?</p>
<p>I suspect a lot of the lack of progress is due to the massive influx of capital and entrenched wealth in the industry. Sounds counterintuitive, but I think it's become conventional wisdom that any new idea gets one shot; if it doesn't make it at the first try, it can't come back. It gets bought by someone with entrenched interests, or just FAILs, and the energy is gone. A couple examples are tablet computers, and integrated office software. The Newton and several others had real potential, but ended up (through competitive attrition and bad judgment) squandering their birthrights, killing whole categories. (I was especially fond of Ashton Tate's Framework; but I'm still stuck with Word and Excel).</p>
<p>What to do? The first thing that comes to mind is Wm. Shakespeare's advice: "Let's kill all the lawyers." But now they're too well armed, I'm afraid. I actually think the best alternative is to find an Open Source initiative of some kind. They seem to maintain accessibility and incremental improvement better than the alternatives. But the industry has gotten big enough so that some kind of organic collaborative mechanism is necessary to get traction.</p>
<p>I also think that there's a dynamic that says that the entrenched interests (especially platforms) require a substantial amount of change - churn - to justify continuing revenue streams; and this absorbs a lot of creative energy that could have been spent in better ways. Look how much time we spend treading water with the newest iteration from Microsoft or Sun or Linux or Firefox, making changes to systems that for the most part work fine already. It's not because they are evil, it's just built into the industry. There's no such thing as Stable Equilibrium; all the feedback mechanisms are positive, favoring change over stability. (Did you ever see a feature withdrawn, or a change retracted?)</p>
<p>The other clue that has been discussed on SO is the Skunkworks Syndrome (ref: Geoffrey Moore): real innovation in large organizations almost always (90%+) shows up in unauthorized projects that emerge spontaneously, fueled exclusively by individual or small group initiative (and more often than not opposed by formal management hierarchies). So: Question Authority, Buck the System.</p>
http://stackoverflow.com/questions/494774/i-need-an-analogy-triggers-and-events2I Need an Analogy: Triggers and Eventsle dorfier2009-01-30T07:18:11Z2009-10-14T02:00:01Z
<p>For another question, I'm running into a misconception that seems to arise here at SO occasionally. Some questioners seem to think that Triggers are to Databases as Events are to OOP.</p>
<p>Does anyone have a good analogy to explain why this is a flawed comparison, and the consequences of misapplying it?</p>
<p><hr>
EDIT:</p>
<p>Bill K. has hit it correctly, but maybe doesn't see the importance of the critical differeence between the event and the callback function that strikes me, anyway. Triggers actually cause code to execute every time the event occurs; callbacks only occur whenever one has been registered for an event (which is not true for the vast majority of events); and even then, in most cases the callback's first action is to deregister itself (or at least the callback contains a qualifcation exit so it only executes once.)</p>
<p>If you write a trigger, it will unfailingly execute every time the event occurs, because there's no way to register or deregister to code segment.</p>
<p>Triggers are a way to interpose repeating logic synchronously into the thread of execution (i.e. synchronicity). Events are a means to defer logic until later (i.e. implement asynchronicity).</p>
<p>There are exceptions and mitigations in both cases, but the basic patterns of triggers and callbacks are mostly opposite in intention and implementation. Often the distinction doesn't seem to have fully sunk in. (IMHO, YMMV). :D</p>
http://stackoverflow.com/questions/493684/how-to-avoid-short-lifespan-enterprise-applications1How to avoid short-lifespan enterprise applications?le dorfier2009-01-29T22:08:47Z2009-10-11T01:28:11Z
<p>A while ago <a href="http://stackoverflow.com/questions/360297/lifespan-of-software-how-often-do-you-expect-to-do-start-from-scratch">another question</a> referred to the (possibly urban tale) statistic that </p>
<blockquote>
<p>... the average lifespan of software is about 3 years</p>
</blockquote>
<p>At the time I came up with the following reasons (and I'm sure there are more possibly better ones):</p>
<ol>
<li><p>A new major system (ERP, CRM, etc.) is implemented and it has an "integrated" module to replace the old app.</p></li>
<li><p>Same, but no integrated app - but the existing app is not adaptable (the people left, technology has changed, current IT policies have changed, users don't like the existing app.)</p></li>
<li><p>The company you acquired the basic app from, to customize it for your needs has disappeared.</p></li>
<li><p>Or you don't get along well with them any more.</p></li>
<li><p>The technology for the existing app is "obsolete" (according to the framework vendor/Microsoft/consultant/industry expert/new IT manager who has management's ear.)</p></li>
<li><p>"We're phasing out (Windows 95/Windows 98/Windows 2000/Windows XP/NT) and we need matching technology in our apps".</p></li>
<li><p>"We've learned a lot from (App Version n) and we'll do a lot better the second/third/fourth/n+1th time."</p></li>
<li><p>Job justification for developers/IT manager/Division VP/consulting company.</p></li>
<li><p>The users hate it.</p></li>
<li><p>We've merged/acquired a competitor/been acquired by a competitor and theirs is better.</p></li>
</ol>
<p>Some of these are unavoidable (e.g. your company gets bought), but overall this is surely smething that needs to be avoided. Does your organization intentionally fight this syndrome? What effective strategies would you recommend?</p>
http://stackoverflow.com/questions/1546501/increasing-performance-on-a-logging-table-in-sql-server-2005/1546562#15465621Answer by le dorfier for Increasing performance on a logging table in SQL Server 2005le dorfier2009-10-09T23:40:49Z2009-10-09T23:48:03Z<p>For a log table, you probably don't need a uniqueidentifier column. You're not likely to query on it either, so it's not a good candidate for a clustered index. Your sample query is on "Created", yet there's no index on it. If you query frequently on ranges of "Created" values then it would be a good candidate for clustering even though it's not necessarily unique.</p>
<p>OTOH, the foreign key suggests frequent querying by Campaign, in which case having the clustering done by that column could make sense, and would also probably do a better job of scattering the inserted keys in the indexes - both the surrogate key and the timestamp would add records in sequential order, which is net more work over time for insertions because the node sectors are filled less randomly.</p>
<p>If it's just a log table, why does it have update audit columns? It would normally be write-only.</p>
http://stackoverflow.com/questions/1544755/how-can-i-script-copying-an-access-table-from-one-mdb-to-another/1545058#15450581Answer by le dorfier for How can I script copying an Access table from one mdb to another?le dorfier2009-10-09T17:18:59Z2009-10-09T22:47:55Z<p>Since it's wise to separate data and logic in Access anyway, provide them with 3 databases - one with connections to the other two. Then you could probably just filecopy everything. Everyone gets a common copy of the mdb with code and a common copy of A, plus their own 1-2-3. </p>
<p>Access is pretty sweet about this sort of thing. You shouldn't lose any efficiency.</p>
<p>Also, any future updates to either of the data mdbs (or the code mdb for that matter) is just another filecopy.</p>
http://stackoverflow.com/questions/1441240/wordpress-session-management1Wordpress session managementle dorfier2009-09-17T20:45:33Z2009-10-09T22:28:35Z
<p>I'm putting up a site using Wordpress and I'd like to piggyback on its sessions. But I'm not finding any plugins, or even documentation. Any suggestions or references before I start hacking it?</p>
http://stackoverflow.com/questions/1533924/anything-wrong-with-using-php-as-a-server-side-language/1533955#15339555Answer by le dorfier for Anything wrong with using PHP as a server side language?le dorfier2009-10-07T20:21:48Z2009-10-07T20:21:48Z<p>It's quite ordinary to use PHP for administrative tasks (cron jobs, etc.) which have no UI at all. No problem.</p>
<p>I wouldn't be surprised if it would be more disruptive to require proficiency in two languages.</p>
http://stackoverflow.com/questions/1533913/is-there-a-way-to-emulate-autoincrement-on-a-second-column-in-mysql/1533943#15339430Answer by le dorfier for Is there a way to emulate auto_increment on a second column in MySQL?le dorfier2009-10-07T20:19:55Z2009-10-07T20:19:55Z<p>This would be easier to answer if you can tell us what the field is for. Normally there's a better way to achieve the same business requirement. Whatever you would do would be a hack, and you'd end up spending a lot of time dealing with the unintended consequences.</p>
http://stackoverflow.com/questions/1507557/why-would-you-ever-go-with-html-over-ria/1507580#15075804Answer by le dorfier for Why would you ever go with HTML over RIA?le dorfier2009-10-02T03:10:58Z2009-10-02T03:30:37Z<ol>
<li><p>Standardization. You can't really compare one standard platform that means the same thing to everybody, with "RIAs" - which one? For what platform? From whom? When, and for how long?</p></li>
<li><p>Depth of coverage. Notice that people generally run RIAs in browsers (for a subset of their requirements) rather than vice versa (even though it's eminently supported.)</p></li>
<li><p>In China 40% of new internet users use a phone as their primary access device. Which RIA do you run on your iphone?</p></li>
<li><p>Painful experience. There have been other universal solutions that I've gotten more excited about than I should have.</p></li>
</ol>
http://stackoverflow.com/questions/278485/using-stack-overflow-as-a-job-interview13Using Stack Overflow as a Job Interview [closed]le dorfier2008-11-10T17:01:46Z2009-09-30T14:56:34Z
<p>Scenario: </p>
<p>You are interviewing other people for a <b>developer</b> job in your own organization. You find out that the person has been a contributor on Stack Overflow, submitting both questions and answers. You think it might be helpful to review their posts.</p>
<p>What would you look for, in what order of importance?</p>
http://stackoverflow.com/questions/1490946/an-honest-security-ethics-nondisclosure-question-i-need-help-with/1491014#14910142Answer by le dorfier for An honest security ethics nondisclosure question i need help with.le dorfier2009-09-29T07:06:59Z2009-09-29T07:06:59Z<p>I'd chalk up the first such incident as your learning experience. You and the client (and your management) hadn't clarified the bounds of your responsibility.</p>
<p>I think your real question is "How do I prevent this from happening again?"</p>
http://stackoverflow.com/questions/1468375/how-do-you-return-two-values-from-a-single-method/1468551#14685511Answer by le dorfier for How do you return two values from a single method?le dorfier2009-09-23T21:17:36Z2009-09-23T21:23:00Z<p>If your function has return value(s), it's presumably returning it/them for assignment to either a variable or an implied variable (to perform operations on, for instance.) Anything you can usefully express as a variable (or a testable value) should be fair game, and should dictate what you return.</p>
<p>Your example mentions a row or a set of rows from a SQL query. Then you reasonably should be ready to deal with those as objects or arrays, which suggests an appropriate answer to your question.</p>
http://stackoverflow.com/questions/275542/confusion-about-installing-windows-service-using-command-prompts/275552#2755521Answer by le dorfier for Confusion about installing windows service using command promptsle dorfier2008-11-09T03:15:19Z2009-09-23T12:50:33Z<pre>
DESCRIPTION:
SC is a command line program used for communicating with the
NT Service Controller and services.
USAGE:
sc [command] [service name] ...
The option has the form "\\ServerName"
Further help on commands can be obtained by typing: "sc [command]"
Commands:
query-----------Queries the status for a service, or
enumerates the status for types of services.
queryex---------Queries the extended status for a service, or
enumerates the status for types of services.
start-----------Starts a service.
pause-----------Sends a PAUSE control request to a service.
interrogate-----Sends an INTERROGATE control request to a service.
continue--------Sends a CONTINUE control request to a service.
stop------------Sends a STOP request to a service.
config----------Changes the configuration of a service (persistant).
description-----Changes the description of a service.
failure---------Changes the actions taken by a service upon failure.
qc--------------Queries the configuration information for a service.
qdescription----Queries the description for a service.
qfailure--------Queries the actions taken by a service upon failure.
delete----------Deletes a service (from the registry).
create----------Creates a service. (adds it to the registry).
control---------Sends a control to a service.
sdshow----------Displays a service's security descriptor.
sdset-----------Sets a service's security descriptor.
GetDisplayName--Gets the DisplayName for a service.
GetKeyName------Gets the ServiceKeyName for a service.
EnumDepend------Enumerates Service Dependencies.
The following commands don't require a service name:
sc
boot------------(ok | bad) Indicates whether the last boot should
be saved as the last-known-good boot configuration
Lock------------Locks the Service Database
QueryLock-------Queries the LockStatus for the SCManager Database
EXAMPLE:
sc start MyService
</pre>
http://stackoverflow.com/questions/563493/code-deodorant-practices-to-avoid-code-smells/690381#6903810Answer by le dorfier for Code deodorant: practices to avoid code smellsle dorfier2009-03-27T16:09:41Z2009-09-16T17:20:58Z<p>Many descriptions I've seen for the process of using Code Smells is to first write code so it works, then refactor it based on the smells. In other words, don't spend a lot of time planning out your design anticipating smells and avoiding them (although obviously your habits and patterns will improve over time) but get something out there and then improve it.</p>
<p>Otherwise you run the risk of incurring the wrath of YAGNI.</p>
<p><hr></p>
<p>For those few not familiar, Martin Fowler's seminal book, "Refactoring", starts out with an extensive enumeration of what he calls "Bad Smells", and then proceeds to explain refactoring in terms of deodorizing those smells.</p>
http://stackoverflow.com/questions/920222/merge-post-from-two-different-wordpress-to-one-post-page-ordering-by-date/1303720#1303720Comment by le dorfier on Merge post from two different wordpress to one post page ordering by datele dorfier2009-10-03T02:06:30Z2009-10-03T02:06:30Z+1 start with the rss widget ...http://stackoverflow.com/questions/1507557/why-would-you-ever-go-with-html-over-ria/1507584#1507584Comment by le dorfier on Why would you ever go with HTML over RIA?le dorfier2009-10-02T03:17:14Z2009-10-02T03:17:14ZBrand new text editing engine in Flex 4. Undo/redo stacks and everything.http://stackoverflow.com/questions/1434822/how-to-speed-up-mysql-and-php/1434844#1434844Comment by le dorfier on how to speed up Mysql and PHP?le dorfier2009-09-16T19:18:49Z2009-09-16T19:18:49Zworse than "general answers" you'll get suggestions to "try things" which is optimization hell.http://stackoverflow.com/questions/1237365/relying-on-db-transaction-rollback-in-sunshine-scenario/1238256#1238256Comment by le dorfier on Relying on db transaction rollback in sunshine scenariole dorfier2009-08-07T07:22:20Z2009-08-07T07:22:20Z1000 rows is a trivially small transaction IMHO.http://stackoverflow.com/questions/1236799/mysql-to-retrieve-records-that-repeat-a-value-in-order/1236874#1236874Comment by le dorfier on mySQL to retrieve records that repeat a value in orderle dorfier2009-08-06T04:02:52Z2009-08-06T04:02:52ZNote: Since the operation is dependent on record ordering, this isn't really a set-based problem. So using SQL is is going to be awkward. Probably better to use your procedural language and look at it as ano ordered list.http://stackoverflow.com/questions/1220965/drawbacks-to-having-potentially-thousands-of-directories-in-a-server-instead-of/1220973#1220973Comment by le dorfier on Drawbacks to having (potentially) thousands of directories in a server instead of a database?le dorfier2009-08-03T07:14:06Z2009-08-03T07:14:06ZImmensely slower to do what? That's a breathtakingly broad assertion.http://stackoverflow.com/questions/1220965/drawbacks-to-having-potentially-thousands-of-directories-in-a-server-instead-ofComment by le dorfier on Drawbacks to having (potentially) thousands of directories in a server instead of a database?le dorfier2009-08-03T07:13:13Z2009-08-03T07:13:13ZAnd this is why? Presumably you have an unconventional requirement to choose an unconventional solution architecture.http://stackoverflow.com/questions/1140010/ensuring-record-value-integrity-in-a-open-source-database/1140172#1140172Comment by le dorfier on Ensuring record value integrity in a open-source databasele dorfier2009-07-21T20:05:17Z2009-07-21T20:05:17ZTo be credible, an Audit Trail (both for an accounting operation and for your case) must support the ultimate check for anything you don't trust, or that you are suspicious about, by going in person to the source and verifying what's in the Audit Trail. That's what Auditors do. Along with that you need to provide some capability (queries) to detect suspicous activity. Anyway, that's the point of view that Real Life most often takes.http://stackoverflow.com/questions/1140010/ensuring-record-value-integrity-in-a-open-source-database/1140172#1140172Comment by le dorfier on Ensuring record value integrity in a open-source databasele dorfier2009-07-21T20:02:13Z2009-07-21T20:02:13ZFrom an accounting point of view, which is the best analogy for the risk and control requirements I can think of, ultimately you can't trust any system or group of people to be impervious. Nor do you want to incur the financial and technical consequences of trying so hard that things become too complex and manage, and the stakeholders aren't confident that they really understand and control it. Instead, we try to emphasize clarity, simplicity, flexibility, and most importantly a verifiable Audit Trail.http://stackoverflow.com/questions/245318/c4-dynamic-keyword-why-not/245370#245370Comment by le dorfier on C#4 dynamic keyword - why not?le dorfier2009-07-17T21:43:13Z2009-07-17T21:43:13ZYou're right, no question for a ten-year-old mission-critical business system. That's IMO the proper place for java (and .NET). I see more of the other end of the spectrum where too often my comments have applied. And yes I'm familiar with the kinds of projects you describe. In java. Too often with problems, but for other reasons beyond the choice of language. But those problems would have been much worse with a less structured language. (Kinda peripheral to the original question anyway, isn't it?)http://stackoverflow.com/questions/1140010/ensuring-record-value-integrity-in-a-open-source-database/1140172#1140172Comment by le dorfier on Ensuring record value integrity in a open-source databasele dorfier2009-07-17T01:36:18Z2009-07-17T01:36:18ZI'm saying that a solution that leaves an audit trail of the changes, and is difficult to subvert without detection (which I think is true of what I've described) is preferable to a solution that tries to prevent changes. Effectively preventing changes by a DBA will probably create serious complexity and inhibit the DBA from legitimate activities, including changes that are legitimate but you haven't anticipated. A transaction queue would accomplish what you want by enabling the DBA to introduce legitimate changes (through the queue) and make other (non-queued) changes real easy to detect.http://stackoverflow.com/questions/1140203/how-to-check-existence-of-a-sql-server-object-and-drop-it/1140226#1140226Comment by le dorfier on How to check existence of a sql server object and drop it?le dorfier2009-07-17T01:29:35Z2009-07-17T01:29:35ZThe problem is that you IsSomething (the function) and @IsSomething (the variable) are two distinct things with no relationship to each other.http://stackoverflow.com/questions/1140203/how-to-check-existence-of-a-sql-server-object-and-drop-it/1140226#1140226Comment by le dorfier on How to check existence of a sql server object and drop it?le dorfier2009-07-16T20:59:14Z2009-07-16T20:59:14ZA "define" statement has a specific limited scope. A defined variable shouldn't outlive the execution of a single script, nor interact with other scripts unless called as subscripts.http://stackoverflow.com/questions/1140010/ensuring-record-value-integrity-in-a-open-source-database/1140172#1140172Comment by le dorfier on Ensuring record value integrity in a open-source databasele dorfier2009-07-16T20:56:58Z2009-07-16T20:56:58ZI hope not. It would violate the basic concept of a DBA.http://stackoverflow.com/questions/474591/which-are-the-sql-improvements-you-are-waiting-forComment by le dorfier on Which are the SQL improvements you are waiting for?le dorfier2009-07-16T20:55:42Z2009-07-16T20:55:42ZMainly what I would like to see is some attempt to remove much of the cruft that has crept into various dialects of SQL (many anti-relational), making them more incompatible and complex.