Viewing 4 posts - 151 through 154 (of 154 total)
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...
August 1, 2001 at 2:49 pm
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...
August 1, 2001 at 1:57 pm
Do you want to delete duplicate records from the table ?? if yes then whats the table structure
August 1, 2001 at 1:08 pm
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 =...
July 31, 2001 at 6:37 am
Viewing 4 posts - 151 through 154 (of 154 total)