How are you creating KEY1,KEY2 today? Couldn't your batch run (duplicate or
not) create these every time, avoiding this issue altogether?
As to the SQL, perhaps I'm looking at it too simplistically but something
like:
INSERT INTO FILE1
SELECT NEWKEY1,NEWKEY2, fld1, fld2,...
FROM FILE1
WHERE KEY1 = 'KEY1' and KEY2 = 'KEY2'
should work. I don't see a way you can get away without listing fields,
sorry.
Elvis
Celebrating 10-Years of SQL Performance Excellence
http://centerfieldtechnology.com/training.asp
-----Original Message-----
Subject: SQL duplicate a set of records within same file
I don't know if this is possible, but I gotta ask.
I'm changing a formerly multimember DDS defined file into a single member
DDL defined table by adding fields that keep batches separate. On occasion,
we have the need to duplicate a batch. We were able to do this before via
CPYF because we copied to a different member, so there was no need to change
any field values.
What I essentially want to do is duplicate all records with KEY1, KEY2,
fld1, fld2, fld3, ... fldn to NEWKEY1, NEWKEY2, fld1, fld2, fld3, ... fldn
within the same file. Since I'm handling a _set_ of records, it seemed
logical to try SQL for this. I know it takes an INSERT, but the examples
I'm finding online seem to be specific to a particular database, or so it
seems. It would also be nice to not have to name all the columns . . .
As an Amazon Associate we earn from qualifying purchases.