Viewing 4 posts - 1 through 5 (of 5 total)
Hi Steve,
Many thanks for your reply. The requirements have changed now so that it is only csv's but I think your idea will work nicely for either requirement.
Regards,
Chris
October 20, 2005 at 4:57 pm
Thanks for your reply Deni.
This would work if the number of Access Database I needed to produce was fixed. However, I need to produce a separate Access Database for each...
October 11, 2005 at 11:54 pm
Thanks Noel, that has cleared up the problem for me.
Michael, we have two rows (default values) that are in every table, we decided to give these an ID of -1...
June 21, 2005 at 5:03 pm
Thanks Michael,
I have nutted it out this far, try this example.
DROP TABLE tabA
CREATE TABLE tabA (
colA smallint NOT NULL,
colB INT IDENTITY(1,1)
)
EXEC('SET IDENTITY_INSERT tabA ON')
EXEC('INSERT INTO tabA(colA, colB) VALUES (-2, -1)')
EXEC('SET...
June 20, 2005 at 8:25 pm
Viewing 4 posts - 1 through 5 (of 5 total)