Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Help!!! Strange Problem of SQL Server 7

    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...

  • RE: Help!!! Strange Problem of SQL Server 7

    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...

  • RE: Partial Data Retrieve

    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 ...

Viewing 3 posts - 1 through 3 (of 3 total)