I am importing an Access table into a SQL Server 2000 table. I am importing using a query out of one db and into the other using ColdFusion.
Here's my problem...
Table A (Access) has the data with an id field (primary key). When I import into Table B (SQL Server) the insert does not go into the database sequentially ordered by the primary key. It appears that the data is inserted randomly.
How do I get the data to go in sequentially? I have tried sorting my output query by id asc, but it still goes in bad.
Here's my problem...
Table A (Access) has the data with an id field (primary key). When I import into Table B (SQL Server) the insert does not go into the database sequentially ordered by the primary key. It appears that the data is inserted randomly.
How do I get the data to go in sequentially? I have tried sorting my output query by id asc, but it still goes in bad.