User Daud - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T09:37:13Zhttp://stackoverflow.com/feeds/user/1721http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/391784/asp-net-session-expiry-redirect-to-login-page1Asp.net session expiry redirect to login pageDaud2008-12-24T16:41:14Z2009-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-mergesort18Why is quicksort better than mergesort?Daud2008-09-16T08:37:52Z2009-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-offline2Install the Radrails plugin for Aptana Studio offlineDaud2008-08-29T05:43:06Z2009-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-server0JavaScript file not reloading in browser when modified on serverDaud2009-08-27T09:18:42Z2009-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-server2Speeding up temp table joins in SQL ServerDaud2009-08-25T07:36:15Z2009-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-ssis0Using Excel source on a machine without excel installed in SSISDaud2009-08-19T09:33:45Z2009-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-rails1Accessing model properties in RailsDaud2009-08-20T10:08:01Z2009-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-loader0Retrieving deleted records from Apex data loader?Daud2009-08-18T09:25:28Z2009-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-conversion5Daylight saving changes affecting UTC conversionDaud2008-10-21T13:12:50Z2009-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-minu0SP taking 15 minutes but the same query when executed returns results in 1-2 minutesDaud2009-08-12T09:52:33Z2009-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-decoupling2Can we achieve 100% decoupling?Daud2008-09-16T08:49:52Z2009-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#12059770Answer by Daud for What .NET Framework and C# version should I target with my class library?Daud2009-07-30T11:21:43Z2009-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#11823172Answer by Daud for ASP.NET MVC vs. Webforms: Replacing WebForms ControlsDaud2009-07-25T15:31:58Z2009-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-balancing1Database cluster and load balancingDaud2009-07-22T05:32:00Z2009-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-ie70Using Server.CreateObject("ADODB.Stream") in IE7Daud2008-11-12T12:05:37Z2009-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#9802231Answer by Daud for How to deploy my asp.net project in IIS ?Daud2009-06-11T09:38:32Z2009-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#9801880Answer by Daud for Which programming language is the best alternative to Java?Daud2009-06-11T09:32:17Z2009-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-procedures4Need a tool to automatically indent and format SQL Server stored proceduresDaud2009-03-26T15:58:59Z2009-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-cache1Asp.Net Caching and memory leaks when removing items from CacheDaud2009-05-28T05:38:09Z2009-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-database1Validating and Extracting XML record by record into DatabaseDaud2008-10-22T13:56:44Z2009-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("<?xml version="1.0" encoding="utf-8" ?>
<Orders>
<Order>
<Phone>1254</Phone>
<City>City1</City>
<State>State</State>
</Order>
<Order>
<Phone>98764321</Phone>
<City>City2</City>
<State>State2</State>
</Order>
</Orders>");
</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-20051Get month and year from a datetime in sql server 2005Daud2008-09-05T11:02:44Z2009-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-here1What's this &block in Ruby? And how does it get passes in a method here?Daud2009-05-02T12:01:58Z2009-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 &block and the attributes={} thing work. Can anyone guide me to a tutorial of some kind explaining this?</p>
<pre><code><% hidden_div_if(@cart.items.empty?, :id => "cart") do %>
<%= render(:partial => "cart", :object => @cart) %>
<% end %>
module StoreHelper
def hidden_div_if(condition, attributes = {}, &block)
if condition
attributes["style"] = "display: none"
end
content_tag("div", attributes, &block)
end
end
</code></pre>
http://stackoverflow.com/questions/776235/weird-sql-server-query-problem2Weird SQL Server query problemDaud2009-04-22T08:45:14Z2009-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-html1How to center align a pre tag in HTMLDaud2009-04-25T14:48:33Z2009-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#7612282Answer by Daud for How to debug a windows service using breakpoints?Daud2009-04-17T16:51:11Z2009-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-monitor2What is this process in Sql Server Activity monitor?Daud2009-04-16T17:01:46Z2009-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-net1Free tool or library to convert Tiff files to pdf in .NetDaud2008-12-03T08:07:19Z2009-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-net0How to submit a form using the Enter key in asp.netDaud2008-12-30T09:01:38Z2009-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-callback0Updating a gridview based on dundas chart callbackDaud2009-01-22T16:35:06Z2009-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-table10How can I delete duplicate rows in a tableDaud2008-09-18T11:35:27Z2009-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#39241Comment by Daud on Why are professors or schools picking Java over C++ to teach to students?Daud2009-12-09T09:21:36Z2009-12-09T09:21:36ZC is kinda cool I guess.http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net/1353746#1353746Comment by Daud on What are the advantages of using J2EE over ASP.net?Daud2009-10-21T09:21:25Z2009-10-21T09:21:25ZPHP pays well I hear :)http://stackoverflow.com/questions/1503334/how-to-make-int1024Comment by Daud on how to make Int1024Daud2009-10-01T12:41:06Z2009-10-01T12:41:06Zbehrooz, where did you go???http://stackoverflow.com/questions/1339887/javascript-file-not-reloading-in-browser-when-modified-on-server/1339905#1339905Comment by Daud on JavaScript file not reloading in browser when modified on serverDaud2009-08-27T10:25:58Z2009-08-27T10:25:58ZNice. Works great.http://stackoverflow.com/questions/1326608/speeding-up-temp-table-joins-in-sql-server/1326668#1326668Comment by Daud on Speeding up temp table joins in SQL ServerDaud2009-08-25T08:00:09Z2009-08-25T08:00:09ZI'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#1326633Comment by Daud on Speeding up temp table joins in SQL ServerDaud2009-08-25T07:44:39Z2009-08-25T07:44:39ZI could definitely try thathttp://stackoverflow.com/questions/1305167/accessing-model-properties-in-rails/1305299#1305299Comment by Daud on Accessing model properties in RailsDaud2009-08-20T12:18:39Z2009-08-20T12:18:39ZI 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#1299004Comment by Daud on Using Excel source on a machine without excel installed in SSISDaud2009-08-20T05:14:29Z2009-08-20T05:14:29ZRunning it on 32 bit Win Server 2003 machine.http://stackoverflow.com/questions/1298781/using-excel-source-on-a-machine-without-excel-installed-in-ssisComment by Daud on Using Excel source on a machine without excel installed in SSISDaud2009-08-20T05:13:38Z2009-08-20T05:13:38ZI'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#1205977Comment by Daud on What .NET Framework and C# version should I target with my class library?Daud2009-07-31T09:06:26Z2009-07-31T09:06:26ZOh well. 1.1 is fun too.http://stackoverflow.com/questions/284753/nuggets-of-wisdom/284960#284960Comment by Daud on Nuggets of wisdom?Daud2009-07-30T11:10:38Z2009-07-30T11:10:38ZI'll never get tired of this quote.http://stackoverflow.com/questions/1205561/unique-html-item-id-in-javascript/1205593#1205593Comment by Daud on Unique html item ID in JavascriptDaud2009-07-30T10:04:58Z2009-07-30T10:04:58ZHow 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#618559Comment by Daud on How do you test if something is hidden in jQuery?Daud2009-07-17T14:27:49Z2009-07-17T14:27:49ZDoesn't work. The expression returns Boolean.http://stackoverflow.com/questions/919334/asp-net-caching-and-memory-leaks-when-removing-items-from-cache/919347#919347Comment by Daud on Asp.Net Caching and memory leaks when removing items from CacheDaud2009-05-28T08:11:48Z2009-05-28T08:11:48ZOk. 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#919347Comment by Daud on Asp.Net Caching and memory leaks when removing items from CacheDaud2009-05-28T06:31:53Z2009-05-28T06:31:53ZSo is there a way to explicitly free memory occasionally before it brings me down?