Changes between Version 69 and Version 70 of DatabaseBasedAnalysis


Ignore:
Timestamp:
08/06/18 16:03:41 (6 years ago)
Author:
tbretz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseBasedAnalysis

    v69 v70  
    672672                                        SELECT
    673673                                            Weight, MeanX, MeanY, CosDelta, SinDelta, M3Long, SlopeLong, Leakage1, WL,
    674                                             cosa*X - sina*Y/1.02 AS PX,
    675                                             cosa*Y + sina*X/1.02 AS PY
     674                                            cosa*X - sina*Y AS PX,
     675                                            cosa*Y + sina*X AS PY
    676676                                        FROM
    677677                                        (
     
    767767
    768768If somebody find a way to write that query in an easier readable way, I would be glad to know.
     769
     770{{{#!div style="background: #d88; border: 3px ridge"
     771Generally, it is '''not''' recommended to run the full analysis on the server - as long as you want to optimize or change things. Running it on the server only makes sense if you have finished optimizing your analysis and want to process a lot of data (as in an automatic process).
     772}}}