User SarekOfVulcan - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:54:23Z http://stackoverflow.com/feeds/user/2531 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/613776/scheduling-parameterized-reports-in-crystal-reports-server 0 Scheduling parameterized reports in Crystal Reports Server SarekOfVulcan 2009-03-05T06:27:32Z 2009-11-11T13:17:24Z <p>I'm trying to set up a report to run monthly in Crystal Reports Server 2008 that will give me the next month's Affordable Care Plan termination dates. However, as far as I can tell, I can only give it a particular date string, not "7 days after the report is scheduled". How do I do this? (Same question for CR2008, actually, but the server is the one I'm interested in right now.)</p> <p>Thanks!</p> http://stackoverflow.com/questions/613776/scheduling-parameterized-reports-in-crystal-reports-server/1247914#1247914 0 Answer by SarekOfVulcan for Scheduling parameterized reports in Crystal Reports Server SarekOfVulcan 2009-08-08T03:46:16Z 2009-08-08T03:46:16Z <p>Turns out that the answer to this involves CR2008's new feature, optional parameters. If the HasValue({?MyParameter}) function returns false, you can use the default: otherwise, use the value of MyParameter.</p> http://stackoverflow.com/questions/1237139/svn-and-visual-foxpro-databases/1239338#1239338 2 Answer by SarekOfVulcan for SVN and Visual Foxpro Databases SarekOfVulcan 2009-08-06T14:41:24Z 2009-08-06T14:41:24Z <p>Christof Wollenhaupt has a tool called "TwoFox" that does a good job converting DBCs and other Fox source files to XML -- the article describing it is <a href="http://www.foxpert.com/docs/cvs.en.htm" rel="nofollow">http://www.foxpert.com/docs/cvs.en.htm</a>. If you're just asking about dropping the DBF files into SVN, though, you can import them as binary files, and lose the ability to compare/merge between versions, or use CURSORTOXML (that was in 7, wasn't it?) to convert the DBFs to XML before checking them in.</p> http://stackoverflow.com/questions/533942/crystal-reports-formula-isnull-iif 0 Crystal Reports formula: IsNull + Iif SarekOfVulcan 2009-02-10T20:04:18Z 2009-07-15T03:00:03Z <p>There are hints of the answer to this question here and there on this site, but I'm asking a slightly different answer.</p> <p>Where does Crystal Reports document that this syntax does not work?</p> <pre><code>Trim({PatientProfile.First}) + " " + Trim(Iif( IsNull({PatientProfile.Middle}) , Trim({PatientProfile.Middle}) + " " , " " ) ) + Trim({PatientProfile.Last}) </code></pre> <p>I know the solution is</p> <pre><code>If IsNull({PatientProfile.Middle}) Then Trim({PatientProfile.First}) + " " + Trim({PatientProfile.Last}) Else Trim({PatientProfile.First}) + " " + Trim({PatientProfile.Middle}) + " " + Trim({PatientProfile.Last}) </code></pre> <p>but how are we supposed to figure out we can't use the first version?</p> <p>The documentation for IsNull says </p> <ul> <li>Evaluates the field specified in the current record and returns TRUE if the field contains a null value</li> </ul> <p>and Iif gives</p> <ul> <li>[Returns] truePart if expression is True and falsePart if expression is False. The type of the returned value is the same as the type of truePart and falsePart.</li> </ul> <p>I suppose if you stare at that line about "type of the return value" you can get it, but...</p> http://stackoverflow.com/questions/830775/crystal-reports-very-large-database-very-long-processing-time/860068#860068 0 Answer by SarekOfVulcan for Crystal Reports - very large database, very long processing time SarekOfVulcan 2009-05-13T19:53:33Z 2009-05-13T19:53:33Z <p>Do you know what the SQL query is? If so, you can move the report outside the accounting application and paste the query directly into the Command in the database expert. I've had to do this in a couple of cases with another application I work with.</p> http://stackoverflow.com/questions/860030/crystal-reports-if-then-else-selection-based-on-parameter/860047#860047 2 Answer by SarekOfVulcan for Crystal Reports if-then-else selection based on parameter SarekOfVulcan 2009-05-13T19:49:38Z 2009-05-13T19:49:38Z <p>In your Record Selection Formula, say something like:</p> <pre><code>If {?DisplayAll} Then True Else {Data.Balance} &lt; 0; </code></pre> http://stackoverflow.com/questions/859477/crystal-reports-query-help-if-then-else/860037#860037 0 Answer by SarekOfVulcan for Crystal Reports query help if-then-else SarekOfVulcan 2009-05-13T19:48:08Z 2009-05-13T19:48:08Z <p>If you right-click on the original database field and choose "Format Field...", you can set the Display String on the Common tab using one of the formulas above, instead of creating a separate formula to do the calculation.</p> http://stackoverflow.com/questions/839457/crystal-toc-add-dots/858366#858366 0 Answer by SarekOfVulcan for Crystal: TOC add dots SarekOfVulcan 2009-05-13T14:40:33Z 2009-05-13T14:40:33Z <p>You could draw a dotted line behind the page title and page number fields, bring the fields to the front, and set their backgrounds to white. It wouldn't quite be the periods you're looking for, but it's a bit less baroque than the other method.</p> http://stackoverflow.com/questions/850947/sorting-a-crystal-reports-2008-cross-tab-in-two-directions 0 Sorting a Crystal Reports 2008 Cross-tab in two directions SarekOfVulcan 2009-05-12T02:43:08Z 2009-05-12T02:43:08Z <p>I have a table that shows a list of doctors, facilities, and charges. I set up a Cross-tab Report in Crystal Reports 2008, putting the doctors on the rows, the facilities on the columns, and the sum of the charges (and a couple of related numbers) as the summary fields.</p> <p>When I did this same report in Excel, I had no trouble sorting by sum of charges in both directions, so that the doctors who brought in the most money were listed at the upper left, and the facilities that brought in the most money were also listed at the upper left. However, in Crystal, I could only use the Group Sort Expert to sort the doctors by sum of charges; I could find no way to sort the list of facilities at the same time.</p> <p>Am I missing something, or is Crystal just lacking this basic ability? Thanks.</p> http://stackoverflow.com/questions/750932/publish-crystal-reports-with-htm-based-parameter-page-to-the-intranet/812263#812263 0 Answer by SarekOfVulcan for Publish crystal reports with htm-based parameter page to the intranet SarekOfVulcan 2009-05-01T17:03:50Z 2009-05-01T17:03:50Z <p>Well, I see you used the "Crystal Reports Server" tag -- that answers your question right there. :-) It provides web viewing, report scheduling, and all sorts of nifty backend features.</p> http://stackoverflow.com/questions/215585/what-are-some-recommended-programming-resources-for-pre-teens 0 What are some recommended programming resources for pre-teens? SarekOfVulcan 2008-10-18T21:19:49Z 2009-03-07T03:51:30Z <p>What are the best places for getting my daughters interested in programming without actually knowing that's what I'm doing? :-)</p> <p>For example, I presented Alice.org to the older one as a storytelling program. I showed her Logo once, and she drew squares for an afternoon and forgot about it.</p> http://stackoverflow.com/questions/613615/parser-using-regex-and-xml-in-c/613633#613633 1 Answer by SarekOfVulcan for Parser using RegEx and XML, in C# SarekOfVulcan 2009-03-05T05:08:08Z 2009-03-05T05:08:08Z <p>Last time I asked a question like this, someone pointed me to <a href="http://www.antlr.org/" rel="nofollow">http://www.antlr.org/</a>. Enjoy. :-)</p> http://stackoverflow.com/questions/611676/oracle-correlated-subquery-in-from-list 0 Oracle correlated subquery in FROM list SarekOfVulcan 2009-03-04T17:44:43Z 2009-03-05T02:38:52Z <p>I just tried to do a correlated subquery in the FROM clause of a SELECT statement in Oracle, but I was given an error indicating that I couldn't do the correlation (something to the effect that Obs.pID was not recognized). Should this work?</p> <pre><code>FROM ml.Person Person JOIN ml.Obs ON Person.pID = Obs.pId JOIN (SELECT ObsMax2.pId, ObsMax2.hdId , MAX(ObsMax2.obsDate) as maxDate FROM ml.Obs ObsMax2 WHERE ObsMax2.pId = Obs.pId AND ObsMax2.obsDate &lt; {?EndDate} GROUP BY ObsMax2.pId, ObsMax2.hdId) ObsMax ON Obs.pId = ObsMax.pId AND Obs.hdId = ObsMax.hdId AND Obs.obsDate = ObsMax.maxDate </code></pre> <p>My workaround would appear to be to make it a non-correlated subquery, and add criteria to the subquery that keeps it from running completely amuck, amuck, amu--<em>oof</em> Sorry. I'd rather figure out how to properly correlate it, though, if possible -- the view that works like that subquery takes forever to build. Thanks.</p> http://stackoverflow.com/questions/611850/ms-sql-server-2008-confusion-in-migrating-from-mysql-re-select-xyz-from-table/611859#611859 0 Answer by SarekOfVulcan for MS SQL Server 2008 - Confusion in migrating from MySQL re: "select XYZ from TABLE" SarekOfVulcan 2009-03-04T18:31:17Z 2009-03-04T18:31:17Z <p>Try this, if you haven't already:</p> <pre><code>USE gk GO SELECT * FROM tablename </code></pre> http://stackoverflow.com/questions/229762/what-single-software-development-tool-do-you-think-holds-the-most-value/229783#229783 7 Answer by SarekOfVulcan for What single software development tool do you think holds the most value? SarekOfVulcan 2008-10-23T13:52:11Z 2008-10-23T13:52:11Z <p>Subversion. Even if you're a solo programmer, version control is a vital tool. And WinZip is <em>not</em> a version control system. :-)</p> <p><a href="http://subversion.tigris.org" rel="nofollow">http://subversion.tigris.org</a></p> http://stackoverflow.com/questions/229699/what-is-the-best-example-of-a-web-site-that-offer-programming-tutorials-to-teach/229715#229715 2 Answer by SarekOfVulcan for What is the best example of a Web site that offer programming tutorials to teach beginners how to program? SarekOfVulcan 2008-10-23T13:29:52Z 2008-10-23T13:29:52Z <p><a href="http://TryRuby.hobix.com/" rel="nofollow">http://TryRuby.hobix.com/</a> has an interactive window, so you can type into it and see the results of Ruby commands.</p> http://stackoverflow.com/questions/215585/what-are-some-recommended-programming-resources-for-pre-teens/215587#215587 2 Answer by SarekOfVulcan for What are some recommended programming resources for pre-teens? SarekOfVulcan 2008-10-18T21:21:11Z 2008-10-18T21:21:11Z <p>Asked and answered at <a href="http://stackoverflow.com/questions/165905/how-and-when-do-you-teach-a-kid-to-code">http://stackoverflow.com/questions/165905/how-and-when-do-you-teach-a-kid-to-code</a> already. If you have suggestions not covered there, love to hear them too.</p> http://stackoverflow.com/questions/157845/how-expensive-is-oracle-enterprise-manager 3 How "expensive" is Oracle Enterprise Manager? SarekOfVulcan 2008-10-01T14:21:47Z 2008-10-06T19:43:32Z <p>I'm using a medical records system built on an Oracle database. Our vendor just told us that we need to shut down Oracle's Enterprise Manager service when we're not using it, because it uses too much of the system's resources. I know I can get actual numbers by checking Sysinternals Process Explorer, but I was hoping that someone can give me info from their personal experience.</p> <p>Do I need to shut down EM when I'm done with it, or is he being overly concerned? Thanks.</p> http://stackoverflow.com/questions/169212/server-side-report-in-crystal-2008/169304#169304 0 Answer by SarekOfVulcan for Server-side Report in Crystal 2008? SarekOfVulcan 2008-10-03T23:26:49Z 2008-10-03T23:26:49Z <p>This isn't really what you're asking, but Crystal Reports Server does server-side reporting. </p> <p>On the downside, it's annoyingly expensive.</p> <p><a href="http://www.businessobjects.com/product/catalog/crystalreports_server/" rel="nofollow">http://www.businessobjects.com/product/catalog/crystalreports_server/</a></p> http://stackoverflow.com/questions/137226/how-do-you-optimize-tables-for-specific-queries/137236#137236 1 Answer by SarekOfVulcan for How do you optimize tables for specific queries? SarekOfVulcan 2008-09-26T01:17:27Z 2008-09-26T01:17:27Z <p>That's difficult to answer without knowing which system you're talking about.</p> <p>In Oracle, for example, the Enterprise Manager lets you see which queries took up the most time, lets you compare different execution profiles, and lets you analyze queries over a block of time so that you don't add an index that's going to help one query at the expense of every other one you run.</p> http://stackoverflow.com/questions/74928/tool-to-parse-a-file 2 Tool to parse a file SarekOfVulcan 2008-09-16T17:40:02Z 2008-09-18T10:32:53Z <p>I'm trying to figure out the best way to parse a GE Logician MEL trace file to make it easier to read.</p> <p>It has segments like </p> <pre>>{!gDYNAMIC_3205_1215032915_810 = (clYN)} execute>GDYNAMIC_3205_1215032915_810 = "Yes, No" results>"Yes, No" execute>end results>"Yes, No" >{!gDYNAMIC_3205_1215032893_294 = (clYN)} execute>GDYNAMIC_3205_1215032893_294 = "Yes, No" results>"Yes, No" execute>end results>"Yes, No" </pre> and <pre>>{IF (STR(F3205_1220646638_285, F3205_1220646638_301) == "") THEN "" ELSE (\par\tab fnHeadingFormat("Depression") + CFMT(F3205_1220646638_285, "", "Have you often been bothered by feeling down, depressed or hopeless? ", "B", "\par ") + CFMT(F3205_1220646638_301, "", "Have you often been bothered by little interest or pleasure in doing things? ", "B", "\par ") ) ENDIF} execute>call STR("No", "No") results>"NoNo" execute>"NoNo" == "" results>FALSE execute>if FALSE results>FALSE execute>call FNHEADINGFORMAT("Depression") execute>call CFMT("Depression", "B,2") results>"\fs24\b Depression\b0\fs20 " execute>"\r\n" + "\fs24\b Depression\b0\fs20 " results>"\r\n\fs24\b Depression\b0\fs20 " execute>"\r\n\fs24\b Depression\b0\fs20 " + "\r\n" results>"\r\n\fs24\b Depression\b0\fs20 \r\n" results>return "\r\n\fs24\b Depression\b0\fs20 \r\n" execute>call CFMT("No", "", "Have you often been bothered by feeling down, depressed or hopeless? ", "B", "\par ") results>"\b Have you often been bothered by feeling down, depressed or hopeless? \b0 No\par " execute>"\r\n\fs24\b Depression\b0\fs20 \r\n" + "\b Have you often been bothered by feeling down, depressed or hopeless? \b0 No\par " results>"\r\n\fs24\b Depression\b0\fs20 \r\n\b Have you often been bothered by feeling down, depressed or hopeless? \b0 No\par " execute>call CFMT("No", "", "Have you often been bothered by little interest or pleasure in doing things? ", "B", "\par ") results>"\b Have you often been bothered by little interest or pleasure in doing things? \b0 No\par " execute>"\r\n\fs24\b Depression\b0\fs20 \r\n\b Have you often been bothered by feeling down, depressed or hopeless? \b0 No\par " + "\b Have you often been bothered by little interest or pleasure in doing things? \b0 No\par " results>"\r\n\fs24\b Depression\b0\fs20 \r\n\b Have you often been bothered by feeling down, depressed or hopeless? \b0 No\par \b Have you often been bothered by little interest or pleasure in doing things? \b0 No\par " </pre> <p>I could grovel through doing it procedurally, but after all the regexps I've worked with, I find it hard to believe there's nothing out there that will let me define the rules for parsing the file in a similar manner. Am I wrong?</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76766#76766 0 Answer by SarekOfVulcan for What is the single most effective thing you did to improve your programming skills? SarekOfVulcan 2008-09-16T20:38:41Z 2008-09-16T20:38:41Z <p>Typically, I didn't really get into languages until I dived in and started actually working with the code -- preferably, other people's code, so I could see how things actually fit together.</p> <p>Also, from the first day in college classes, legibility was emphasized almost over functionality. Write code you can make sense of the next day. :-)</p> http://stackoverflow.com/questions/76350/free-cheap-powerdesigner-alternative/76653#76653 0 Answer by SarekOfVulcan for Free/cheap PowerDesigner alternative? SarekOfVulcan 2008-09-16T20:30:00Z 2008-09-16T20:30:00Z <p>You might want to look at https://www.xcase.com/demo.php. It's not free, but it's quite a bit cheaper than PowerDesigner, as far as I can tell. I've used earlier versions, but lately I've had easy access to Visio, so have continued with that instead of investing in xCase.</p> http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63548#63548 3 Answer by SarekOfVulcan for What is the strangest programming language you have used? SarekOfVulcan 2008-09-15T14:46:05Z 2008-09-15T14:46:05Z <p>FOCUS for Mainframes is the weirdest one I ever used, I think. Scary to see that it's still in active development.... <a href="http://www.informationbuilders.com/products/focus/ibm_overview.html" rel="nofollow">http://www.informationbuilders.com/products/focus/ibm_overview.html</a></p> http://stackoverflow.com/questions/14582/can-i-make-subversion-tortoisesvn-case-insensitive-for-windows/63075#63075 1 Answer by SarekOfVulcan for Can I make Subversion + TortoiseSVN case-insensitive for Windows? SarekOfVulcan 2008-09-15T13:53:15Z 2008-09-15T13:53:15Z <p>Kit, you comment above that VFP's binary-based source files are tough to work with in Subversion. The link I gave above mentions a couple of tools to make it easier, but the one I work with is Christof Wollenhaupt's TwoFox utility -- it converts a VFP project to text-only. You have to run it manually, but I don't have a problem with that.</p> <p><a href="http://www.foxpert.com/docs/cvs.en.htm" rel="nofollow">http://www.foxpert.com/docs/cvs.en.htm</a></p> http://stackoverflow.com/questions/23509/what-is-the-difference-between-project-leader-and-project-manager/23519#23519 0 Answer by SarekOfVulcan for What is the difference between Project Leader and Project Manager? SarekOfVulcan 2008-08-22T21:19:46Z 2008-08-22T21:19:46Z <p>It's not quite your question, but at Microsoft, the Program Manager has tech responsibility, and the Product Manager has marketing responsibility. Is this at all relevant to what you asked?</p> http://stackoverflow.com/questions/2658/version-control-getting-started/23130#23130 0 Answer by SarekOfVulcan for Version Control. Getting started... SarekOfVulcan 2008-08-22T18:30:30Z 2008-08-22T18:30:30Z <p>As mentioned many times elsewhere, Just Do It. I was able to get started from scratch with Subversion under Windows in no time by reading the quick-start guide in the Red Book. Once I pointed TortoiseSVN at the repository, I was in business. It took me a while to get the finer points down, but they were minor humps to get over.</p> <p>I'd suggest installing the Subversion Service instead of using file:// URLs, but that's mostly personal preference. For a repository stored on your development machine, file:// works fine.</p> http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome/23118#23118 1 Answer by SarekOfVulcan for What are the barriers to understanding pointers and what can be done to overcome them? SarekOfVulcan 2008-08-22T18:25:52Z 2008-08-22T18:25:52Z <p>Just to confuse things a bit more, sometimes you have to work with handles instead of pointers. Handles are pointers to pointers, so that the back end can move things in memory to defragment the heap. If the pointer changes in mid-routine, the results are unpredictable, so you first have to lock the handle to make sure nothing goes anywhere.</p> <p><a href="http://arjay.bc.ca/Modula-2/Text/Ch15/Ch15.8.html#15.8.5" rel="nofollow"><a href="http://arjay.bc.ca/Modula-2/Text/Ch15/Ch15.8.html#15.8.5" rel="nofollow">http://arjay.bc.ca/Modula-2/Text/Ch15/Ch15.8.html#15.8.5</a></a> talks about it a bit more coherently than me. :-)</p> http://stackoverflow.com/questions/1383/what-is-unit-testing/23070#23070 0 Answer by SarekOfVulcan for What is unit testing? SarekOfVulcan 2008-08-22T18:10:23Z 2008-08-22T18:10:23Z <p>I went to a presentation on unit testing at FoxForward 2007 and was told never to unit test anything that works with data. After all, if you test on live data, the results are unpredictable, and if you don't test on live data, you're not actually testing the code you wrote. Unfortunately, that's most of the coding I do these days. :-)</p> <p>I did take a shot at TDD recently when I was writing a routine to save and restore settings. First, I verified that I could create the storage object. Then, that it had the method I needed to call. Then, that I could call it. Then, that I could pass it parameters. Then, that I could pass it specific parameters. And so on, until I was finally verifying that it would save the specified setting, allow me to change it, and then restore it, for several different syntaxes.</p> <p>I didn't get to the end, because I needed-the-routine-now-dammit, but it was a good exercise.</p> http://stackoverflow.com/questions/16501/what-is-a-lambda-function/23046#23046 0 Answer by SarekOfVulcan for What is a lambda (function)? SarekOfVulcan 2008-08-22T18:01:54Z 2008-08-22T18:01:54Z <p>I have trouble wrapping my head around lambda expressions because I work in Visual FoxPro, which has Macro substitution and the ExecScript{} and Evaluate() functions, which seem to serve much the same purpose.</p> <pre><code>? Calculator(10, 23, "a + b") ? Calculator(10, 23, "a - b"); FUNCTION Calculator(a, b, op) RETURN Evaluate(op) </code></pre> <p>One definite benefit to using formal lambdas is (I assume) compile-time checking: Fox won't know if you typo the text string above until it tries to run it.</p> <p>This is also useful for data-driven code: you can store entire routines in memo fields in the database and then just evaluate them at run-time. This lets you tweak part of the application without actually having access to the source. (But that's another topic altogether.)</p> http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1733489#1733489 Comment by SarekOfVulcan on RegEx match open tags except XHTML self-contained tags SarekOfVulcan 2009-11-16T15:34:57Z 2009-11-16T15:34:57Z Hey, now, if Paris can give reasonable answers while running a fake campaign for president, maybe she can write a reasonable fake OS too. :-) http://stackoverflow.com/questions/1729436/show-total-number-of-records-at-the-end-of-the-page/1729472#1729472 Comment by SarekOfVulcan on show total number of records at the end of the page SarekOfVulcan 2009-11-16T15:32:21Z 2009-11-16T15:32:21Z I have at least one report at the moment running against two different SQL Server databases at the same time. http://stackoverflow.com/questions/858255/old-patterns-and-new-patterns-for-database-modeling-nomenclature/858306#858306 Comment by SarekOfVulcan on Old patterns and new patterns for database modeling nomenclature SarekOfVulcan 2009-05-13T14:43:54Z 2009-05-13T14:43:54Z No, id_file_type is good, because then you're linking the same field name in both the parent and child table. http://stackoverflow.com/questions/850947/sorting-a-crystal-reports-2008-cross-tab-in-two-directions Comment by SarekOfVulcan on Sorting a Crystal Reports 2008 Cross-tab in two directions SarekOfVulcan 2009-05-13T14:28:23Z 2009-05-13T14:28:23Z Still waiting. I'll settle for confirmation that it can't be done, if I can't find out how to do it. http://stackoverflow.com/questions/613776/scheduling-parameterized-reports-in-crystal-reports-server/613997#613997 Comment by SarekOfVulcan on Scheduling parameterized reports in Crystal Reports Server SarekOfVulcan 2009-03-09T12:04:22Z 2009-03-09T12:04:22Z I'm just trying to avoid maintaining two versions of the report, one with and one without parameters. http://stackoverflow.com/questions/611676/oracle-correlated-subquery-in-from-list/613413#613413 Comment by SarekOfVulcan on Oracle correlated subquery in FROM list SarekOfVulcan 2009-03-09T12:00:12Z 2009-03-09T12:00:12Z The explain plan for this version was a bit better than the one I came up with, and it feels faster, too. I hadn't run into these before -- thanks! http://stackoverflow.com/questions/611676/oracle-correlated-subquery-in-from-list/612065#612065 Comment by SarekOfVulcan on Oracle correlated subquery in FROM list SarekOfVulcan 2009-03-06T20:22:46Z 2009-03-06T20:22:46Z I just tried asking for the Explain Plan on this one, and it was an order of magnitude or two higher than the version with the non-correlated subquery. Still need to check David's version, since I don't understand that one at all. :-) http://stackoverflow.com/questions/613776/scheduling-parameterized-reports-in-crystal-reports-server/613997#613997 Comment by SarekOfVulcan on Scheduling parameterized reports in Crystal Reports Server SarekOfVulcan 2009-03-05T13:27:21Z 2009-03-05T13:27:21Z That might be a possibility. If the parameter is blank, then set a global variable to such-and-such, else set it to the parameter... http://stackoverflow.com/questions/611676/oracle-correlated-subquery-in-from-list/612065#612065 Comment by SarekOfVulcan on Oracle correlated subquery in FROM list SarekOfVulcan 2009-03-05T05:29:19Z 2009-03-05T05:29:19Z But I don't think this would work - you might need observations from two different days (BMI percentile at one visit, asthma monitoring on another). Unless there's something about the correlation that I'm missing, which is always a possibility... http://stackoverflow.com/questions/611676/oracle-correlated-subquery-in-from-list Comment by SarekOfVulcan on Oracle correlated subquery in FROM list SarekOfVulcan 2009-03-05T05:25:01Z 2009-03-05T05:25:01Z @David - &quot;Pedant&quot; :-) @Alan - I'm just not sure to what extent I'm supposed to talk about the internals of this system. Typically, I would use a built-in view that does the grouping by pID/hdID to get the most recent observation - but that fails if it's in 2009 and you're querying 2008. http://stackoverflow.com/questions/611676/oracle-correlated-subquery-in-from-list/612065#612065 Comment by SarekOfVulcan on Oracle correlated subquery in FROM list SarekOfVulcan 2009-03-05T05:14:52Z 2009-03-05T05:14:52Z This is a query for an EMR (medical records) system. pId is PersonId, hdId identifies an medical observation (BP, Pulse, LDL, etc.) Therefore, you wouldn't have to worry (much) about duplicating pid/hdid/date - you have one value per document. http://stackoverflow.com/questions/14582/can-i-make-subversion-tortoisesvn-case-insensitive-for-windows/63075#63075 Comment by SarekOfVulcan on Can I make Subversion + TortoiseSVN case-insensitive for Windows? SarekOfVulcan 2009-03-04T18:23:34Z 2009-03-04T18:23:34Z Sorry I didn't see this before -- for the record, I just checked Christof's site, and the download is still good. I'm guessing it was just a temporary glitch.... http://stackoverflow.com/questions/533942/crystal-reports-formula-isnull-iif/539135#539135 Comment by SarekOfVulcan on Crystal Reports formula: IsNull + Iif SarekOfVulcan 2009-03-04T17:31:33Z 2009-03-04T17:31:33Z Yes, but I'm trying to figure out where in the bloody documentation it <i>says</i> this, instead of making everyone who runs into it Google for the answer. After all, one or two of us know how code is <i>supposed</i> to work... http://stackoverflow.com/questions/533942/crystal-reports-formula-isnull-iif Comment by SarekOfVulcan on Crystal Reports formula: IsNull + Iif SarekOfVulcan 2009-03-04T17:30:29Z 2009-03-04T17:30:29Z For records where .Middle is NULL, CR can't evaluate the string value in Trim(.Middle), and decides the value of the Iif is NULL, even though I have that explicit test in there. http://stackoverflow.com/questions/306899/how-to-use-if-then-else-to-build-a-string-in-a-crystal-reports-formula/306916#306916 Comment by SarekOfVulcan on How to use if then else to build a string in a crystal reports formula SarekOfVulcan 2009-02-10T19:33:39Z 2009-02-10T19:33:39Z Actually, I think Crystal <i>does</i> allow you to call a function from a formula.