Viewing 15 posts - 1 through 15 (of 23 total)
Rather than a straight for loop like this I've seen
Do Until TestComplete()
DoEvents
Loop
The TestComplete function returns a boolean, i.e. true if the task has completed.
Like I say, I've seen...
October 11, 2006 at 1:54 am
What is the error that is reported?
Have you checked that the macro security settings for access are the same on those machines?
Does the attempted connection show up in the profiler...
August 22, 2006 at 6:33 am
I'm making a few assumptions about the structure of your data here:
SELECT KitID FROM (
SELECT Count(1) as CountParts, KitID FROM (
SELECT * FROM Parts INNER JOIN KitParts ON PartID = PartID
WHERE...
August 14, 2006 at 3:01 pm
To clarify what you need... Two tables Parts and Kits with a relation where each KitID has many Parts. Third table FindLists also related to Parts, where each FindListID has...
August 11, 2006 at 3:44 am
Here's a little function that will find the minimum...
Public Function Min(ParamArray Numbers()) Dim i As Integer i = LBound(Numbers) Min = Numbers(i) i = i + 1 Do While i <=...
August 9, 2006 at 6:27 am
Oi, do you think you have exclusive rights to idoicy and stupidity? some of us are masters at it!
What was the...
July 28, 2006 at 2:59 am
What should the result be?
i.e is it access or sql that is wrong.
July 27, 2006 at 2:47 pm
Try this code to call the sp...
Sub wibble()
on error goto error_handler
gSQLADOConnection.MergeDuplicatesDoMerge _
arrUserDet(0), arrUserDet(0)
exit_proc:
...
July 27, 2006 at 12:08 pm
They look the same, but there might be an issue with type casting in there somewhere. And did you have to use an ampersand (&) in the table name as...
July 26, 2006 at 11:54 am
My first move would be to upgrade it to use an ADO connection and see what happens there. At least then you could look at the ado.errors collection and get...
July 26, 2006 at 11:48 am
I don't know about tsql but in the job you can have a cmdexec that has a call to xcopy which would do the job.
July 25, 2006 at 2:12 pm
Just moving old data out to another filegroup won't give a performance boost. The performance comes from SQL server being able to overcome a disk I/O bottleneck by reading...
July 25, 2006 at 1:21 pm
You have two levels in the hierarchy for each database, you can split a DB into filegroups and those filegroups into files. Normally a DB has one filegroup called PRIMARY...
July 25, 2006 at 8:12 am
I had to figure out how to do something like this in SQL2000, there may be a better way now so someone will be along RSN to point it out...
I...
July 25, 2006 at 7:54 am
Cool thanks for the feedback, looks like the upgrade should be fairly painless...
What is/where is the ready to launch utility?
"unbound, SP'd ADP/pure ADO" ahh such bliss! unfortunately this little beastie...
July 25, 2006 at 2:33 am
Viewing 15 posts - 1 through 15 (of 23 total)