User Daud - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T09:37:13Z http://stackoverflow.com/feeds/user/1721 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/391784/asp-net-session-expiry-redirect-to-login-page 1 Asp.net session expiry redirect to login page Daud 2008-12-24T16:41:14Z 2009-11-13T10:30:59Z <p>What is the best way to redirect to the login page when the session expires. I'm using </p> <pre><code>sessionState mode="InProc" </code></pre> <p>Can I set this in the web.config file?</p> http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort 18 Why is quicksort better than mergesort? Daud 2008-09-16T08:37:52Z 2009-11-13T04:53:23Z <p>I was asked this question during an interview. They're both O(nlogn) and yet most people use Quicksort instead of Mergesort. Why is that?</p> http://stackoverflow.com/questions/34019/install-the-radrails-plugin-for-aptana-studio-offline 2 Install the Radrails plugin for Aptana Studio offline Daud 2008-08-29T05:43:06Z 2009-11-03T13:28:21Z <p>I downloaded and installed the Aptana Studio free version. But apparently, to install the Radrails plugin for ruby on rails development you have to connect to the internet. I don't have internet on my machine right now. So is there a way I could download the installer from another machine and copy it over my existing Aptana installation?</p> <p>Update: Found a link for download <a href="http://update.aptana.com/install/rails/3.2/" rel="nofollow">here</a> (Access denied now)</p> http://stackoverflow.com/questions/1339887/javascript-file-not-reloading-in-browser-when-modified-on-server 0 JavaScript file not reloading in browser when modified on server Daud 2009-08-27T09:18:42Z 2009-08-27T09:28:25Z <p>So I have this ASP.Net 2.0 website that uses functions contained within a JS file. When a webpage loads the js file loads fine. But when I change something in that file on the server the changes are not propagated to user's browser. It keeps working according to the out dated file. How can I force the browser to reload the modified file from the server?</p> http://stackoverflow.com/questions/1326608/speeding-up-temp-table-joins-in-sql-server 2 Speeding up temp table joins in SQL Server Daud 2009-08-25T07:36:15Z 2009-08-25T16:32:35Z <p>I have 2 temp tables #temp1 and #temp. Both have a key and date columns. Both have around 25k rows. And I'm left joining them on the basis of the key and date which are unique on all rows. It's taking around 4 minutes for this join to complete. Is there any way to speed it up or any alternative methods?</p> http://stackoverflow.com/questions/1298781/using-excel-source-on-a-machine-without-excel-installed-in-ssis 0 Using Excel source on a machine without excel installed in SSIS Daud 2009-08-19T09:33:45Z 2009-08-25T05:52:16Z <p>I have made an SSIS package that uses the Excel source to extract data from an Excel 2003 file and inserts it into SQL Server. When executed on production machine it gives and error of 'productleveltoolow'. Excel is not installed on the server. Can this error be due to this reason?</p> http://stackoverflow.com/questions/1305167/accessing-model-properties-in-rails 1 Accessing model properties in Rails Daud 2009-08-20T10:08:01Z 2009-08-21T07:01:52Z <p>So basically I have a controller. something like this</p> <pre><code>def show @user = User.find[:params[id]] #code to show in a view end </code></pre> <p>User has properties such as name, address, gender etc. How can I access these properties in the model? Can I overload the model accesser for name for example and replace it with my own value or concatenate something to it. Like in the show.html.erb view for this method I might want to concatenate the user's name with 'Mr.' or 'Mrs.' depending upon the gender? How is it possible?</p> http://stackoverflow.com/questions/1292826/retrieving-deleted-records-from-apex-data-loader 0 Retrieving deleted records from Apex data loader? Daud 2009-08-18T09:25:28Z 2009-08-18T19:47:38Z <p>Does anyone have any idea how to retrieve deleted records data from Apex data loader or otherwise from Salesforce except from the Web service?</p> http://stackoverflow.com/questions/221824/daylight-saving-changes-affecting-utc-conversion 5 Daylight saving changes affecting UTC conversion Daud 2008-10-21T13:12:50Z 2009-08-13T14:05:18Z <p>Basically I'm converting local dates stored in the database into UTC. But I've read somewhere that daylight saving rules have changed in 2007. So does the Date.ToUniversalTime() function still work correctly. Basically the dates before 2007(when the new rules came into effect) would be converted correctly but the dates after that would be not. Am I right here? Or would .Net take care of the conversion internally i.e. depending upon the different daylight saving rules?</p> <p>EDIT: Dates are stored in DB as local times. I am converting it into UTC. So a date such as '9 March 2005' should be converted using day light rules of 2005 instead of today's rules. The rules changed in the US in 2007. So the date is coming out wrong by one hour.</p> http://stackoverflow.com/questions/1265259/sp-taking-15-minutes-but-the-same-query-when-executed-returns-results-in-1-2-minu 0 SP taking 15 minutes but the same query when executed returns results in 1-2 minutes Daud 2009-08-12T09:52:33Z 2009-08-12T14:00:33Z <p>So basically I have this relatively long stored procedure. The basic execution flow is that it <code>SELECTS INTO</code> some data into temp tables declared with he <code>#</code> sign and then runs a cursor through these tables a generate a 'running total' into a third temp table which is created using <code>CREATE</code>. Then this resulting temp table is joined with other tables in the DB to generated the result after some grouping etc. The problem is that this SP had been running fine until now returning results in 1-2 minutes. And now suddenly its taking 12-15 minutes. If I extract the query from the SP and executed it in the management studio by manually setting the same parameters it returns results in 1-2 minutes but the SP takes very long. Any idea what could be happening. I tried to generate the Actual Execution plans of both the Query and the SP but it couldn't generate it because of the cursor. Any idea why the SP takes so long while the query doesn't?</p> http://stackoverflow.com/questions/70460/can-we-achieve-100-decoupling 2 Can we achieve 100% decoupling? Daud 2008-09-16T08:49:52Z 2009-08-10T18:45:11Z <p>Can we achieve 100% decoupling between components of a system or different systems that communicate with each other? I don't think its possible. If two systems communicate with each other then there should be some degree of coupling between them. Am I right?</p> http://stackoverflow.com/questions/1205908/what-net-framework-and-c-version-should-i-target-with-my-class-library/1205977#1205977 0 Answer by Daud for What .NET Framework and C# version should I target with my class library? Daud 2009-07-30T11:21:43Z 2009-07-30T11:21:43Z <p>I don't think anyone uses .Net 1.1 anymore. So unless you really want to use 3.5 features 2.0 should be fine. Also if you have control over who's going to actually use your library then it depends on them too. If they have the latest framework then you could use that.</p> http://stackoverflow.com/questions/1182307/asp-net-mvc-vs-webforms-replacing-webforms-controls/1182317#1182317 2 Answer by Daud for ASP.NET MVC vs. Webforms: Replacing WebForms Controls Daud 2009-07-25T15:31:58Z 2009-07-25T15:31:58Z <p>Here's a new rant on the subject <a href="http://www.charliedigital.com/PermaLink,guid,6dcb0333-9d70-40c7-975b-0ff4011c4661.aspx" rel="nofollow">http://www.charliedigital.com/PermaLink,guid,6dcb0333-9d70-40c7-975b-0ff4011c4661.aspx</a></p> http://stackoverflow.com/questions/1163216/database-cluster-and-load-balancing 1 Database cluster and load balancing Daud 2009-07-22T05:32:00Z 2009-07-22T05:57:57Z <p>What is database clustering? If you allow the same database to be on 2 different servers how do they keep the data between synchronized. And how does this differ from load balancing from a database server perspective?</p> http://stackoverflow.com/questions/283737/using-server-createobjectadodb-stream-in-ie7 0 Using Server.CreateObject("ADODB.Stream") in IE7 Daud 2008-11-12T12:05:37Z 2009-06-29T21:05:24Z <p>I have a asp.net 1.1 application that uses the following code to write out a file in the response:</p> <pre><code> Dim objStream As Object objStream = Server.CreateObject("ADODB.Stream") objStream.open() objStream.type = 1 objStream.loadfromfile(localfile) Response.BinaryWrite(objStream.read) </code></pre> <p>This code is called by a pop up window that displays this file or gives a open/save dialog in Internet explorer. The problem is, that it seems to work fine in IE6 but in IE7 the pop up opens and then closes without displaying the file. Any one know whats wrong?</p> http://stackoverflow.com/questions/980150/how-to-deploy-my-asp-net-project-in-iis/980223#980223 1 Answer by Daud for How to deploy my asp.net project in IIS ? Daud 2009-06-11T09:38:32Z 2009-06-11T09:38:32Z <p>Copy all the files into a folder on the server. Right click the folder and go into Sharing ans Security. Click the tab Web sharing and Share the folder. Choose which web site to add the project to. That <em>should</em> work I think. You can now open IIS and see if your site is in there. Access it using the URL in there.</p> http://stackoverflow.com/questions/980163/which-programming-language-is-the-best-alternative-to-java/980188#980188 0 Answer by Daud for Which programming language is the best alternative to Java? Daud 2009-06-11T09:32:17Z 2009-06-11T09:32:17Z <p>C# is cool.</p> http://stackoverflow.com/questions/686394/need-a-tool-to-automatically-indent-and-format-sql-server-stored-procedures 4 Need a tool to automatically indent and format SQL Server stored procedures Daud 2009-03-26T15:58:59Z 2009-05-30T06:09:16Z <p>In my current project I've been inherited with lots of long (1200+ lines) SQL Server stored procedures with some horrible indentation and formatting which makes them almost unreadable. Is there some tool that I can use to automatically format these and make them more readable? I don't want to go through it manually and indent it.</p> http://stackoverflow.com/questions/919334/asp-net-caching-and-memory-leaks-when-removing-items-from-cache 1 Asp.Net Caching and memory leaks when removing items from Cache Daud 2009-05-28T05:38:09Z 2009-05-28T05:51:40Z <p>So I'm trying to introduce some caching into my Asp.Net application. New data for the user is returned from the DB in the form of large datasets. Whenever a user requests data I insert this dataset into the <code>HttpRunTime.Cache</code>. At the moment I'm setting their caching time to 2-3 hours. And these are really large datasets and I put them in Cache quite frequently with different keys. What I'm worried about are the memory leakage implications of doing this. Would Asp.Net take care of excessive data in Cache and remove it? Also when a cached item is removed by Asp.Net or by me using <code>Cache.Remove()</code>, is only the reference to the dataset removed or the dataset is also garbage collected from memory? Is there a scenario in which datasets might be 'removed' from cache but still existing in memory creating performance issues? Is there a way to explicitly 'garbage collect' them if this is the case?</p> http://stackoverflow.com/questions/225832/validating-and-extracting-xml-record-by-record-into-database 1 Validating and Extracting XML record by record into Database Daud 2008-10-22T13:56:44Z 2009-05-22T18:43:41Z <p>Here's the deal. I have an XML document with a lot of records. Something like this:</p> <pre><code>print("&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;Orders&gt; &lt;Order&gt; &lt;Phone&gt;1254&lt;/Phone&gt; &lt;City&gt;City1&lt;/City&gt; &lt;State&gt;State&lt;/State&gt; &lt;/Order&gt; &lt;Order&gt; &lt;Phone&gt;98764321&lt;/Phone&gt; &lt;City&gt;City2&lt;/City&gt; &lt;State&gt;State2&lt;/State&gt; &lt;/Order&gt; &lt;/Orders&gt;"); </code></pre> <p>There's also an XSD schema file. I would like to extract data from this file and insert these records into a database table. First of course I would like to validate each order record. For example if there are 5 orders in the file and 2 of them fail validation I would like to insert the 3 that passed validation into the db and left the other 2. There can be thousands of records in one xml file. What would be the best approach here. And how would the validation go for this since I need to discard the failed records and only use the ones that passed validation. At the moment I'm using <b>XmlReaderSettings</b> to validate the XML document records. Should I extract these records into another XML file or a Dataset or a custom object before I insert into a DB. I'm using .Net 3.5. Any code or link is welcome.</p> http://stackoverflow.com/questions/45535/get-month-and-year-from-a-datetime-in-sql-server-2005 1 Get month and year from a datetime in sql server 2005 Daud 2008-09-05T11:02:44Z 2009-05-14T04:40:54Z <p>Ok, this should be an easy question to answer. I need the month+year from the datetime in sql server like 'Jan 2008'. I'm grouping the query by month,year. I've searched and found functions like datepart, convert etc. but none of them seem useful for this. Am I missing something here? Is there a function for this?</p> http://stackoverflow.com/questions/814739/whats-this-block-in-ruby-and-how-does-it-get-passes-in-a-method-here 1 What's this &block in Ruby? And how does it get passes in a method here? Daud 2009-05-02T12:01:58Z 2009-05-02T12:54:28Z <p>Saw this piece of code in a RoR book. This first one is from a View and the second one is a helper module. I don't understand how that &amp;block and the attributes={} thing work. Can anyone guide me to a tutorial of some kind explaining this?</p> <pre><code>&lt;% hidden_div_if(@cart.items.empty?, :id =&gt; "cart") do %&gt; &lt;%= render(:partial =&gt; "cart", :object =&gt; @cart) %&gt; &lt;% end %&gt; module StoreHelper def hidden_div_if(condition, attributes = {}, &amp;block) if condition attributes["style"] = "display: none" end content_tag("div", attributes, &amp;block) end end </code></pre> http://stackoverflow.com/questions/776235/weird-sql-server-query-problem 2 Weird SQL Server query problem Daud 2009-04-22T08:45:14Z 2009-05-01T03:27:17Z <p>So I have this weird problem with an SQL Server stored procedure. Basically I have this long and complex procedure. Something like this:</p> <pre><code>SELECT Table1.col1, Table2.col2, col3 FROM Table1 INNER JOIN Table2 Table2 INNER JOIN Table3 ----------------------- ----------------------- (Lots more joins) WHERE Table1.Col1 = dbo.fnGetSomeID() AND (More checks) ----------------------- ----------------------- (6-7 More queries like this with the same check) </code></pre> <p>The problem is that check in the WHERE clause at the end <b>Table1.Col1 = dbo.fnGetSomeID()</b>. The function dbo.fnGetSomeID() returns a simple integer value <b>1</b>. So when I hardcode the value <b>1</b> where the function call should be the SP takes only about 15 seconds. BUT when I replace it with that function call in the WHERE clause it takes around 3.5 minutes. </p> <p>So I do this:</p> <pre><code>DECLARE @SomeValue INT SET @SomeValue = dbo.fnGetSomeID() --Where clause changed WHERE Table1.Col1 = @SomeValue </code></pre> <p>So now the function is only called once. But still the same 3.5 minutes. So I go ahead and do this:</p> <pre><code>DECLARE @SomeValue INT --Removed the function, replaced it with 1 SET @SomeValue = 1 --Where clause changed WHERE Table1.Col1 = @SomeValue </code></pre> <p>And still it takes 3.5 minutes. Why the performance impact? And how to make it go away?</p> http://stackoverflow.com/questions/789064/how-to-center-align-a-pre-tag-in-html 1 How to center align a pre tag in HTML Daud 2009-04-25T14:48:33Z 2009-04-25T14:52:04Z <p>I'm trying to post some code on a blog using the pre tag. Something like this:</p> <p><code>void function(){return 0;}</code></p> <p>Now I want all this code to be center aligned. I'm not talking just about the text but also about the border around it. The width is set currently to 60%. So I want all of this to be center aligned. Is there a way to do it?</p> http://stackoverflow.com/questions/761120/how-to-debug-a-windows-service-using-breakpoints/761228#761228 2 Answer by Daud for How to debug a windows service using breakpoints? Daud 2009-04-17T16:51:11Z 2009-04-17T16:51:11Z <p>I assume you're talking about .Net of course. I've always used the following code to debug my services. I place it where I want to the debugger to launch. Start the service and it automatically launches Visual Studio. Works well for me. </p> <p><code>System.Diagnostics.Debugger.Launch();</code></p> <p><code>System.Diagnostics.Debugger.Debug();</code></p> http://stackoverflow.com/questions/757094/what-is-this-process-in-sql-server-activity-monitor 2 What is this process in Sql Server Activity monitor? Daud 2009-04-16T17:01:46Z 2009-04-17T13:17:56Z <p>There is a process that seems to be running all the time in SQL Server 2005 activity monitor. Double clicking on it produces the following query:</p> <p><code>CREATE TABLE #tmpDBCCinputbuffer ([EVENT TYPE] NVARCHAR(512), [PARAMETERS] INT, [EVENT Info] NVARCHAR(512)) INSERT INTO #tmpDBCCinputbuffer EXEC ('DBCC INPUTBUFFER(58)') SELECT [EVENT Info] FROM #tmpDBCCinputbuffer</code></p> <p>Any idea what it is? Is it dangerous?</p> http://stackoverflow.com/questions/336466/free-tool-or-library-to-convert-tiff-files-to-pdf-in-net 1 Free tool or library to convert Tiff files to pdf in .Net Daud 2008-12-03T08:07:19Z 2009-04-10T01:40:23Z <p>Does any one know of a free tool or library to convert multi page tiffs to pdf in Asp.Net 1.1?</p> http://stackoverflow.com/questions/399826/how-to-submit-a-form-using-the-enter-key-in-asp-net 0 How to submit a form using the Enter key in asp.net Daud 2008-12-30T09:01:38Z 2009-03-22T16:09:18Z <p>I have 3 buttons in a form. One of them is the submit button. How can I make it the default button to be clicked when I press the enter key. Is there a property for this?</p> http://stackoverflow.com/questions/469864/updating-a-gridview-based-on-dundas-chart-callback 0 Updating a gridview based on dundas chart callback Daud 2009-01-22T16:35:06Z 2009-03-22T16:08:30Z <p>I have a dundas pie chart which when clicked issues a client callback which updates another chart associated with it. Basically its like a drill down thing. I also want to update my gridview based on the user's selection of the pie. But since the update of chart is being done using dundas client callback I'm unable to rebind my Gridview. Is there any way to do it? . </p> http://stackoverflow.com/questions/91784/how-can-i-delete-duplicate-rows-in-a-table 10 How can I delete duplicate rows in a table Daud 2008-09-18T11:35:27Z 2009-03-04T10:47:24Z <p>I have a table with say 3 columns. There's no primary key so there can be duplicate rows. I need to just keep one and delete the others. Any idea how to do this is Sql Server?</p> http://stackoverflow.com/questions/5651/why-are-professors-or-schools-picking-java-over-c-to-teach-to-students/39241#39241 Comment by Daud on Why are professors or schools picking Java over C++ to teach to students? Daud 2009-12-09T09:21:36Z 2009-12-09T09:21:36Z C is kinda cool I guess. http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net/1353746#1353746 Comment by Daud on What are the advantages of using J2EE over ASP.net? Daud 2009-10-21T09:21:25Z 2009-10-21T09:21:25Z PHP pays well I hear :) http://stackoverflow.com/questions/1503334/how-to-make-int1024 Comment by Daud on how to make Int1024 Daud 2009-10-01T12:41:06Z 2009-10-01T12:41:06Z behrooz, where did you go??? http://stackoverflow.com/questions/1339887/javascript-file-not-reloading-in-browser-when-modified-on-server/1339905#1339905 Comment by Daud on JavaScript file not reloading in browser when modified on server Daud 2009-08-27T10:25:58Z 2009-08-27T10:25:58Z Nice. Works great. http://stackoverflow.com/questions/1326608/speeding-up-temp-table-joins-in-sql-server/1326668#1326668 Comment by Daud on Speeding up temp table joins in SQL Server Daud 2009-08-25T08:00:09Z 2009-08-25T08:00:09Z I'm not known for my query writing skills. But that indexing advice seems to have worked. I created a clustered index on the joining columns of one temp table and its returning results quite quickly now. http://stackoverflow.com/questions/1326608/speeding-up-temp-table-joins-in-sql-server/1326633#1326633 Comment by Daud on Speeding up temp table joins in SQL Server Daud 2009-08-25T07:44:39Z 2009-08-25T07:44:39Z I could definitely try that http://stackoverflow.com/questions/1305167/accessing-model-properties-in-rails/1305299#1305299 Comment by Daud on Accessing model properties in Rails Daud 2009-08-20T12:18:39Z 2009-08-20T12:18:39Z I need these in the model. I know how to get them in the view. http://stackoverflow.com/questions/1298781/using-excel-source-on-a-machine-without-excel-installed-in-ssis/1299004#1299004 Comment by Daud on Using Excel source on a machine without excel installed in SSIS Daud 2009-08-20T05:14:29Z 2009-08-20T05:14:29Z Running it on 32 bit Win Server 2003 machine. http://stackoverflow.com/questions/1298781/using-excel-source-on-a-machine-without-excel-installed-in-ssis Comment by Daud on Using Excel source on a machine without excel installed in SSIS Daud 2009-08-20T05:13:38Z 2009-08-20T05:13:38Z I'm running the package through the SSIS execution GUI. http://stackoverflow.com/questions/1205908/what-net-framework-and-c-version-should-i-target-with-my-class-library/1205977#1205977 Comment by Daud on What .NET Framework and C# version should I target with my class library? Daud 2009-07-31T09:06:26Z 2009-07-31T09:06:26Z Oh well. 1.1 is fun too. http://stackoverflow.com/questions/284753/nuggets-of-wisdom/284960#284960 Comment by Daud on Nuggets of wisdom? Daud 2009-07-30T11:10:38Z 2009-07-30T11:10:38Z I'll never get tired of this quote. http://stackoverflow.com/questions/1205561/unique-html-item-id-in-javascript/1205593#1205593 Comment by Daud on Unique html item ID in Javascript Daud 2009-07-30T10:04:58Z 2009-07-30T10:04:58Z How would you know the ID of a particular element when you want to access it? http://stackoverflow.com/questions/178325/how-do-you-test-if-something-is-hidden-in-jquery/618559#618559 Comment by Daud on How do you test if something is hidden in jQuery? Daud 2009-07-17T14:27:49Z 2009-07-17T14:27:49Z Doesn't work. The expression returns Boolean. http://stackoverflow.com/questions/919334/asp-net-caching-and-memory-leaks-when-removing-items-from-cache/919347#919347 Comment by Daud on Asp.Net Caching and memory leaks when removing items from Cache Daud 2009-05-28T08:11:48Z 2009-05-28T08:11:48Z Ok. So the .Net Framework guarantees that caching will never create memory issues. http://stackoverflow.com/questions/919334/asp-net-caching-and-memory-leaks-when-removing-items-from-cache/919347#919347 Comment by Daud on Asp.Net Caching and memory leaks when removing items from Cache Daud 2009-05-28T06:31:53Z 2009-05-28T06:31:53Z So is there a way to explicitly free memory occasionally before it brings me down?