Viewing 15 posts - 1 through 15 (of 17 total)
tkbr0wn,
after getting nowhere I used your SQL and it took 24 seconds to run. I replaced the cursor in the stored proc and used your method. Will run...
June 4, 2003 at 5:39 am
Thanks for your insight. Sorry about being vague. Basically the sp gets ids required to update another table while processing through the entire recordset. I noticed something...
June 3, 2003 at 6:17 am
Hi Jeremy,
I'm currently working on SQL Server 7 using a cursor sp that is killing my DTS. I'm looking to rewrite this sp maybe using rowcounts, but before I...
May 29, 2003 at 12:08 pm
Hello,
As I was saying before this procedure does not work
Public Function ExecuteSP(sProcName As String, ParamArray aParams()) As ADODB.Recordset
Dim objCMD As ADODB.Command
Set objCMD = New ADODB.Command
With objCMD
.ActiveConnection = Conn
.CommandText = sProcName
.CommandType...
March 31, 2003 at 12:52 pm
Good article, I found it very interesting. These examples are really good but only address one procedure at a time. Taking the OOP methodology I'm in the process...
March 28, 2003 at 8:58 am
FYI. I fixed the issue. Since I'm using apartment threading which is not compatible with the Oracle driver. My job scheduler continues running. Fixed this issue...
March 18, 2003 at 12:31 pm
I found this out on Friday.
Test my package through the scheduler. I noticed something interesting. The job ran fine through the scheduler. However the scheduler keeps running...
March 17, 2003 at 7:04 am
In addition I just created a test package pulling data from Oracle using Microsoft for Oracle driver. Ran the package without the scheduler and the package ran for 3...
March 14, 2003 at 8:31 am
The user of the scheduling is the sa user which points to a generic user call SQLExecutive from a different domain. It was such a coincidence that once the...
February 24, 2003 at 3:29 pm
Hi Everyone,
I went back to the client and adjust business rules. Now the data contains the right relationships and the way the data was being stored is no longer...
February 10, 2003 at 1:42 pm
Did you look at Rapid SQL, it basically along the same lines as Toad. I guess based on market demands the producers of Toad will start incorporating into other...
January 10, 2003 at 6:38 am
No Way! This is unbelievable. It's kinda of like getting a belated Christmas gift. Never having to do this type of functionality before, it became a quest...
January 10, 2003 at 6:18 am
Wow is right, you're fast and Thanks. I'll test out the code and provide feedback. Do you mind if I need to modify the sp.
Thanks
JMC
January 9, 2003 at 1:54 pm
Interesting, but did you ever consider a blob. The reason, when I did a migration to Oracle9i, there were fields that were VARCHAR5000, however when I ran into or...
January 9, 2003 at 12:41 pm
Sorry, it took so long to reply and close this item. Unfortunately I can not access the server and implement anything on the database servers. My work around...
January 9, 2003 at 12:32 pm
Viewing 15 posts - 1 through 15 (of 17 total)