Forum Replies Created

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

  • RE: Need Alternative to Stored Procedure

    The problem may be with the select count(...) statement - you may actually be getting two recordsets back when the query is run outside Query Analyzer. Try the following:

    ALTER Procedure...

  • RE: Stored Proc

    Guarddata is correct. Your code will look like this:

    set cmd = server.CreateObject("ADODB.Command")

    with cmd

    .ActiveConnection = gObjConn

    .CommandType = adCmdStoredProc

    .CommandText =...

  • RE: ContainsTable

    I used it in a phone sales script maintenance application. Each call has to have a disposition assigned to it, and we always try to recycle existing dispositions. So if...

  • RE: Log Shipping Error

    Also check if any non-logged operations (select into, truncate table, etc.) occurred. This always broke log shipping at my office and sometimes the only way to get it going again...

  • RE: Worst Practice - Bad Comments

    Headers are essential. They not only indicate who made a change (provided the author still works with you) but also tie a change to a work order here, allowing you...

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