Viewing 15 posts - 1,171 through 1,185 (of 1,353 total)
Try writing the SQL statement with NO LOCK. You take the chance of reading dirty data, but normally for reports that's an acceptable risk.
August 30, 2007 at 6:48 am
Presumably you are doing this in the context of a data warehouse. If so, you should be aware that this is almost always the most complicated and time intensive...
June 6, 2007 at 12:55 pm
You don't indicate how you are calling the code, but if you are using ADO you can run the process asynchronously. Synchronous is the default, which means the machine will...
May 16, 2007 at 8:17 am
I my testing of restores, I found it better to backup the transaction log PRIOR to doing the full backup. I can't explain it, but using the way you...
April 25, 2007 at 7:00 am
I once used a Cartesian product to create a report to show all our companies instructors and all classes. I then had to match this with another query so...
April 25, 2007 at 6:17 am
This is interesting theory, but what about situations such as work orders which are not complete but have a DateCompleted field. That item is simply not know, and using an...
April 10, 2007 at 8:38 am
Hallo Frank,
Irgendwie habe ich diese Ehre vermisst. Wahrscheinlich hatte ich viel zu tun, um die Reise nach Deutchland vorzubereiten. In jedem Fall gratuliere ich dir herzlich. Du hast nicht nur...
April 9, 2007 at 8:12 am
I am partly posting a reply because no one else has, though I am unable to find my notes on the subject.
I had to once design a program to take...
April 5, 2007 at 11:42 am
I disagree that you can't reach 100% accuracy of the known data. If the bottom line of the data warehouse doesn't match the inputing systems, then the data warehouse creator...
March 20, 2007 at 7:00 am
Can't help you with 1 or 3, other than to say that if you're using MTS I'm pretty sure that the connections are diposed are a time, but if you're...
March 19, 2007 at 8:56 am
This article doesn't even begin to address what IT staff, the presumed readership of the article, can do to address the situation presented. Nothing here about determining measures, level of...
March 5, 2007 at 6:51 am
If I understand correctly, you're running a process that, once run, doesn't allow you open excel properly. If so, in the code, you need to close the application object. That...
August 30, 2006 at 9:57 am
What does the actual performance have to do with the memory usage on startup? What would be the "wrong situation", as you put it? That the server is underpowered? I've...
August 21, 2006 at 9:23 am
This is a very interesting thread, but I don't see the relevance of some of the questions, like:
How much memory does SQL use on startup?
I've never had to share an...
August 21, 2006 at 7:29 am
If you're not planning to keep the data, and I assume that you are not if you are considering a temp table, I would use the temporary table. At the...
May 11, 2006 at 6:03 am
Viewing 15 posts - 1,171 through 1,185 (of 1,353 total)