Changes between Version 69 and Version 70 of DatabaseBasedAnalysis
- Timestamp:
- 08/06/18 16:03:41 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DatabaseBasedAnalysis
v69 v70 672 672 SELECT 673 673 Weight, MeanX, MeanY, CosDelta, SinDelta, M3Long, SlopeLong, Leakage1, WL, 674 cosa*X - sina*Y /1.02AS PX,675 cosa*Y + sina*X /1.02AS PY674 cosa*X - sina*Y AS PX, 675 cosa*Y + sina*X AS PY 676 676 FROM 677 677 ( … … 767 767 768 768 If 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" 771 Generally, 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 }}}