HI there..
this is a bit hard to explain so i will show code of the update equivalent ..
declare @dummy as int;
UPDATE pages
SET
@dummy = 0
,field ='asdsa' ... etc
because i am writing a code generator it gets messy trying to determine if a comma is needed or not.. i am having this problem with inserts now.. ive tried this dummy approach but doesnt work... is it possible to force an insert into a column that doesnt exist.. the @dummy works for update, so hoping there is a way for insert..
thanks heaps A