1
vote
2answers
36 views
How to eager load grandchildren of an aggregate with NHibernate?
I have the following class structure:
class TestCase {
public IList<Step> Steps { get; set; }
}
class Step {
public IList<Action> Actions { get; set; }
}
class …
0
votes
1answer
34 views
Is there a mod_top version for windows? if not is there an equivalent tool?
Does anyone know which version of mod_top I can use for windows server 2003? I want a performance monitoring tool for PHP based web application.
thanks
0
votes
1answer
12 views
Does SQL Server’s Database Tuning Advisor modify data?
I've been trying to increase performance and diagnose deadlocks on a SQL Server 2005 instance. It had been running SQL Server 2000 until a month ago, when an in situ upgrade was do …
0
votes
2answers
35 views
+100
What to look for in performance analyzer in VS 2008
What to look for in performance analyzer in VS 2008
I am using VS Team system and got the performance wizard and reports going.
What benchmarks/process do I use?
There is a lot …
0
votes
3answers
54 views
Considerations for updating a ‘SiteVisit’ row many times over a session
SQL Server 2005:
I have a SiteVisit row which contains information about a users visit, for instance HttpRefer, whether or not they placed an order, browser, etc.
Currently for r …
0
votes
2answers
36 views
Web Page execution
I have a web page which brings 13K+ records in 20 seconds. There is a menu on the page, clicking on which navigates me to another page which is very lightweight. Displaying the dat …
7
votes
13answers
495 views
Which of these pieces of code is faster in Java?
a) for(int i = 100000; i > 0; i--) {}
b) for(int i = 1; i < 100001; i++) {}
The answer is there on this website (question 3). I just can't figure out why?
0
votes
8answers
202 views
How could running code in the debugger makes it faster?
The title says it all.
It never happened to me. In Visual Studio, I have a part of code that is executed 300 times, I time it every iteration with the performance counter, and the …
1
vote
3answers
44 views
LINQ / SQL Performace problem with a very long list
In our database we have a table with more then 100000 entries but most of the time we only need a part of it. We do this with a very simple query.
items.AddRange(from i in this
…
27
votes
7answers
305 views
Improve the performance of an ASP.NET application
How to improve the performance of an ASP.NET application? Which are are the fields I should take care? The application includes DB connections and Image Parsing etc.
4
votes
3answers
79 views
Reducing memory of similar objects
I'm looking at reducing the memory consumption of a table like collection object.
Given a class structure like
Class Cell
{
public property int Data;
public property stri …
0
votes
2answers
63 views
Function in SQL Select Statement
CREATE VIEW View1
AS
SELECT Col1,
Col2,
dbo.fn1(col2) as Col3
FROM TestTable
/*
--Instead of writing below query I created a new View View2
SELEC …
0
votes
2answers
25 views
Can’t use a data obj with timeit.Time module in python
I'm trying to measure how long it takes read then encrypt some data (independently). But I can't seem to access the a pre-created data obj within timeit (as it runs in its own virt …
2
votes
1answer
42 views
Tuning a WCF File Server
I'm tuning a server and need some guidance. This server provides the following features:
an ASPX page with a DB call that is downloaded approximately every 3 minutes by several …
6
votes
4answers
612 views
What do Clustered and Non clustered index actually mean?
I have a limited exposure to DB and have only used DB as an application programmer. I want to know about Clustered and Non clustered indexes.
I googled and what I found was :
A …
