Forum Replies Created

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

  • RE: conditions in IF statement did not get checked

    Here's the whole stored proc:

    CREATE Procedure sp_updateInvalidziplist

    (

    @zipcode varchar(5),

    @sessionID varchar(50),

    @dateTime datetime,

    @ani varchar(10),

    @did varchar(10),

    @week varchar(2)

    )

    As

    set nocount on

    DECLARE @zipcodeEXIST varchar(5)

    DECLARE @weekInfo varchar(2)

    SELECT @zipcodeEXIST = zipcode from invalidziplist where zipcode =...

  • RE: procedure to return set of records

    depends on the parameters that pass in. for example:

    exec myproc 10 , 20

    will return from row 10 to row 20

    exec myproc 11 , 35

    will return from row 11 to...

  • RE: procedure to return set of records

    Thanks for the tip. Yes, I would like to use rownum for this stored proc. Once again, thanks for your help. I really appreciate it.

    May 6, 2003 at 2:56 pm

    #456334

  • RE: dtsrun error

    this DTS package involves accessing a tab delimited text file which I stored on my c:\ drive and transform the data into a table.

    quote:

  • RE: Create database from SQL script

    quote:


    What it means is that the row size for the table has exceeded 8060 which is the max allowed and if u...

  • RE: Create database from SQL script

    What it means is that the row size for the table has exceeded 8060 which is the max allowed and if u insert/update a rec which exceeds this size the...

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