Jump to content

Import unnormalized data into normalized tables


This topic is 6604 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have a file of orders to import into the Invoices and LineItems tables of a FM database. Each record in the orders file contains both a line item and the customer's shipping information. Obviously, the shipping information belongs in Invoices and the line item belongs in LineItems.

Right now I use two Import passes - one to add records to Invoices, and one to add records to LineItems - and finally I remove the duplicate Invoice records.

Is there a better approach? One that eliminates the addition - and subsequent removal - of redundant Invoice records? (Better yet, a single-pass solution.)

Thank you,

Chap

Edited by Guest
Link to comment
Share on other sites

Yes... used a two-pass import.

Use a flat FM table ("flatfile") to copy the external file into. Means we only have to ask user ONCE where the input file is. :

Then import once from flatfile into LineItems; remove duplicates from flatfile based on OrderNo (which is kindly provided by the external file); import flatfile again, this time to Invoices.

Thanks!

Link to comment
Share on other sites

This topic is 6604 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.