User Jan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T07:12:58Z http://stackoverflow.com/feeds/user/25727 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1766567/change-case-of-a-column-name/1766627#1766627 0 Answer by Jan for Change case of a column name Jan 2009-11-19T21:15:16Z 2009-11-19T21:15:16Z <p>I would write a small batch program using smo to enumerate all tables and tablecolumns and change the name of the columns.</p> http://stackoverflow.com/questions/1750001/sql-inner-joining-two-massive-tables/1755183#1755183 0 Answer by Jan for SQL: Inner joining two massive tables Jan 2009-11-18T10:51:16Z 2009-11-18T11:07:52Z <p>I wonder, whether the execution time is taken by the join or by the datatransfer.</p> <p>Assumed, the average data size in your Name column is 150 chars, you will actually have 300 bytes plus the other columns per record. Multiply this by 100 million records and you get about 30GB of data to transfer to your client. Do you run the client remote or on the server itself ? Maybe you wait for 30GB of data being transferred to your client...</p> <p><strong>EDIT:</strong> Ok, i see you are inserting into Aux table. What is the setting of the recovery model of the database?</p> <p>To investigate the bottleneck on the hardware side, it might be interesting whether the limiting resource is reading data or writing data. You can start a run of the windows performance monitor and capture the length of the queues for reading and writing of your disks for example.</p> <p>Ideal, you should place the db log file, the input tables and the output table on seperate physical volumes to increase speed.</p> http://stackoverflow.com/questions/1737763/case-consrtuct-of-sql-in-asp-net/1737792#1737792 0 Answer by Jan for case consrtuct of sql in asp.net Jan 2009-11-15T15:17:27Z 2009-11-15T15:17:27Z <p>The SQL variable ans is declared nowhere in your SQL statement. Where does it come from? Sql or your ASP.NET app?</p> http://stackoverflow.com/questions/1649532/rdlc-dynamic-picture-based-on-parameter-c/1723482#1723482 0 Answer by Jan for RDLC, Dynamic Picture based on parameter, c# Jan 2009-11-12T16:24:13Z 2009-11-12T16:24:13Z <p>Yes this is possible. See <a href="http://satishjdotnet.blogspot.com/2009/03/external-images-in-rdlc-reports-aspnet.html" rel="nofollow">this blog entry</a> for a good explanation.</p> <p>In short do the following:</p> <ul> <li>Set the pictures <em>Source</em> property to the value <em>"External"</em></li> <li>Set the pictures <em>Value</em> property to an expression like <em>"=Parameters!PathToPicture.Value"</em></li> <li>Set the <em>EnableExternalImages</em> property of the ReportViewer or the LocalReport-object to <em>true</em></li> </ul> http://stackoverflow.com/questions/1720645/is-it-good-to-have-primary-keys-as-identity-field/1720686#1720686 1 Answer by Jan for is it good to have primary keys as Identity field Jan 2009-11-12T08:13:28Z 2009-11-12T08:57:27Z <p>I would like to say that depends on your needs. We use only Guids as primary keys (with default set to NewID) because we develop a distributed system with many Sql Server instances, so we have to be sure that every Sql Server generate unique primary key values. But when using a Guid column as PK, be sure <a href="http://www.sqlskills.com/BLOGS/KIMBERLY/post/GUIDs-as-PRIMARY-KEYs-andor-the-clustering-key.aspx" rel="nofollow">not to use it as your clustered index</a> (thanks to marc_s for the link)</p> <p>Advantage of the Guid type:</p> <ul> <li>You can create unique values on different locations without synchronization</li> </ul> <p>Disadvantage:</p> <ul> <li>Its a large datatype (16 Bytes) and needs significant more space</li> <li>It creates index fragmentation (at least when using the newid() function)</li> </ul> <p>Dataconsistency is not an issue with primary keys independent of the datatype because a primary key has to be unique by definition!</p> <p>I don't believe that an identity column has better join performance. At all, performance is a matter of the right indexes. A primary key is a constraint not an index.</p> <p>Is your need to have a primary key of typ int with no gaps? This should'nt be a problem normally.</p> http://stackoverflow.com/questions/179099/buildprocess-for-activex-com-vb6-enterprise-projects 2 Buildprocess for ActiveX / COM / VB6 enterprise projects Jan 2008-10-07T15:39:04Z 2009-11-12T06:17:22Z <p>We have developed a software system using ActiveX/COM (VB6) technology from microsoft. In the last year, i get more and more interested in automated build processes and SCM at a whole. I intensively searched big parts of the web for information about best practices how to do scm with COM based software systems.</p> <p>The "problem" with COM is, that a referencing component holds the reference by an unique interface id. When you recompile the referenced component, the id may change and the reference isn't valid any more. The main problem here is, that the iid is compiled into the binary. So when i don't want to check in the compiled files into version control, every developer has to compile his/her own versions and gets other ids.</p> <p>When i want to check out the source on a clean build machine to compile the system, its just impossible, because all the references are invalid (no binary files, no interface ids).</p> <p>Im just wondering, if there are some best practices floating around, how to set up an automated build sytem for COM projects (VB6)?</p> <p><strong>Edit:</strong> Yes, im aware of the compatibility settings. But take the scenario, where i want to build the wohle system on a clean build machine without any binaries. When you say a project is binary compatible you have to provide the binary with which the project is compatible.</p> <p>I think i have to write a custom build tool, which modifies references and compatibility settings in the project files before and after compiling the projects.</p> <p>Because VB6 / COM is a really wide spread technology, i was just thinking that there has to be a ready to use solution.</p> <p>We normally compile with binary compatibility. When we modify the public interface, of a component, we compile with project compatibility. But when you change the interface of a basic component which is used by a lot of other components, you have to manually change all referencing project to project compatibility, recompile them and change back to binary compatibility. Thats the main process i want to automate.</p> http://stackoverflow.com/questions/1717789/search-several-tables-in-sql/1717837#1717837 1 Answer by Jan for SEARCH several Tables IN SQL Jan 2009-11-11T20:25:48Z 2009-11-11T20:25:48Z <p>Its enough to write</p> <pre><code>item.Description LIKE '%' + @term + '%' </code></pre> <p>instead of</p> <pre><code>item.Description LIKE '%' + @term + '%' OR item.Description LIKE '%' + @term OR item.Description LIKE @term + '%' OR item.Description = @term </code></pre> http://stackoverflow.com/questions/1717701/how-to-crash-the-net-common-language-runtime-clr-in-pure-net/1717788#1717788 2 Answer by Jan for How to crash the .NET common language runtime (CLR) in pure .net Jan 2009-11-11T20:17:25Z 2009-11-11T20:17:25Z <p>I've done that just today. I was testing a setup of a larger .net project. There was missing an assembly containing some interfaces and the exe just stops working. No exception was caught by the runtime.</p> <p>You can be sure that there a even more bugs in the runtime - just count the millions of lines of code ...</p> http://stackoverflow.com/questions/1700648/accessing-disposed-object/1700721#1700721 0 Answer by Jan for accessing disposed object Jan 2009-11-09T12:32:27Z 2009-11-09T13:33:55Z <p>I think you want to achieve that the callers of the index property aren't disturbed by a parallel call to the UpdateResources-function from another thread.</p> <p>Your single lock-statement has no effect at all. When you want to synchronize the access of the tableResources member - you have to do synchronize all places where its being accessed (UpdateResources and index property).</p> <p>When you don't synchronize there might be a raise condition, because when you call UpdateResources, there is no reference to the old DataSet - even when tableResources.Rows.Find(resourceCode) is executing at that time.</p> <p>In addition you should modify the access modifier of tableResources to private or protected.</p> <p>Concerning performance, you might want to implement a more complex synchronization mechanism which fits better to the multiple-readers-single-writer pattern. See these links:</p> <ol> <li>Another <a href="http://stackoverflow.com/questions/618164/synchronization-for-multiple-readers-single-writer">SO Question</a></li> <li><a href="http://en.wikipedia.org/wiki/Readers-writer%5Flock" rel="nofollow">Wikipedia article</a></li> </ol> http://stackoverflow.com/questions/1688569/wix-howto-set-the-name-of-the-msi-output-file-dynamically 1 WIX: Howto set the name of the msi output file dynamically Jan 2009-11-06T16:09:04Z 2009-11-06T16:43:43Z <p>I want to include some dynamic part in the filename of the msi file my wix projects produce. This dynamic part should be controlled by variables which are part of my wix project and are declared like this:</p> <pre><code>&lt;?define ProductVersion="7.1.0.1" ?&gt; </code></pre> <p>Does anybody know about a way of sending that value of that wix variable to the linker to use it as a part of the output filename?</p> <p>By the way: I'm using Wix3</p> http://stackoverflow.com/questions/1688164/performance-of-sql-subqueries-functions/1688206#1688206 1 Answer by Jan for Performance of Sql subqueries\functions Jan 2009-11-06T15:10:22Z 2009-11-06T15:10:22Z <p>I would guess that sql server calls your function Get_ServicesByClientIdAndType once for each combination of parameter values but that for every row in the Clients table. You have three combinations of values, so for 100 rows in Client table you might see 300 calls of the function.</p> <p>But to be confident, run the query in sql server management studio and switch on the option "show execution plan". This way you can easily detect which part of your query consumes the most resources and conentrate on optimizing that part.</p> http://stackoverflow.com/questions/1687636/how-to-get-data-from-remote-database-using-tsql/1687673#1687673 1 Answer by Jan for How to get data from remote database using TSQL? Jan 2009-11-06T13:41:20Z 2009-11-06T13:41:20Z <p>There are some ways to query remote servers via SQL (Remote Server, OPENQEURY), but i'm sure there is no way to query without setting up the connection in front.</p> <p>But of cause you can set up your remote server connection using TSQL (see sp_addlinkedserver and sp_addlinkedsrvlogin)</p> http://stackoverflow.com/questions/1679064/should-i-use-entity-framework-dataset-or-custom-classes/1679919#1679919 0 Answer by Jan for Should I Use Entity Framework, DataSet or Custom classes? Jan 2009-11-05T11:24:18Z 2009-11-05T11:24:18Z <p>While EF works with WCF and sounds very promising, you should consider the effort to get on speed with it. Especially when doing some non trivial stuff, the designer in VS2008 can't open the model anymore and you have to code your model in xml.</p> <p>Also keep in mind that EF works on a very high abstraction level. Because of the <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">law of leaky abstractions</a> its not all that shiny as it supposed to be :) The other way round that means, you have to deal with very crazy and hard to read sql statements sent to your database when it comes to troubleshooting / performance issues.</p> http://stackoverflow.com/questions/239465/how-to-register-a-net-ccw-with-regasm-from-a-visual-studio-2008-setup-project 0 How to register a .NET CCW with regasm from a Visual Studio 2008 Setup project Jan 2008-10-27T09:58:26Z 2009-01-15T12:12:27Z <p>I have a setup project for a .NET Service Application which uses a .NET component wich exposes a COM interface (COM callable wrapper / CCW). To get the component working on a target machine, it has to be registered with </p> <blockquote> <p>regasm.exe /tlb /codebase component.dll</p> </blockquote> <p>The /tlb switch to generate the typelib is mandatory in this case, otherwise i can't create objects from that assembly.</p> <p>The question is, how can i configure my Visual Studio 2008 Setup-Project to register this assembly with a call to regasm /tlb ?</p> http://stackoverflow.com/questions/246338/how-to-build-an-iterative-user-defined-action-in-visual-build-professional 1 How to build an iterative user-defined action in Visual Build Professional? Jan 2008-10-29T10:24:24Z 2008-11-01T01:15:10Z <p>In VBP its possible to define user defined actions by creating a custom COM component or a custom script.</p> <p>I need to create an user defined action which is <em>iterative</em>, which means it has to call child steps in an iterative manner like the "process files" built in action does.</p> <p>I can't figure out how to do this and Google isn't helpful either.</p> http://stackoverflow.com/questions/246338/how-to-build-an-iterative-user-defined-action-in-visual-build-professional/246360#246360 0 Answer by Jan for How to build an iterative user-defined action in Visual Build Professional? Jan 2008-10-29T10:39:32Z 2008-10-29T10:39:32Z <p>Found the answer myself on the <a href="http://www.kinook.com/Forum/showthread.php?s=fb5c520b09c9816440e0f8a796f5d9e1&amp;threadid=535&amp;highlight=user+defined+action" rel="nofollow">kinook forums</a>:</p> <p>Its not possible to define an iterative user-defined action, but its possible to use a workaround by defining a conditional build rule in the loop controlling step.</p> http://stackoverflow.com/questions/240102/activex-communication/240117#240117 0 Answer by Jan for ActiveX communication Jan 2008-10-27T14:42:30Z 2008-10-28T08:23:31Z <p>Your object gets "destroyed" when the last reference to it is deleted. Thats normal COM behavior. Or is your object dying unexcepted and the third-party app is getting an activex error?</p> <p>Some more questions:)</p> <ul> <li>I don't know what you mean with "data server"? </li> <li>Do you have access to the source code of the third-party app? </li> <li>Are you sure, the third-party app holds a reference to your object? </li> <li>Is your objects Class_Terminate Method called?</li> </ul> <p><strong>EDIT:</strong> OK, when Class_Terminate is getting called its obvious, that the third-party app has dropped its reference to your object. </p> http://stackoverflow.com/questions/225309/sql-server-query-execution-plan-shows-wrong-actual-row-count-on-an-used-index-a 0 SQL Server query execution plan shows wrong "actual row count" on an used index and performance is terrible slow Jan 2008-10-22T11:18:51Z 2008-10-23T11:30:47Z <p>Today i stumbled upon an interesting performance problem with a stored procedure running on Sql Server 2005 SP2 in a db running on compatible level of 80 (SQL2000).</p> <p>The proc runs about 8 Minutes and the execution plan shows the usage of an index with an actual row count of 1.339.241.423 which is about factor 1000 higher than the "real" actual rowcount of the table itself which is 1.144.640 as shown correctly by estimated row count. So the actual row count given by the query plan optimizer is definitly wrong!</p> <p><img src="http://img520.imageshack.us/img520/4259/arcsr9.png" alt="alt text" /></p> <p>Interestingly enough, when i copy the procs parameter values inside the proc to local variables and than use the local variables in the actual query, everything works fine - the proc runs 18 seconds and the execution plan shows the right actual row count.</p> <p><strong>EDIT:</strong> As suggested by TrickyNixon, this seems to be a sign of the parameter sniffing problem. But actually, i get in both cases exact the same execution plan. Same indices are beeing used in the same order. The only difference i see is the way to high actual row count on the PK_ED_Transitions index when directly using the parametervalues.</p> <p>I have done dbcc dbreindex and UPDATE STATISTICS already without any success. dbcc show_statistics shows good data for the index, too.</p> <p>The proc is created WITH RECOMPILE so every time it runs a new execution plan is getting compiled.</p> <p>To be more specific - this one runs fast:</p> <pre><code>CREATE Proc [dbo].[myProc]( @Param datetime ) WITH RECOMPILE as set nocount on declare @local datetime set @local = @Param select some columns from table1 where column = @local group by some other columns </code></pre> <p>And this version runs terribly slow, but produces exactly the same execution plan (besides the too high actual row count on an used index):</p> <pre><code>CREATE Proc [dbo].[myProc]( @Param datetime ) WITH RECOMPILE as set nocount on select some columns from table1 where column = @Param group by some other columns </code></pre> <p>Any ideas? Anybody out there who knows where Sql Server gets the actual row count value from when calculating query plans?</p> <p><strong>Update</strong>: I tried the query on another server woth copat mode set to 90 (Sql2005). Its the same behavior. I think i will open up an ms support call, because this looks to me like a bug.</p> http://stackoverflow.com/questions/225309/sql-server-query-execution-plan-shows-wrong-actual-row-count-on-an-used-index-a/229392#229392 2 Answer by Jan for SQL Server query execution plan shows wrong "actual row count" on an used index and performance is terrible slow Jan 2008-10-23T11:30:47Z 2008-10-23T11:30:47Z <p>Ok, finally i got to it myself.</p> <p>The two query plans are different in a small detail which i missed at first. the slow one uses a nested loops operator to join two subqueries together. And that results in the high number at current row count on the index scan operator which is simply the result of multiplicating the number of rows of input a with number of rows of input b.</p> <p>I still don't know why the optimizer decides to use the nested loops instead of a hash match which runs 1000 timer faster in this case, but i could handle my problem by creating a new index, so that the engine does an index seek statt instead of an index scan under the nested loops.</p> http://stackoverflow.com/questions/226223/whats-the-best-way-to-profile-a-sqlserver-2005-database-for-performance/226308#226308 2 Answer by Jan for Whats the best way to profile a sqlserver 2005 database for performance? Jan 2008-10-22T15:31:35Z 2008-10-22T15:31:35Z <p>To identify problematic queries start the Profiler, select following Events:</p> <ul> <li>TSQL:BatchCompleted</li> <li>TSQL:StmtCompleted</li> <li>SP:Completed</li> <li>SP:StmtCompleted</li> </ul> <p>filter output for example by </p> <ul> <li>Duration > x ms (for example 100ms, depends mainly on your needs and type of system)</li> <li>CPU > y ms </li> <li>Reads > r</li> <li>Writes > w</li> </ul> <p>Depending on what you want to optimize. Be sure to filter the output enough to not having thousands of datarows scrolling through your window, because that will impact your server performance!</p> <p>Its helpful to log output to a database table to analyse it afterwards. Its also helpful to run Windows system monitor in parallel to view cpu load, disk io and some sql server performance counters. Configure sysmon to save the data to a file.</p> <p>Than you have to get production typical query load and data volumne on your database to see meaningfull values with profiler.</p> <p>After getting some output from profiler, you can stop profiling.</p> <p>Then load the stored data from the profiling table again into profiler, and use importmenu to import the output from systemmonitor and the profiler will correlate the sysmon output to your sql profiler data. Thats a very nice feature.</p> <p>In that view you can immediately identifiy bootlenecks regarding to your memory, disk or cpu sytem.</p> <p>When you have identified some queries you want to omtimize, go to query analyzer and watch the execution plan and try to omtimize index usage and query design.</p> http://stackoverflow.com/questions/219296/implementing-team-foundation-server-with-a-small-development-team/225931#225931 2 Answer by Jan for Implementing Team Foundation Server with a small development team Jan 2008-10-22T14:18:09Z 2008-10-22T14:18:09Z <p>Setup of TFS is not too complicated, when you <em>exactly</em> follow the given guide step by step. We are using it on a small team for about one year now and i don't want to miss it any more.</p> <p>Especially when you use more than one part of tfs like version control and work item tracking and maybe even teambuild, your team will benefit of the tight integration of the seperate parts. </p> <p>For example, you can link to workitems when checking in code changes. Then you run an automated build with teambuild and it will automatically update your workitems with the build number. So afterwards you can see for example in a bug workitem the buildnumber which contains the bugfix.</p> <p>We also use the sharepoint wiki for documentation and planning although i'm not the biggest sharepoint fan...</p> <p>The main point is the great integration into the IDE and for workitem tracking the Teamsystem Web Access which allows you to control at least your workitems over a webinterface.</p> http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server/225015#225015 1 Answer by Jan for Parameter Sniffing (or Spoofing) in SQL Server Jan 2008-10-22T09:27:19Z 2008-10-22T09:27:19Z <p>Parameter sniffing is a technique, Sql Server uses to optimze the query execution plan for a stored procedure. When you first call the SP, Sql Server looks at the given parameter values of your call and decides which indices to use based on the parameter values.</p> <p>So when the first call contains not very typical parameters, Sql Server might select and store a suboptimal execution plan in regard to the following calls of the sp.</p> <p>You can work around this by either </p> <ul> <li>using WITH RECOMPILE</li> <li>copying the parameter values to local variables inside the sp and using the locals in your queries.</li> </ul> <p>I even heard that its better to not use procs at all but send your queries directly to the server. I recently came across the same problem where i have no real solution yet. For some queries the copy to local vars helps getting back to the right execution plan, for some queries performance degrades with local vars.</p> <p>I still have to do more research on how Sql Server caches and reusese (suboptimal) execution plans.</p> http://stackoverflow.com/questions/221584/what-is-best-practice-for-this-problem-different-properties-for-different-catego/221618#221618 0 Answer by Jan for What is best practice for this problem (different properties for different categories)? Jan 2008-10-21T12:10:16Z 2008-10-21T12:10:16Z <p>If you want to be flexible on your categories and properties, you should create following tables:</p> <ul> <li>product: ProductID</li> <li>category: CategoryID, ProductID</li> <li>property: PropertyID, CategoryID</li> </ul> <p>when you want to share a category over mroe than one product, you have to create a link table for the n:m join:</p> <ul> <li>productCategoryPointer: ProdCatID, ProductID, CategoryID.</li> </ul> <p>You will have to to some joins in your queries, but with the right indexes, you shoulb be able to query your data fast.</p> http://stackoverflow.com/questions/182075/wpf-quickstart-documentation 8 WPF quickstart documentation Jan 2008-10-08T10:40:30Z 2008-10-21T10:29:34Z <p>I am totally new to WPF and looking for good quickstart documentation to start with. I will buy the book WPF Unleashed from Adam Nathan, but thats more a reference than a quickstart i think.<br /> I just want you to tell me your favorite links and books and maybe demo applications concerning wpf development. </p> <p>Focus of answers should be on best practices, good readable introductions (i hate the link farms on msdn ;) and comprehensive references.</p> <p>EDIT: I will try to assemble all suggestions in a short list sorted by type. And please try to give a short reason <em>why</em> you suggest especial that link or that book.</p> <p><strong>Books:</strong> </p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0672328917" rel="nofollow">WPF Unleashed by Adam Nathan</a> </li> <li>Pro WPF: Windows Presentation Foundation in .NET 3.0</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0596510373" rel="nofollow">Programming WPF by Chris Sells and Ian Griffiths</a></li> </ul> <p><strong>Blogs:</strong></p> <ul> <li><a href="http://www.beacosta.com/blog/" rel="nofollow">Blog about data binding in WPF by Beatriz Costa</a></li> <li><a href="http://www.drwpf.com/blog/" rel="nofollow">Ask Dr. WPF</a></li> <li><a href="http://joshsmithonwpf.wordpress.com/a-guided-tour-of-wpf/" rel="nofollow">Guided tour on WPF</a></li> </ul> <p><strong>Links:</strong> </p> <ul> <li><a href="http://www.microsoft.com/switzerland/msdn/de/presentationfinder/detail.mspx?id=104056" rel="nofollow">MSDN Hands-on Lab</a> from Microsoft about WPF</li> <li><a href="http://msdn.microsoft.com/en-us/library/ms742119.aspx" rel="nofollow">msdn on getting started with WPF</a></li> <li><a href="http://windowsclient.net/" rel="nofollow">windowsclient.net</a></li> <li><a href="http://learnwpf.com/" rel="nofollow">Lernwpf.com</a></li> <li><a href="http://www.codeproject.com/KB/WPF/BeginWPF1.aspx" rel="nofollow">Series of articles on Codeproject</a></li> <li><a href="http://windowsclient.net/learn/videos_wpf.aspx" rel="nofollow">Some WPF videos on windowsclient.net</a></li> </ul> <p><strong>Demo Applications:</strong></p> <ul> <li><a href="http://www.vertigo.com/familyshow.aspx" rel="nofollow">Family.Show</a> from Vertigo</li> <li><a href="http://www.hanselman.com/babysmash/" rel="nofollow">Babysmash</a></li> </ul> http://stackoverflow.com/questions/139988/advice-for-someone-who-wants-to-start-in-business-intelligence/219692#219692 1 Answer by Jan for Advice for someone who wants to start in Business Intelligence? Jan 2008-10-20T20:03:53Z 2008-10-20T20:03:53Z <p>I found the <a href="http://www.microsoft.com/technet/prodtechnol/sql/2005/projreal.mspx" rel="nofollow">"project real"</a> from microsoft really helpful while getting into the bi-world. Its a real world bi project, supported by microsoft, to develop and show best practices regarding to all the areas of bi like etl, data warehouse design, cube design, etc.</p> http://stackoverflow.com/questions/209229/visual-studio-6-0-2003-2008-compatibility-with-windows-vista-64-bit-x64/218982#218982 0 Answer by Jan for Visual Studio (6.0, 2003 & 2008) compatibility with Windows Vista 64-bit (x64) Jan 2008-10-20T16:07:54Z 2008-10-20T16:07:54Z <p>VB6-IDE and programs are working fine on Vista64. The only thing i cant get working are the so called WebClass-Projects (the VB6 way for ewb applications).</p> http://stackoverflow.com/questions/218781/is-there-a-benefit-to-just-a-throw-in-a-catch/218929#218929 15 Answer by Jan for Is there a benefit to JUST a "throw" in a catch? Jan 2008-10-20T15:55:39Z 2008-10-20T16:01:55Z <p>Microsoft recommends not to catch an exception when the only thing you do is to rethrow it immediately (i dont remember the source for now). Your code should only catch exceptions that you want to handle for clean up things or similar actions.</p> <p>So generally its not a good practice to catch and rethrow an exception.</p> <p>Reasons for catching and replacing it with another exception might be </p> <ul> <li>Logging</li> <li>Hiding sensitive information from the caller (Stacktrace, exception details)</li> </ul> <p>And for debugging you might want to change your "Break when an exception is:"-Handler (Press Ctrl+Alt+e) the value "thrown" on selected CLR Exceptions.</p> <p>You might want to take a look at the entlib exception handler block (EHB), with which you can establish a pattern on how to deal with exceptions in your code.</p> <p>Regarding your question on performance i think its not a propblem to have many try/catch blocks in your code but you will get performance hits when your code raises and catches many exceptions.</p> http://stackoverflow.com/questions/207819/best-practice-for-database-encryption-in-sql-server-2005/207986#207986 1 Answer by Jan for Best Practice for Database Encryption in SQL Server 2005 Jan 2008-10-16T09:57:34Z 2008-10-16T09:57:34Z <p>Look at <a href="http://blogs.technet.com/keithcombs/archive/2005/11/24/sql-server-2005-data-encryption.aspx" rel="nofollow">this link</a> for a good introduction with samples.</p> <p>I think doing the data encryption in the application is better, because in that case the transferred data is already encrypted. Otherwise you have to use a secure channel between your app and the database server.</p> <p>It depends on your needs, i would say.</p> http://stackoverflow.com/questions/84121/what-8-bit-embedded-platform-have-you-used-for-a-design/182499#182499 0 Answer by Jan for What 8-bit embedded platform have you used for a design? Jan 2008-10-08T12:32:19Z 2008-10-08T12:32:19Z <p>For the atmel AVR processor family there exists a lot of evaluation boards even with usb or ethernet and the family has many different processors with different peripherals, like one or two usarts, many IO ports, I2C/TWI/SPI serial ports, A/D converters, etc.</p> <p>There is a free gcc port (avr-gcc) and many community sites like <a href="http://avrfreaks.net/" rel="nofollow">avr freaks</a> or the german <a href="http://www.mikrocontroller.net" rel="nofollow">mikrocontroller.net</a> forums.</p> http://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency/181860#181860 2 Answer by Jan for VisualBasic Month function inconsistency Jan 2008-10-08T08:43:16Z 2008-10-08T08:43:16Z <p>This is because the runtime has to convert your given value "10/01/2008" which is indeed a string implicitly to the DateTime datatype.</p> <p>When converting strings to dates and the other way round, the string format depends on the locale settings of windows.</p> <p>See <a href="http://msdn.microsoft.com/en-us/library/aa292073.aspx" rel="nofollow">this link</a> on msdn.</p> <p>In <a href="http://msdn.microsoft.com/en-us/library/3eaydw6e(VS.80).aspx" rel="nofollow">this article</a> a way to specify a date literal which is independent of your locale settings:</p> <p>Just enclose the date with the sign # and specify it in the form mm/dd/yyyy:</p> <p>So the code </p> <pre><code>Month(#10/01/2008#) </code></pre> <p>should give you the answer 10 on any machine.</p> <p>Ther a two more worarounds given in that msdn article:</p> <p><strong>1. Use the Format Function with predifned Date/Time Format</strong></p> <blockquote> <p>To convert a Date literal to the format of your locale, or to a custom format, supply the literal to the Format Function, specifying either Predefined Date/Time Formats (Format Function) or User-Defined Date/Time Formats (Format Function). The following example demonstrates this.</p> <p>MsgBox("The formatted date is " &amp; Format(#5/31/1993#, "dddd, d MMM yyyy"))</p> </blockquote> <p><strong>2. Use the DateTime-Class Constructor to construt the right DateTime value</strong></p> <blockquote> <p>Alternatively, you can use one of the overloaded constructors of the DateTime structure to assemble a date and time value. The following example creates a value to represent May 31, 1993 at 12:14 in the afternoon.</p> <p>Dim dateInMay As New System.DateTime(1993, 5, 31, 12, 14, 0)</p> </blockquote> http://stackoverflow.com/questions/1824937/how-do-you-manage-a-large-software-project-you-are-developing-all-alone Comment by Jan on How do you manage a large software project you are developing all alone? Jan 2009-12-01T13:11:16Z 2009-12-01T13:11:16Z @Brett Ryan: Do you know about Coderush Express? http://stackoverflow.com/questions/1721071/hi-i-am-new-in-the-field-of-programming Comment by Jan on Hi! I am new in the Field of Programming? Jan 2009-11-12T09:43:48Z 2009-11-12T09:43:48Z You should ask more specific questions http://stackoverflow.com/questions/1720645/is-it-good-to-have-primary-keys-as-identity-field/1720665#1720665 Comment by Jan on is it good to have primary keys as Identity field Jan 2009-11-12T08:53:21Z 2009-11-12T08:53:21Z @gbn: yes, you are right - of cause we use clustered indexes. But i has to admit that i thougt of clustered keys just as the <i>sort order</i> of the data table itself before our discussion here. I thougt the lookup of non clustered indexes is done via th pk not the clustered key. http://stackoverflow.com/questions/1720645/is-it-good-to-have-primary-keys-as-identity-field/1720686#1720686 Comment by Jan on is it good to have primary keys as Identity field Jan 2009-11-12T08:43:40Z 2009-11-12T08:43:40Z No, not clustered - just pk http://stackoverflow.com/questions/1720645/is-it-good-to-have-primary-keys-as-identity-field/1720665#1720665 Comment by Jan on is it good to have primary keys as Identity field Jan 2009-11-12T08:42:59Z 2009-11-12T08:42:59Z @Ash i don't no what you want to say with &quot;there is no meaningful way to order [Guids]&quot; I agree, that you will cause fragmentation when inserting with newid(). but its definitly possible to order them and gain reasonable join performance with indexes on guid-columns. @gbn yes, i wrote, that you will have increased table/index sizes. We use Guids as PK but not clustered. We rebuild indexes once a week and but we definitly havn't 99% fragmentation. Out main reason for doing this is, that we have to insert data on many merge replicated sql servers independently. http://stackoverflow.com/questions/1720645/is-it-good-to-have-primary-keys-as-identity-field/1720665#1720665 Comment by Jan on is it good to have primary keys as Identity field Jan 2009-11-12T08:15:48Z 2009-11-12T08:15:48Z I wouldn't say, that Guids <i>kill</i> performance, as i wrote, we use Guids a lot as PK on a big near realtime system without having performance problems in joining vai Guid columns. But of cause the Guid type is larger than an integer. http://stackoverflow.com/questions/1717789/search-several-tables-in-sql/1717820#1717820 Comment by Jan on SEARCH several Tables IN SQL Jan 2009-11-11T20:30:02Z 2009-11-11T20:30:02Z No, its not necessary to include the '%' in the variable before executing the query. http://stackoverflow.com/questions/1700648/accessing-disposed-object/1700721#1700721 Comment by Jan on accessing disposed object Jan 2009-11-11T08:57:46Z 2009-11-11T08:57:46Z How can you test that? The GC is non deterministic. Objects won't be releases immediately after the last reference is gone away. http://stackoverflow.com/questions/1700648/accessing-disposed-object/1700721#1700721 Comment by Jan on accessing disposed object Jan 2009-11-10T09:35:22Z 2009-11-10T09:35:22Z The assignment is atomic, there is no concept like a &quot;half&quot; or &quot;broken&quot; reference. But when you don't synchronize the assignment, you might get the old or the new dataTable. But that shouldn't be a problem. http://stackoverflow.com/questions/1700648/accessing-disposed-object/1700721#1700721 Comment by Jan on accessing disposed object Jan 2009-11-09T15:30:52Z 2009-11-09T15:30:52Z Right, when you assign a local variable, the indexer has its own reference to the &quot;old&quot; DataTable. When UpdateResources drops its reference in that moment, you should be safe. http://stackoverflow.com/questions/1700648/accessing-disposed-object/1700721#1700721 Comment by Jan on accessing disposed object Jan 2009-11-09T14:31:47Z 2009-11-09T14:31:47Z no, the indexer doesn't hold a reference to the object. it just uses the possibly changing reference tableResources. See my edit on my answer for performance concerns. http://stackoverflow.com/questions/1700648/accessing-disposed-object/1700721#1700721 Comment by Jan on accessing disposed object Jan 2009-11-09T13:21:17Z 2009-11-09T13:21:17Z You need a reference from outside the object to prevent garbage collection from disposing your object. In your posted code, you just have one single reference via the tableResources variable. Why aren't you just syncing the reads also? Have you concerns about performance? http://stackoverflow.com/questions/1688569/wix-howto-set-the-name-of-the-msi-output-file-dynamically/1688611#1688611 Comment by Jan on WIX: Howto set the name of the msi output file dynamically Jan 2009-11-06T16:24:54Z 2009-11-06T16:24:54Z Ok, that would work probably. I will try that out. But i was looking for a more direct way - or do you think this is not supported in wix? I read something about linker variables here: <a href="http://n2.nabble.com/Types-of-variables-question-td3825142.html" rel="nofollow">n2.nabble.com/Types-of-variables-question-td38251&hellip;</a> !(wix.Name) gets what are called WixVariables (can be defined in source code with the WixVariable element, or passed on the commandline of light and/or lit in a manner similar as preprocessor variables are passed to candle). But that doesn't seem to work. http://stackoverflow.com/questions/240102/activex-communication/240170#240170 Comment by Jan on ActiveX communication Jan 2008-10-27T14:59:21Z 2008-10-27T14:59:21Z I don't know what you mean with &quot;data server&quot;. Do you have access to the source code of teh third-party app? Are you sure, the third-party app holds a reference to your object? Is your objects Class_Terminate Method called? http://stackoverflow.com/questions/225309/sql-server-query-execution-plan-shows-wrong-actual-row-count-on-an-used-index-a/227271#227271 Comment by Jan on SQL Server query execution plan shows wrong "actual row count" on an used index and performance is terrible slow Jan 2008-10-22T22:23:35Z 2008-10-22T22:23:35Z sp_spaceused tells me correct data: ED_Transitions rows 1145711 data 160048 KB index_size 106048 KB