Forum Replies Created

Viewing 4 posts - 151 through 154 (of 154 total)

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

  • RE: Duplicated Data

    Ok i see what ur trying to do ...tblTMPFileLoad is a temp storage place from which u insert into tblCustomer and now u need the id to insert into tblAddlInfo

    if...

  • RE: Duplicated Data

    Do you want to delete duplicate records from the table ?? if yes then whats the table structure

  • RE: Using a Function Recursively

    Hi,

    U can get a list of packages that match the customers option by using this sql

    SELECT Pkg.Pkg

    FROM

    (SELECT Pkg As Pkg,

    COUNT(*) As OptMatch

    FROM PkgOptions

    INNER JOIN CustOptions

    ON CustOptions.Opt =...

Viewing 4 posts - 151 through 154 (of 154 total)