Viewing 12 posts - 1 through 12 (of 12 total)
I had to do this once before and the problem stemmed from SQL Server using a temp directory that wasn't accessible to everyone. In this case though I was using...
February 17, 2006 at 9:06 pm
FYI - Problem seems to have been that Visual Studio Analyze was running. I turned it off under Tracing in the ODBC Administrator, and the query result time was reduced...
February 1, 2006 at 9:00 am
Thanks. I've visited that page before myself, but it doesn't give me much help with this situation.
January 20, 2006 at 7:13 pm
I've used both methods of processing, and from my experience I would say the biggest gain was from inserting the data into a temporary table first. A cursor created from...
January 17, 2006 at 4:52 am
Here's another function that takes a simpler approach. If you are maintaining a holiday table, it would be simple enough to check the return value against it as well.
John
CREATE FUNCTION...
November 4, 2005 at 7:05 am
From the little bit of information you gave it's hard to say for sure. It would depend a lot on how many columns, what your indexes are, etc. You can...
May 11, 2005 at 8:57 pm
DBCC DROPCLEANBUFFERS didn't work, but I found that switching providers did as follows.
New: Works when original doesn't.
SELECT * FROM OPENROWSET("vfpoledb","\\wsipc-svr8\INTCALC\CALCULATOR\DRIVER_DBC\";"";"","SELECT DISTINCT * FROM CORPACHIST WHERE TraDate = {04/22/2005} AND...
May 4, 2005 at 9:21 am
I haven't yet, but I will the next time it happens. Thanks for the suggestion.
John
April 26, 2005 at 3:41 pm
It's a bit hard to tell exactly what the problem is from your description. If you are returning results to through the query analyzer , then copying and pasting the...
April 25, 2005 at 12:58 pm
Being someone who is also both in the DBA and developer role, my experience has been that Triggers are very useful tools if used judiciously.
In one case using a...
April 25, 2005 at 12:48 pm
What I have done in this situation is create a stored procedure that calls the DTS package. In the DTS package I create Global variables to handle things such as...
April 11, 2005 at 5:00 am
I have gotten around this problem by calling the stored procedure that calls OpenRowset from a parameterized DTS package (Exec usp_ProcedureName ?,?,?) I use the package's global variables as input to the...
March 2, 2005 at 10:09 am
Viewing 12 posts - 1 through 12 (of 12 total)