Viewing 3 posts - 1 through 3 (of 3 total)
Yes, using a temp table or union could be a good option. The SP probably can run better. However, this problem seems not the SP problem because the problem only happens few...
April 1, 2005 at 4:12 am
Thank you Journeyman.
I already change this stored procedure by using "truncate table SalesSummaryReport". I run it and didn't see any problem yet.
However, I still don't know why...
March 30, 2005 at 1:23 pm
Thank you all for your replying.
Here is the sample code:
<%
'Connect the Database
Set Conn=Server.CreateObject("ADODB.Connection")
Conn.Open "DSN=Test;UID=sa;PWD=;database=Northwind"
'SQL Command
SQL="Select CategoryName, CategoryID from Categories order by CategoryID"
'run SQL Command
Set RS=Conn.Execute(SQL)
'Appear result
Response.write "<table Align=center border=1 ...
December 21, 2003 at 2:06 am
Viewing 3 posts - 1 through 3 (of 3 total)