I have a ms access database that has one table for each photo album with the name of the table as the albumname
tablename = "Trips" fields: picID, comment
i am migrating to sql server and i wanted to fix this normalization issue and just have
- One table called Albums with albumID and albumName
- One table called pictures with picID, albumID, etc . .
is there anyway to automate this process of taking multiple tables in access and moving into one table in Sql server