User Vijesh VP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T19:00:42Z http://stackoverflow.com/feeds/user/22016 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/146543/what-is-the-best-way-to-version-control-my-sql-server-stored-procedures 12 What is the best way to version control my SQL server stored procedures? Vijesh VP 2008-09-28T19:31:07Z 2009-11-23T16:49:10Z <p>What is the best way to version control my database objects? I'm using Visual studio 2005/2008 and SQL server 2005. I would prefer a solution which can be used with SVN.</p> http://stackoverflow.com/questions/145430/is-there-any-performance-difference-in-using-resx-file-and-satellite-assembly 2 Is there any performance difference in using .resx file and satellite assembly? Vijesh VP 2008-09-28T07:45:00Z 2009-10-06T19:08:14Z <p>Which is the best way to go forward while building a localized aspx web application, .resx files of satellite assemblies? Is there any performance comparisons available any where on web?</p> http://stackoverflow.com/questions/145983/pitfalls-of-object-oriented-programming 12 Pitfalls of Object oriented programming Vijesh VP 2008-09-28T14:46:05Z 2009-09-15T17:56:00Z <p>Did you ever feel any downside of using OOP as a developer? </p> <p>Do you think over-usage of OOP concepts could lead to something like <em>over-normalized</em> database structures? </p> <p>Where do you think we should draw a line while applying OOP concepts in our design?</p> <p>Cross-links:</p> <ul> <li><a href="http://stackoverflow.com/questions/24270/whats-the-point-of-oop">What's the point of oop?</a></li> </ul> http://stackoverflow.com/questions/141985/why-should-a-net-developer-learn-f 31 Why should a .net developer learn F#? Vijesh VP 2008-09-26T21:09:13Z 2009-08-12T03:01:23Z <p>What is the new language F# is all about? Where is that going to be useful? And what is Microsoft's future plan (release road map) regarding this language?</p> http://stackoverflow.com/questions/141508/does-anyone-know-when-the-asp-net-mvc-will-be-fully-released 1 Does anyone know when the ASP.NET MVC will be fully released? Vijesh VP 2008-09-26T19:45:29Z 2009-07-16T09:37:46Z <p>When do you think we can expect the full release version of ASP.NET MVC?</p> http://stackoverflow.com/questions/166452/performance-of-system-io-readallxxx-writeallxxx-methods 1 Performance of System.IO.ReadAllxxx / WriteAllxxx methods Vijesh VP 2008-10-03T11:43:05Z 2009-05-15T06:33:32Z <p>Is there any performance comparison of System.IO.File.ReadAllxxx / WriteAllxxx methods vs StreamReader / StremWriter classes available on web. What you think is the best way(from a performance perspective) to read/write text files in .net 3.0?</p> <p>When I checked the <strong><a href="http://msdn.microsoft.com/en-us/library/system.io.file.aspx" rel="nofollow">MSDN page of System.IO.File class</a></strong>, in the sample code MS is using StreamReader / StreamWriter for file operations. Is there any specific reason for avoiding File.ReadAllxxx / WriteAllxxx methods, even though they look much easier to understand?</p> http://stackoverflow.com/questions/669295/where-to-log-from-a-net-web-app-cant-use-appdata-because-of-privileges/669529#669529 1 Answer by Vijesh VP for Where to log from a .net web app? - Can't use %APPDATA% because of privileges Vijesh VP 2009-03-21T16:10:51Z 2009-03-21T16:10:51Z <p>What about system event log using EventLogAppender? Is that an option for you?</p> http://stackoverflow.com/questions/144227/c-f-performance-comparison 5 C# / F# Performance comparison Vijesh VP 2008-09-27T18:55:26Z 2009-02-12T21:34:52Z <p>Is there any C#/F# performance comparison available on web to show proper usage of new F# language?</p> http://stackoverflow.com/questions/144397/what-are-the-best-practices-for-handling-unicode-strings-in-c 5 What are the best practices for handling Unicode strings in C#? Vijesh VP 2008-09-27T20:28:18Z 2009-02-09T05:25:10Z <p>Can somebody please provide me some important aspects I should be aware of while handling Unicode strings in C#?</p> http://stackoverflow.com/questions/143232/which-are-the-must-follow-fxcop-rules-for-any-c-developer 11 Which are the "must follow" FxCop rules for any C# developer? Vijesh VP 2008-09-27T08:30:24Z 2008-12-18T17:14:51Z <p>I'm planning to start using FxCop in one of our ongoing project. But, when i tried it with selecting all available rules, it looks like I have to make lots of changes in my code. Being a "team member" I can't right away start making these changes, like naming convention change etc. anyway i would like to start using FxCop with a minimal rule set and would gradually increase the rule set as we goes on. Can you suggest me some must have FxCop rules which i should start following. Or do you suggest any better approach?</p> <p>Note: Most of my code is in C#.</p> http://stackoverflow.com/questions/133313/good-database-table-design-for-storing-localized-versions-of-data 1 Good database table design for storing localized versions of data Vijesh VP 2008-09-25T13:27:33Z 2008-10-31T20:27:42Z <p>I'm trying to design some tables to store some data, which has to be converted to different languages later. Can anybody provide some "best practices" or guidelines for this?</p> <p>Thanks</p> http://stackoverflow.com/questions/181800/issue-with-localizing-html-title-of-a-page 0 Issue with localizing html title of a page Vijesh VP 2008-10-08T08:18:41Z 2008-10-29T06:38:46Z <p>I'm trying to localize my aspx pages. I'm done with content localization using L10n features provided by .net f/w, like resource files. But I'm finding it difficult to set local data in page titles. </p> <p>Most of the browsers, including IE and FF, shows content on window title with some boxes (FF will show properly localized text in tab, IE doesn't even do that). But its working fine in safari (on windows). </p> <p>When I did a research it seems like this issue exits ONLY for some of the languages. For example, the <a href="http://www.bbc.co.uk/hindi/" rel="nofollow">Hindi version of BBC</a> shows the title with boxes. But <a href="http://news.bbc.co.uk/hi/arabic/news/" rel="nofollow">Arabic version</a> shows the localized text in title.</p> <p>Can somebody please tell me why this is happening? How we can solve this issue?</p> <p>Note: My site is using Asp.net 2.0 / IIS</p> http://stackoverflow.com/questions/5323/is-there-a-business-reason-for-striving-for-pure-css-layout/208501#208501 3 Answer by Vijesh VP for Is there a business reason for striving for pure CSS layout? Vijesh VP 2008-10-16T13:16:56Z 2008-10-16T13:16:56Z <p>The main reason why we changed our web pages to DIV/CSS based layout was the delay in rendering table based pages. </p> <p>We have a public web site, with most of its users base is in countries like India, where the internet bandwidth is still an issue (its getting improved day by day, but still not on par). In such circumstances, when we used table based layout, users had to stare at a blank page for considerably long time. Then the entire page will get displayed as a whole in a tick. By converting our pages to DIV, we managed to bring some contents to the browser almost instantly as users entered to our web site, and those contents where enough to get the users engaged till browser downloads entire contents of the page. </p> <p>The major flaw with table based implementation is that, the browser we will show the content of the table only after it downloads the entire html for that table. The issue will blow out when we have a main table which wraps the entire content of the page, and when we have lots of nested tables. For the 'flexible tables' (those without any fixed width), after downloading entire table tag, browser has to parse till the last row of the table to find out the width of each columns, then has to parse it again for displaying the content. Till all these happens users has to stare at a blank screen, then everything will come to screen in a tick.</p> http://stackoverflow.com/questions/183201/should-a-developer-aim-for-readability-or-performance-first/183220#183220 4 Answer by Vijesh VP for Should a developer aim for readability or performance first? Vijesh VP 2008-10-08T14:57:23Z 2008-10-08T18:06:44Z <p>I would go for <strong>readability</strong> first. Considering the fact that with the kind of optimized languages and hugely loaded machines we have in these days, most of the code we write in readable way will perform decently. </p> <p>In some very rare scenarios, where you are pretty sure you are going to have some performance bottle neck (may be from some past bad experiences), and you managed to find some weird trick which can give you huge performance advantage, you can go for that. But you should comment that code snippet very well, which will help to make it more readable.</p> http://stackoverflow.com/questions/183281/sql-server-2005-replication-configuration/183298#183298 1 Answer by Vijesh VP for SQL Server 2005 replication configuration Vijesh VP 2008-10-08T15:09:50Z 2008-10-08T15:09:50Z <p>check out <a href="http://www.exforsys.com/tutorials/sql-server-2005/sql-server-configuring-replication.html" rel="nofollow">this one</a>. Might help here.</p> http://stackoverflow.com/questions/183148/stored-procedure-versioning/183192#183192 4 Answer by Vijesh VP for Stored Procedure Versioning Vijesh VP 2008-10-08T14:51:34Z 2008-10-08T14:51:34Z <p>Please check out here <a href="http://stackoverflow.com/questions/146543/what-is-the-best-way-to-version-control-my-sql-server-stored-procedures">What is the best way to version control my SQL server stored procedures?</a>. Might help you identify couple of solutions to this issue.</p> http://stackoverflow.com/questions/182818/what-should-developers-look-for-in-a-manager/182871#182871 3 Answer by Vijesh VP for What should developers look for in a manager? Vijesh VP 2008-10-08T13:53:12Z 2008-10-08T13:53:12Z <p>Someone who stands between top management and development team as:</p> <ul> <li>A stone wall, during tough times</li> <li>A glass wall, when thing go smoothly</li> </ul> <p>Am I dreaming too much???? ;)</p> http://stackoverflow.com/questions/182181/sqlparameter-conversion/182293#182293 0 Answer by Vijesh VP for sqlParameter conversion Vijesh VP 2008-10-08T11:41:06Z 2008-10-08T11:41:06Z <p>I would rather suggest to go for a stored procedure, if possilble, and pass the lists of IDs as xml. You can get more details on this approach from <strong><a href="http://weblogs.asp.net/jgalloway/archive/2007/02/16/passing-lists-to-sql-server-2005-with-xml-parameters.aspx" rel="nofollow">here</a></strong>.</p> http://stackoverflow.com/questions/180388/programatically-access-weather-info/180407#180407 0 Answer by Vijesh VP for Programatically access weather info Vijesh VP 2008-10-07T21:04:04Z 2008-10-07T21:04:04Z <p>Is <a href="http://weather.noaa.gov/" rel="nofollow">this</a> what you are looking for?</p> http://stackoverflow.com/questions/180328/updateable-and-persistable-dataset-based-on-a-join-possible-with-ado-net/180344#180344 0 Answer by Vijesh VP for Updateable (and persistable) dataset based on a join - possible with ADO.Net??? Vijesh VP 2008-10-07T20:48:46Z 2008-10-07T20:58:20Z <p>I think you can achive this by providing your own update command for the ADO.net DataAdaptor. Check out the sample provided <a href="http://www.ondotnet.com/pub/a/dotnet/excerpt/progvisbasic_ch08-2/index.html?page=4" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/180283/datareader-or-dataset-when-pulling-multiple-recordsets-in-asp-net/180292#180292 2 Answer by Vijesh VP for DataReader or DataSet when pulling multiple recordsets in ASP.NET Vijesh VP 2008-10-07T20:35:43Z 2008-10-07T20:35:43Z <p>If you are not interested in updating or deleting the records you fetched from database, I would suggest using DataReader. Basically DataSet internally uses multiple Datareaders, so DataReader should give you good performance advantage.</p> http://stackoverflow.com/questions/180133/generating-a-reporting-services-2005-pdf-report-and-storing-it-on-disk/180217#180217 3 Answer by Vijesh VP for Generating a Reporting Services 2005 PDF report and storing it on disk Vijesh VP 2008-10-07T20:20:29Z 2008-10-07T20:20:29Z <p>This <strong><a href="http://geekswithblogs.net/bsherwin/archive/2007/04/29/112094.aspx" rel="nofollow">article</a></strong> will show you how you can generate PDF report from reporting service, without using report viewer. Only change you have to do is to write the result byte array into a file stream instead of sending it to response stream as shown in that example. The above mentioned example is using the web services provided by SQL reporting service to generate report.</p> http://stackoverflow.com/questions/180007/how-do-configure-optional-or-extraneous-urls/180086#180086 2 Answer by Vijesh VP for How do configure optional or "extraneous" URLs? Vijesh VP 2008-10-07T19:52:29Z 2008-10-07T20:13:44Z <p>This technique is commonly known as url rewriting. If you are looking out for a solution in IIS, you can use <strong><a href="http://www.isapirewrite.com/" rel="nofollow">ISAPI rewrite</a></strong>, which is quite similar to <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html" rel="nofollow"><strong>mod_rewrite</strong></a> for apache. Or else, you can go for <strong><a href="http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx" rel="nofollow">ASP.Net MVC routing</a></strong> mechanism.</p> http://stackoverflow.com/questions/179951/utility-to-get-the-latest-version-of-a-windows-forms-app-from-a-network-share/179978#179978 0 Answer by Vijesh VP for Utility to get the latest version of a windows forms app from a network share Vijesh VP 2008-10-07T19:33:04Z 2008-10-07T19:39:11Z <p>Check out this one: </p> <p><strong><a href="http://windowsclient.net/articles/appupdater.aspx" rel="nofollow">.NET Client Applications: .NET Application Updater Component</a></strong></p> <p>It is a white paper which discuses in detail on what it takes to make an application auto-updatable.</p> http://stackoverflow.com/questions/179752/call-javascript-function-and-return-value-from-asp-net/179801#179801 0 Answer by Vijesh VP for Call Javascript function and return value from ASP .NET Vijesh VP 2008-10-07T18:41:59Z 2008-10-07T18:41:59Z <p>If your intention is to reuse some functions in both server side and client side, I would suggest to write that function in server side (aspx or asmx) and call it from client side (JavaScript) using AJAX. Not sure whether you are looking for this.</p> http://stackoverflow.com/questions/175322/reporting-services-internationalization/175431#175431 3 Answer by Vijesh VP for Reporting Services internationalization Vijesh VP 2008-10-06T17:57:41Z 2008-10-06T17:57:41Z <p>Please check out this thread. It might help you here.</p> <p><a href="http://stackoverflow.com/questions/16660/internationalization-in-ssrs"><strong>Internationalization in SSRS</strong></a></p> http://stackoverflow.com/questions/169833/how-do-i-write-content-to-another-browser-window-using-javascript/169843#169843 1 Answer by Vijesh VP for How do I write content to another browser window using Javascript? Vijesh VP 2008-10-04T06:02:51Z 2008-10-04T06:02:51Z <p>I think this will do the trick.</p> <pre><code> function popUp(){ var newWindow = window.open("","Test","width=300,height=300,scrollbars=1,resizable=1") //read text from textbox placed in parent window var text = document.form.input.value var html = "&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;Hello, &lt;b&gt;"+ text +"&lt;/b&gt;." html += "How are you today?&lt;/body&gt;&lt;/html&gt;" newWindow .document.open() newWindow .document.write(html) newWindow .document.close() } </code></pre> http://stackoverflow.com/questions/168831/using-database-entries-to-dynamically-create-a-visio-diagram/168851#168851 3 Answer by Vijesh VP for Using Database entries to dynamically create a visio diagram Vijesh VP 2008-10-03T20:52:14Z 2008-10-03T20:52:14Z <p>Is <strong><a href="http://msdn.microsoft.com/en-us/library/bb267248.aspx" rel="nofollow">this</a></strong> what you are looking out for?</p> http://stackoverflow.com/questions/168736/how-do-you-set-a-default-value-for-a-mysql-datetime-column/168770#168770 1 Answer by Vijesh VP for How do you set a default value for a MySQL Datetime column? Vijesh VP 2008-10-03T20:31:25Z 2008-10-03T20:31:25Z <p>If you are trying to set default value as NOW(), I don't think MySQL supports that. In MySQL, you cannot use a function or an expression as the default value for any type of column, except for the TIMESTAMP data type column, for which you can specify the CURRENT_TIMESTAMP as the default.</p> http://stackoverflow.com/questions/168664/is-there-a-way-to-script-a-tables-data-temp-tables-too-in-ms-sql-2000/168715#168715 1 Answer by Vijesh VP for Is there a way to script a table's data (temp tables too) in MS SQL 2000? Vijesh VP 2008-10-03T20:21:19Z 2008-10-03T20:21:19Z <p>Somebody else tried it <strong><a href="http://vyaskn.tripod.com/code/generate_inserts.txt" rel="nofollow">here</a></strong>. Please have a look.</p> http://stackoverflow.com/questions/181800/issue-with-localizing-html-title-of-a-page/181814#181814 Comment by Vijesh VP on Issue with localizing html title of a page Vijesh VP 2008-10-08T10:02:28Z 2008-10-08T10:02:28Z @Dylan: Thanks much for your answer. I was also thinking in same lines. Anyway, I solved the problem in my machine by setting &quot;Arial Unicode MS&quot; font as you mentioned. But seems like I have to live with this issue, since I may not be able to control my users machines :( http://stackoverflow.com/questions/166452/performance-of-system-io-readallxxx-writeallxxx-methods/166602#166602 Comment by Vijesh VP on Performance of System.IO.ReadAllxxx / WriteAllxxx methods Vijesh VP 2008-10-03T13:04:59Z 2008-10-03T13:04:59Z @Richard I was also thinking that. I just wanted to confirm I'm not overlooking anything here. thanks for your answer. http://stackoverflow.com/questions/166452/performance-of-system-io-readallxxx-writeallxxx-methods/166479#166479 Comment by Vijesh VP on Performance of System.IO.ReadAllxxx / WriteAllxxx methods Vijesh VP 2008-10-03T13:02:57Z 2008-10-03T13:02:57Z Thank you very much for you answer. I was also thinking in the same line. But got confused when I saw the MSDN page I mentioned in my question. http://stackoverflow.com/questions/83073/why-not-use-tables-for-layout-in-html/83585#83585 Comment by Vijesh VP on Why not use tables for layout in HTML? Vijesh VP 2008-10-01T20:59:18Z 2008-10-01T20:59:18Z Nice way of illustration. http://stackoverflow.com/questions/159597/how-to-convince-people-to-comment-their-code/159604#159604 Comment by Vijesh VP on How to convince people to comment their code Vijesh VP 2008-10-01T20:47:08Z 2008-10-01T20:47:08Z I second you. I added the same answer, and deleted mine once I saw yours. :) http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1672#1672 Comment by Vijesh VP on Learning to write a compiler Vijesh VP 2008-10-01T20:27:58Z 2008-10-01T20:27:58Z It was one of my favorites. ;) http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-official-faq Comment by Vijesh VP on How Does Stackoverflow Work? (The Official FAQ) Vijesh VP 2008-09-30T13:09:36Z 2008-09-30T13:09:36Z Thanks for the post. Very much informative. http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/179#179 Comment by Vijesh VP on How do I programmatically create a PDF in my .NET application? Vijesh VP 2008-09-30T13:07:04Z 2008-09-30T13:07:04Z I second this. PDFSharp is a nice tool http://stackoverflow.com/questions/150114/parsing-performance-if-tryparse-try-catch/150131#150131 Comment by Vijesh VP on Parsing Performance (If, TryParse, Try-Catch) Vijesh VP 2008-09-29T19:06:57Z 2008-09-29T19:06:57Z Nice information. thanks for pointing it out. http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/112340#112340 Comment by Vijesh VP on What is the worst interview question? Vijesh VP 2008-09-29T19:01:25Z 2008-09-29T19:01:25Z I totally agree with Jason. May be the interviewer could ask it in a bit more polite manner. :) http://stackoverflow.com/questions/146054/which-you-think-is-the-best-class-design-tool-for-net/146056#146056 Comment by Vijesh VP on Which you think is the best class design tool for .net? Vijesh VP 2008-09-28T15:32:29Z 2008-09-28T15:32:29Z @ Rich: Just to make my point clear, &quot;reverse engineering source code&quot; in the context of a class deisgn tool means the ability to update class diagram if I modified my source code. http://stackoverflow.com/questions/146054/which-you-think-is-the-best-class-design-tool-for-net/146056#146056 Comment by Vijesh VP on Which you think is the best class design tool for .net? Vijesh VP 2008-09-28T15:18:14Z 2008-09-28T15:18:14Z Rich, I'm basically looking out for a tool which could help me to generate class diagrams during design phase. Once I'm done with the class design I want to generate the code skeletons out of the diagram, so that I can add further logic into my classes.