November 1, 2005 at 7:13 am
Pls forgive me I am new to this list serve:
I am getting the error, listed in the subject line, from a sp run through dts. The exact statement that I am getting this wonderful error from is:
delete TaxAddress
from TaxAddress,Parcel,CvtMadParcel
where TaxAddress.ParcelID = Parcel.ParcelID and
Parcel.UserDefinedID = CvtMadParcel.Parcel_no and
Parcel.TaxYear = 2004
If I run this deletion on its own from Artisan, I get the same error. This code has been running weekly for over a year. It just stopped working with SQL Server 2000 SP 3.
Any clue as to why it stopped working??
Thank you.
November 1, 2005 at 7:32 am
Don't know, but your query could be rewritten using joins:
delete ta
from TaxAddress ta join Parcel pa on ta.parcelid = pa.parcelid
join CvtMadParcel cmp on pa.userdefinedid = cmp.parcel_no
where pa.taxyear = 2004
Might be worth a try.
November 1, 2005 at 7:47 am
The error is more than likely a server, table or index issue. The sp ran fine until the latest service pack was loaded.
November 1, 2005 at 8:02 am
Reapply the service pack, perhaps the installation wasn't succesfull.
November 1, 2005 at 8:07 am
I can ask the server admin do that. Of course he will tell me that everything went fine and it is a waste of time.
Any idea where I might find messages telling me if there were problems installing the service pak?
November 2, 2005 at 11:03 am
FYI, joins did not work. I guess the only thing I can do is call Microsoft, yipee.
November 2, 2005 at 12:20 pm
This is a weird one. Have you run dbcc checkdb?
Also, if you run the statement directly through QA (rather than as part of a stored proc), do you get the same message? If you do, can you post the exact message?
November 2, 2005 at 12:26 pm
Yes, if I run the query through Artisan I get the message outside of the Stored Procedure. (I just ran it through Query Anal (QA?) to see if it might have been an Artisan issue.) I got the same message:
Server: Msg 8624, Level 16, State 1, Line 1
Internal SQL Server error.
November 2, 2005 at 1:30 pm
Viewing 9 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply