User mson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T20:06:02Zhttp://stackoverflow.com/feeds/user/36902http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/351709/windows-server-monitoring2windows server monitoringmson2008-12-09T03:43:16Z2009-11-23T19:33:06Z
<p>Can anyone recommend monitoring software for a windows environment?</p>
<p>We already have monitoring in the sense of resources and availability. I want to know who logged in and changed settings, added files etc.</p>
<p>We have outsourced IT and I want to be able to track down all the changes to the system. </p>
<p>I'm open to keyboard logging or session recording.</p>
<p>Open Source/Free is optimal, but we're willing to pay for a solution as well.</p>
<p><hr /></p>
<h3>Edit:</h3>
<p>It looks like we don't have the Systems Admin skillset yet.</p>
http://stackoverflow.com/questions/403084/optimal-off-the-shelf-development-machine13Optimal OFF THE SHELF development machinemson2008-12-31T14:33:34Z2009-11-05T06:47:39Z
<p>I've been getting a high end dell xps laptop or desktop every 12-16 months for the last 8 years. I'm really satisfied with the actual hardware and price, but I'm getting very annoyed by their warranty calls and their offshore support. </p>
<p>I'm seeing interesting things about high end apples, but I can't stand the elitist attitude and company policies and would prefer not to do business with them.</p>
<p>Given that I prefer to support American companies, with American tech support, and hate being put on sales call lists, what alternative do I have?</p>
<p>Having said all that, I'm still willing to consider any product (including dell and apple) when it comes to to purchase. </p>
<p>If you had a $10,000 budget for a development machine (excluding OS and IDE), what specific system would you buy?</p>
<p>EDIT:</p>
<p>The one thing that I do not have much of is time... So the build your own responses are nice, but I'd like to buy a box system and then just have to reformat the drives before installing my stuff.</p>
<p>PURCHASE:</p>
<p>I ended up buying an alienware machine from costco:</p>
<p><a href="http://tinyurl.com/OMGThisIsALongUrlButNowItsTiny" rel="nofollow">http://tinyurl.com/OMGThisIsALongUrlButNowItsTiny</a> <em>(NOT a rickroll! - Will)</em></p>
<p>It seemed to be exactly what I was looking for (minus the OS). The machine seems a bit tacky, but the power, features, and build seemed like they were going to better than a HP, Dell, or Lenovo. I'm only out 2500, so I'm buying another machine for one of my developers and I guess I'll be returning the rest to the company coffers. </p>
<p>BTW - The alienware sales support is terribly slow. If I had to deal with them, I would not have bought. I like buying from costco because I like their corporate ethos. Also - there are two posts I would like to credit as the 'answer', but SO doesn't support it yet...</p>
<p>Alienware review:
Alienware delivered the product almost 2 weeks early. Fed Ex botched the delivery, but the delivery time is still fantastic.</p>
<p>I always reinstall the OS when I buy a new machine to get rid of all the monitoring and bloatware the manufacturer puts in, but I was amazed to find that Alienware didn't have any bloatware. They did have an Alienware manager, but it looked like all it does is check for up-to-date drivers. The system booted very fast out of the box.</p>
<p>I disabled the facial recognition software and fingerprint scanner and am reinstalling with Vista64 and VS2008. The system registers with a 5.4 Vista Experience Index (Everything was 5.8-9 except for the actually processor). This is on par with my fairly tricked out gaming machine.</p>
<p>Other than the tacky case and logo, the machine is fantastic. I'm very pleased. I don't have to directly shop at Dell any more (I know they still get the end profit...)</p>
http://stackoverflow.com/questions/1666339/ms-access-select-and-where/1667082#16670820Answer by mson for MS Access SELECT and WHEREmson2009-11-03T12:36:03Z2009-11-03T12:36:03Z<p>You may want to use a date comparison function instead of date = #xxxx/xx/xx#. Date comparisons do not yield expected results because of formatting and data type issues. In SQL Server your date might be stored as a datetime or a date data type. You need to make sure you are comparing things in the same type and format.</p>
<p>DateDiff ("d", #1992/03/26#, date) = 0</p>
http://stackoverflow.com/questions/1352414/complex-calculations4Complex Calculationsmson2009-08-29T21:24:05Z2009-10-12T20:32:48Z
<p>What are the best tools (most efficient) available in .NET (C#) for calculating:</p>
<ul>
<li>integrals</li>
<li>partial derivatives</li>
<li>other non-trivial math</li>
</ul>
<p>Can people please comment on Mathematica and Matlab and their integration into C#? </p>
http://stackoverflow.com/questions/652476/how-can-i-create-a-thumbnail-from-an-mpg-video-with-c5How can I create a thumbnail from an mpg video with C#?mson2009-03-16T23:06:09Z2009-09-29T09:56:18Z
<p>I'd like to process a directory of mpg's in a batch to have a thumbnail using C#/.NET. </p>
<p>Does anyone have any good suggestions on how I could do this? </p>
http://stackoverflow.com/questions/1382322/calculating-vs-lookup-tables-for-sine-value-performance5Calculating vs. lookup tables for sine value performance?mson2009-09-05T02:57:26Z2009-09-18T17:26:57Z
<p>Let's say you had to calculate the sine (cosine or tangent - whatever) where the domain is between 0.01 and 360.01. (using C#)</p>
<p>What would be more performant?</p>
<ol>
<li>Using Math.Sin</li>
<li>Using a lookup array with precalculated values</li>
</ol>
<p>I would anticpate that given the domain, option 2 would be much faster. At what point in the precision of the domain (0.0000n) does the performance of the calculation exceed the lookup.</p>
http://stackoverflow.com/questions/1439071/how-to-add-2-rows-in-gridview-footer/1439161#14391611Answer by mson for How to add 2 rows in Gridview footermson2009-09-17T14:14:52Z2009-09-17T15:14:34Z<p>you can do this lots of ways, but one of them is to use TemplateField</p>
<p>here is format for your gridview (put your content in the cells)
...</p>
<pre><code> <Columns>
<asp:TemplateField>
<FooterTemplate>
<table width="100%">
<tr><td><asp:Literal runat="server" ID="ltField1" Text='<%# Bind("field1") %>'></asp:Literal></td>
</tr>
<tr><td>><asp:Literal runat="server" ID="ltField2" Text='<%# Bind("field2") %>'></asp:Literal></td>
</tr>
</table>
</FooterTemplate>
</code></pre>
<p>...</p>
http://stackoverflow.com/questions/1423410/trademark-search-tool-2trademark search tool [closed]mson2009-09-14T19:21:33Z2009-09-14T19:30:00Z
<p>Is there an open-source or non open-source application that can crawl the web and look for trademarks (either text or image) or do I need to create it myself...</p>
http://stackoverflow.com/questions/390516/what-do-you-do-when-question-is-not-satisfactorily-answered-on-so4What do you do when question is not satisfactorily answered on SO? [closed]mson2008-12-24T00:46:36Z2009-09-14T19:26:39Z
<p>I recently asked a question about db schema design - <a href="http://stackoverflow.com/questions/388837/schema-design">http://stackoverflow.com/questions/388837/schema-design</a>. There were some responses, but the highest voted response, hints that the question was misunderstood.</p>
<p>What do we/should we do about questions that we'd like answered, but is either answered incorrectly or inadequately. </p>
<ul>
<li>Do we repost and hope that other eyes look?</li>
<li>Do we edit and clarify and hope that it gets a second look (I don't think this strategy works)?</li>
<li>Do we reframe the question in an interesting or inflammatory way to get more attention?</li>
<li>Or something else I haven't thought of...</li>
</ul>
<p>EDIT:</p>
<p>Someone just posted on reddit why unix sucks... if you ask a question about *nix - the gurus generally answer with RTFM (Read the Fn Manual). if you want help with *nix - you have to frame your question in a manner insulting to <em>nix... '</em>nix sucks because it can't do ...' and then they immediately respond with how to do it to prove you are stupid...</p>
<p>It looks like the way to get attention to a question is to ask a meta-question about it (like this one)... There have been better posts on the reference question after I wrote this question. </p>
<p>As an aside, there is a strong undertone of - 'OP is stupid and needs to ask the question better' here. Yes, I can see bad questions being annoying, but instead of answering an incomplete or bad question, you could ask for specific clarifications or help the poster come up with a better question. I think the intent of SO is to be helpful to be developers, not to intellectually dominate or belittle others... There are many active users of SO who should try to temper their knowledge with better attitude.</p>
http://stackoverflow.com/questions/1421844/sql-trigger-disappears0sql trigger disappearsmson2009-09-14T14:17:23Z2009-09-14T19:21:27Z
<p>I've got a trigger in a sql server table. This trigger has disappeared. Is there something systematic that might be causing it to be deleted?</p>
<p>There is no replication on this db. </p>
http://stackoverflow.com/questions/1422906/create-pdf-files-in-sql-server0create pdf files in sql servermson2009-09-14T17:28:06Z2009-09-14T18:30:49Z
<p>All of our correspondence is done via database mail in sql server. The data for document generation and the rules to trigger the generation are all on sql server. We now have to create a pdf file. I was planning on using pdfsharp/migradoc to do it, but then we'd have to create document and time its readiness with sql server data state and mail state. It'd be nice if the db could handle everything.</p>
<p>Has anyone created pdf files directly in sql server? And if so, how.</p>
http://stackoverflow.com/questions/1406351/sql-hurdle-sql-server-2008/1406406#14064062Answer by mson for SQL Hurdle - SQL Server 2008mson2009-09-10T16:42:40Z2009-09-10T16:42:40Z<p>The table method you are already aware is the best way to go. Not only does it give you alot of control, but it is the best performing.</p>
<p>You could write sql code (user function) to do this, but it won't be as flexible. RDBMs are made for handling sets.</p>
http://stackoverflow.com/questions/1402785/sql-server-how-to-change-name-in-a-view/1402798#14027982Answer by mson for SQL Server: How to change name in a view?mson2009-09-10T00:14:22Z2009-09-10T00:14:22Z<p>you can use the gui in sms</p>
<p>you can right click view, edit it, then do generate script if you want the code</p>
http://stackoverflow.com/questions/1396564/why-is-subtraction-faster-than-addition-in-python/1397046#13970460Answer by mson for Why is subtraction faster than addition in Python?mson2009-09-09T00:37:51Z2009-09-09T00:37:51Z<p>Your experiment is faulty. The way this experiment should be designed is to write 2 different programs - 1 for addition, 1 for subtraction. They should be exactly the same and run under the same conditions with the data being put to file. Then you need to average the runs (at least several thousand), but you'd need a statistician to tell you an appropriate number.</p>
<p>If you wanted to analyze different methods of addition, subtraction, and looping, again each of those should be a separate program.</p>
<p>Experimental error might arise from heat of processor and other activity going on the cpu, so i'd execute the runs in a variety of patterns...</p>
http://stackoverflow.com/questions/1394988/asp-net-webforms-versus-asp-net-mvc-revisited-q3-2009-1ASP.NET webforms versus ASP.NET MVC revisited Q3 2009mson2009-09-08T16:39:54Z2009-09-08T16:40:55Z
<p>This question has been discussed before, but it was when MVC was still newish. Now that the framework has had a chance to mature, can people who have actually implemented both models (recently) comment on the pros and cons of each - please no blind cheerleaders...</p>
<p>I have half a dozen products written in a webforms framework that are in production - that use the MVC design pattern, but not the MVC framework. I'm considering looking at MVC and doing an overhaul - mostly because SO is written in MVC and I like the responsiveness and look and feel. The existing products heavily use advanced custom controls with heavily customized gridviews and the like...</p>
http://stackoverflow.com/questions/1394471/free-reports-for-c/1394870#13948700Answer by mson for Free reports for c#mson2009-09-08T16:13:06Z2009-09-08T16:13:06Z<p>I understand the desire to stay inexpensive and would vote for SSRS in addition to your SQLite implmentation. However, the Dundas product is fantastic... </p>
<p>I'm not sure who controls the purse strings, but you can make some flashy displays/reports/dashboards with Dundas. We software developers often focus on the code - it's beauty, it's elegance, it's terseness. We often forget that sales drive the existence/continuance of the product. And sales is driven by - ooh, look at that shiney thing!</p>
http://stackoverflow.com/questions/1382341/realtime-system-database-use2realtime system database usemson2009-09-05T03:06:51Z2009-09-05T03:37:22Z
<p>Given a .NET environment with Windows CE, can you persist thousands of records per second in a local database (SQL Server 2008 - standard or CE).</p>
<p>What are the performance issues with persisting realtime instrument data in a database versus a log file?</p>
http://stackoverflow.com/questions/1373368/how-does-it-know-where-my-value-is-in-memory/1374180#13741801Answer by mson for How does it know where my value is in memory?mson2009-09-03T15:33:49Z2009-09-03T15:33:49Z<p>Computers ultimately only undertand on and off - which we conveniently abstract to binary. This language is the basest level and is called machine language. I'm not sure if this is folklore - but some programmers used to (or maybe still do) program directly in machine language. Typing or reading in binary would be very cumbersome, which is why hexadecimal is often used to abbreviate the actual binary.</p>
<p>Because most of us are not savants, machine language is abstracted into assembly language. Assemply is a very primitive language that directly controls memory. There are a very limited number of commands (push/pop/add/goto), but these ultimately accomplish everything that is programmed. Different machine architectures have different versions of assembly, but the gist is that there are a few dozen key memory registers (physically in the CPU) - in a x86 architecture they are EAX, EBX, ECX, EDX, ... These contain data or pointers that the CPU uses to figure out what to do next. The CPU can only do 1 thing at a time and it uses these registers to figure out what to do next. Computers seem to be able to do lots of things simultaneously because the CPU can process these instructions very quickly - (millions/billions instructions per second). Of course, multi-core processors complicate things, but let's not go there...</p>
<p>Because most of us are not smart or accurate enough to program in assembly where you can easily crash the system, assembly is further abstracted into a 3rd generation language (3GL) - this is your C/C++/C#/Java etc... When you tell one of these languages to put the integer value 5 in a variable, your instructions are stored in text; the assembler compiles your text into an assembly file (executable); when the program is executed, the program and its instructions are queued by the CPU, when it is show time for that specific line of code, it gets read in the the CPU register and processed.</p>
<p>The 'not smart enough' comments about the languages are a bit tongue-in-cheek. Theoretically, the further you get away from zeros and ones to plain human language, the more quickly and efficiently you should be able to produce code.</p>
http://stackoverflow.com/questions/1360380/programming-for-64-bit-asp-net0programming for 64-bit asp.netmson2009-09-01T03:26:10Z2009-09-01T04:14:26Z
<p>Given a .NET 3.5 programming and client-use environment with Windows Vista. What are the implications for programming for a 64 bit OS under the below circumstances? Please specify whether there are issues of functionality or optimization - i.e. will it work and can it be made to work better in 64-bit environment.</p>
<p>1) You are developing a web app (asp.net c#)</p>
<p>2) You are developing a win forms business app (nothing driver level)</p>
<p>3) You are developing a hardware controller</p>
<p>I would have thought there are no differences in case 1 or 2 and that there might be some caveats in case 3. But I'm puzzled by the lack of support for 64-bit VPNs... There must be some issue.</p>
http://stackoverflow.com/questions/1352661/how-to-connect-to-sql-server-through-ip/1352677#13526772Answer by mson for How to connect to SQL server through IPmson2009-08-29T23:59:11Z2009-08-29T23:59:11Z<p>if you are trying to remotely connect to sql server using ssms or another client on a different machine, you need to do the following:</p>
<ul>
<li>open up sqlservr on server firewall</li>
<li>open up sqlbrowsr on server firewall</li>
<li>be concerned about security - if you can rdp/connect to sql w/o vpn, then so can other people - so you better make sure you have hardened environment and very strong passwords.</li>
</ul>
http://stackoverflow.com/questions/1328467/switch-case-with-three-parameters/1328481#13284810Answer by mson for Switch case with three parameters?mson2009-08-25T14:03:34Z2009-08-25T14:03:34Z<p>i don't think your syntax is valid.</p>
<p>I'd nest the switch statements.</p>
http://stackoverflow.com/questions/1291145/mysql-slow-on-join-any-way-to-speed-up/1291753#12917530Answer by mson for MySQL Slow on join. Any way to speed upmson2009-08-18T04:10:04Z2009-08-18T04:10:04Z<p>you might want to add an index to the url field of both tables.</p>
<p>having said that, when i converted from mysql to sql server 2008, with the same queries and same database structures, the queries ran 1-3 orders of magnitude faster.</p>
<p>i think some of it had to do with the rdbms (mysql optimizers are not so good...) and some of it might have had to do with how the rdbms reserve system resources. although, the comparisons were made on production systems where only the db would run.</p>
http://stackoverflow.com/questions/1250070/complex-sql-order-by/1250108#12501080Answer by mson for complex sql order bymson2009-08-08T23:14:44Z2009-08-08T23:14:44Z<p>i'm not sure of your requirements, so my response is an abstraction...
the max - may need to be a min (again, i'm not clear on your exact requirements)</p>
<pre><code>select
y.column1
, y.column2
, y.column3
, y.datecolumn
from
(select
column1
, max(datecolumn) as rank_date
from tableA
group by column1) as x
inner join tableA y on x.id = y.id
order by x.rank_date, y...., y.... desc, y... asc, etc...
</code></pre>
<p>if you are using sql server, there is a function called over row_number that you could use as well.</p>
http://stackoverflow.com/questions/1059863/how-do-you-tell-asp-net-dynamic-data-to-use-stored-procedures-for-select/1243007#1243007-1Answer by mson for How do you tell ASP .Net dynamic data to use stored procedures for select?mson2009-08-07T05:16:22Z2009-08-08T23:01:34Z<p>linq-to-sql is a very bad idea...</p>
<p>but this sproc should allow you to do what you want</p>
<pre><code>create PROCEDURE [dbo].[usp_GetCompanies] (
@in_filter nvarchar(2000)
)
AS
declare @sql nvarchar(max)
begin
set @sql = '
SELECT
c.id as company_id, c.name as company_name
FROM company c
WHERE id is not null ' + @in_filter + ' order by c.type, c.name '
exec sp_executesql @sql
end
return
</code></pre>
<p><a href="http://weblogs.asp.net/scottgu/archive/2007/08/16/linq-to-sql-part-6-retrieving-data-using-stored-procedures.aspx" rel="nofollow">sample</a></p>
http://stackoverflow.com/questions/653714/how-to-select-into-temp-table-from-stored-procedure/1242986#12429860Answer by mson for How to SELECT * INTO [temp table] FROM [Stored Procedure] mson2009-08-07T05:08:30Z2009-08-07T05:08:30Z<p>you can use a common table expression to accomplish your requirements</p>
<p>CTE ftw!</p>
http://stackoverflow.com/questions/1180296/sql-query-incrementing-by-two-instead-of-1/1242961#12429611Answer by mson for SQL Query: Incrementing by two instead of 1mson2009-08-07T04:59:11Z2009-08-07T04:59:11Z<p>i would create a sproc/trigger to handle this on the database side. </p>
<p>call the sproc from your page on a specific event (like a button click).</p>
<p>your issue could be from unexpected browser refresh or it could also be from scope error on database side. </p>
<p>redesigning your code as a stored procedure should either fix your problem or help you figure out where the issue is arising.</p>
http://stackoverflow.com/questions/1242455/where-can-i-find-sql-statements-to-create-eav-model/1242932#12429320Answer by mson for Where can I find SQL statements to create EAV model?mson2009-08-07T04:49:39Z2009-08-07T04:49:39Z<p>the tables and structure will depend on your domain.</p>
<p>here is information you can use as sample/template - <a href="http://en.wikipedia.org/wiki/Entity-Attribute-Value%5Fmodel" rel="nofollow">wiki</a></p>
http://stackoverflow.com/questions/1242888/scheduling-job-on-windows-server-2008/1242916#12429160Answer by mson for Scheduling job on windows server 2008mson2009-08-07T04:42:28Z2009-08-07T04:42:28Z<p>lol - scheduled tasks</p>
<p>here is a <a href="http://www.windowsnetworking.com/articles%5Ftutorials/Working-Windows-Server-2008-Task-Scheduler-Part2.html" rel="nofollow">link</a> </p>
http://stackoverflow.com/questions/1242717/joining-on-columns-of-different-type/1242891#12428910Answer by mson for Joining on columns of different type?mson2009-08-07T04:31:08Z2009-08-07T04:31:08Z<p>you should be fine as long as you explicitly convert the data such that the comparison ends up being done in equivalent datatypes.</p>
<p>based on your description you will need to convert the int datatype to varchar before you make the comparison. take care to trim blanks and be mindful if capitalization is set on your db. also - int comparisons are much faster than varchar comparisons.</p>
http://stackoverflow.com/questions/1242812/pros-cons-of-mysql-vs-postgresql-for-production-ruby-on-rails-environment/1242863#12428634Answer by mson for Pros/Cons of MySQL vs Postgresql for production Ruby on Rails environment?mson2009-08-07T04:16:53Z2009-08-07T04:16:53Z<p>I'm not sure of the technical comparison between the most recent versions of the systems, but I do know there are non-technical factors which you might want to weigh in your decision.</p>
<p>MySQL got bought by Sun which subsequently got bought by Oracle. There were quite a few articles on the decline of quality of MySQL since the founders sold it.</p>
<p>There are other free dbs as well, but i think Postgresql sounds like a good choice.</p>
http://stackoverflow.com/questions/1439071/how-to-add-2-rows-in-gridview-footer/1439161#1439161Comment by mson on How to add 2 rows in Gridview footermson2009-09-17T15:12:58Z2009-09-17T15:12:58Zand you can put anything in the <td></td>
http://stackoverflow.com/questions/1439071/how-to-add-2-rows-in-gridview-footer/1439161#1439161Comment by mson on How to add 2 rows in Gridview footermson2009-09-17T15:11:26Z2009-09-17T15:11:26Zjust switch headertemplate to footertemplatehttp://stackoverflow.com/questions/1421844/sql-trigger-disappears/1422034#1422034Comment by mson on sql trigger disappearsmson2009-09-15T09:26:52Z2009-09-15T09:26:52ZDDL triggers will help me find the culprit!http://stackoverflow.com/questions/1421844/sql-trigger-disappears/1423409#1423409Comment by mson on sql trigger disappearsmson2009-09-15T08:29:15Z2009-09-15T08:29:15ZSomeone recently purchased the sqlcompare from redgate. I wonder if it is the culprit...http://stackoverflow.com/questions/1421844/sql-trigger-disappears/1421880#1421880Comment by mson on sql trigger disappearsmson2009-09-15T08:26:49Z2009-09-15T08:26:49Ztable was not recreated. trigger was gone, not disabled.http://stackoverflow.com/questions/1407359/4-table-join-so-that-only-1-response-is-given-for-each-company-instead-of-a-resulComment by mson on 4 table join so that only 1 response is given for each company instead of a result for each campaignmson2009-09-10T19:53:36Z2009-09-10T19:53:36Z+1 for using initech, but this looks like a simple group by solutionhttp://stackoverflow.com/questions/1394988/asp-net-webforms-versus-asp-net-mvc-revisited-q3-2009Comment by mson on ASP.NET webforms versus ASP.NET MVC revisited Q3 2009mson2009-09-09T00:01:45Z2009-09-09T00:01:45ZSo, it looks like ASP.NET MVC has not matured at all in a year? There are no new plugins? There is no new tool for the generation of gridviews, etc?http://stackoverflow.com/questions/1394988/asp-net-webforms-versus-asp-net-mvc-revisited-q3-2009Comment by mson on ASP.NET webforms versus ASP.NET MVC revisited Q3 2009mson2009-09-08T23:59:20Z2009-09-08T23:59:20Z@presleyster - I think MVC is lighter than WebForms in the artifacts that are generated during execution and page presentation. http://stackoverflow.com/questions/1394988/asp-net-webforms-versus-asp-net-mvc-revisited-q3-2009Comment by mson on ASP.NET webforms versus ASP.NET MVC revisited Q3 2009mson2009-09-08T16:44:36Z2009-09-08T16:44:36Zthe points made in the past question reflect the best knowledge at the time. mixing two time frames in a single question sounds like a bad idea to me.http://stackoverflow.com/questions/1394471/free-reports-for-c/1394496#1394496Comment by mson on Free reports for c#mson2009-09-08T16:15:40Z2009-09-08T16:15:40ZIn what way is Crystal Reports free? The server license is well over 5k and they nickle and dime you to death as well. Also, consultants that configure server and reports for Crystal are very expensive because the tool is arcane and the training is expensive. We have to pay our CR writere $1500/day...http://stackoverflow.com/questions/1394471/free-reports-for-c/1394496#1394496Comment by mson on Free reports for c#mson2009-09-08T16:09:24Z2009-09-08T16:09:24ZCrystal Reports is an awful beast. DO NOT USE IT. It's one of those products that should have died a long time ago, but lingers because as P.T. Barnum says... there is a sucker born every minute - too bad they often are in deciding role...http://stackoverflow.com/questions/1394471/free-reports-for-c/1394474#1394474Comment by mson on Free reports for c#mson2009-09-08T16:07:01Z2009-09-08T16:07:01ZDoesn't matter if he is using SQLite, he can still download and use SQL Server Reporting.http://stackoverflow.com/questions/1382322/calculating-vs-lookup-tables-for-sine-value-performance/1382380#1382380Comment by mson on Calculating vs. lookup tables for sine value performance?mson2009-09-06T23:33:32Z2009-09-06T23:33:32Zalso dude - i don't know if you're answer is right or wrong, but i'm sending you a gift card (it will be anonymous and will take a while because i'm up to my eyeballs in work...)http://stackoverflow.com/questions/1382322/calculating-vs-lookup-tables-for-sine-value-performance/1382380#1382380Comment by mson on Calculating vs. lookup tables for sine value performance?mson2009-09-06T23:28:17Z2009-09-06T23:28:17Zholy cow dude! thanks for all the work you've put in. http://stackoverflow.com/questions/1382322/calculating-vs-lookup-tables-for-sine-value-performance/1382335#1382335Comment by mson on Calculating vs. lookup tables for sine value performance?mson2009-09-06T23:24:08Z2009-09-06T23:24:08Z@henk lol - so the reason i asked the question is to get responses from people who've run into this issue, not to get conjecture... the answer of 'go measure it' i interpret as - i have little idea or experience in the matter. the helpful part of robert's response is he's done this type of calculation before and that it could potentially go either way.