Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

after running DTS on ASP, query doesn't work anymore?!

Status
Not open for further replies.

rwei

Programmer
Nov 19, 2004
55
US
Hi, all,

Please confirm if this is true.

I clear the destination table outside the DTS before I run a simple DTS package from an ASP page, then I check the destination table's row count to see if the DTS has completed successfully.

However, this execution of the simple SQL stored procedure query in the ASP against the destination table doesn't seem to be working anymore after the DTS execution?!

I do something similar on the destination table before the DTS execution, and it seems to run fine.

Does this happen to you?

After the execution, I do something like:
Code:
objPkg.Uninitialize
Set objPkg = Nothing
to clear everyhing.

Please help.
 
With more testing on this problem...

It does seem to me that the table involved in the DTS execution is still being 'locked' after the DTS completes. I can't do any SQL operation on it, not even SELECT.

What else I need to do other than "UnInitialize" in my ASP code?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top