Rexolio
Technical User
- Aug 29, 2001
- 230
I have an archaic table with the following format:
tblCATEGORIES
NameID, Category1, Category2, Category3, Category4, so on
Each record contains an ID (NameID) from another table and specifies whether that user/record has selected any of those categories. Each category is represented by a number. So, say Name ID # 450 chose categories 1 and 3, the entry would look like:
450, 1, , 3,,
I want to create a NEW table with only 2 fields, NameID and CategoryID, and then take the info from the existing table and transfer it so that user 450 would have 2 entries:
450, 1
450, 3
But I don't know how to transfer/interact with the data like that without building an ASP page to do it and that really hits the server hard since there are about 300,000 records currently.
Any suggestions?
rexolio@yahoo.com
"I'm not dumb. I just have a command of thoroughly useless information." - Calvin, of Calvin and Hobbes
tblCATEGORIES
NameID, Category1, Category2, Category3, Category4, so on
Each record contains an ID (NameID) from another table and specifies whether that user/record has selected any of those categories. Each category is represented by a number. So, say Name ID # 450 chose categories 1 and 3, the entry would look like:
450, 1, , 3,,
I want to create a NEW table with only 2 fields, NameID and CategoryID, and then take the info from the existing table and transfer it so that user 450 would have 2 entries:
450, 1
450, 3
But I don't know how to transfer/interact with the data like that without building an ASP page to do it and that really hits the server hard since there are about 300,000 records currently.
Any suggestions?
rexolio@yahoo.com
"I'm not dumb. I just have a command of thoroughly useless information." - Calvin, of Calvin and Hobbes