Viewing 15 posts - 10,621 through 10,635 (of 18,923 total)
It's a very good question. We you test it, can you post the results to us?
TIA.
December 12, 2006 at 10:01 am
The users using the application need to see the results in QA??
I'm not following here
.
So far Robert's solution seems to be the only...
December 12, 2006 at 9:15 am
I already wrote a test on this one. And even at 1 000 000 executions I could not get a difference (consistent). I was getting like differences like 3 MS...
December 12, 2006 at 9:12 am
Why not bcp the data out in a comma delemited format?. Will save you some uneeded data manipulations!
December 12, 2006 at 9:10 am
I don't understand the 2nd delete in this code. Were are deleting duplicates. So 1 row will remain which means that there won't be orphaned rows. Other than that it's...
December 12, 2006 at 9:08 am
This is the closest error I can think of in SQL server (which comes from a bad practice but I guess you already know that
December 12, 2006 at 8:38 am
Depends of how much data is required to be kept in the db. If all you need to save is the adress of the company and it's phone numbers, etc. ...
December 12, 2006 at 8:05 am
Ya that should do it. The explicit join is always better, especially in avoiding unwanted cross joins. I was just pointing out again that the exec (spname) can't work the...
December 12, 2006 at 8:02 am
Thanx for the info. Will do that someday, again. But not today
.
December 12, 2006 at 7:57 am
Simple modification from my original answer :
SELECT UserID, DATEDIFF(S, '2000/01/01', ViewDate) / 1800 3600 AS NbrOf30MinsSinceSomeArbitraryDate, COUNT(*) AS Total FROM #Demo GROUP BY UserID, DATEDIFF(S, '2000/01/01', ViewDate) /...
December 12, 2006 at 7:54 am
Actually there's a way to use the ordinal positions and get the performance boost while still being safe. Consider this [LONG] code :
Private Sub CHARgerTreeViewSectionModules(ByVal ModNode
December 12, 2006 at 7:51 am
Can you tell me where this term "magic" comes from??
December 12, 2006 at 7:34 am
from
(exec [dbo].[myStoredProcedure] GetDate()) source
where
This code of code is forbidden. You have to use the temp tables you just created to do the update.
December 12, 2006 at 7:22 am
Viewing 15 posts - 10,621 through 10,635 (of 18,923 total)