June 12, 2012 at 12:26 am
Clean the table from old values
- Get the new values in with format utf-8 from the .flat-files
- In case we have multiple loads
- Append the additional regions without cleaning the table
June 12, 2012 at 12:57 am
You need to give us more info than that - please post your table structure and some example data?
June 12, 2012 at 7:01 am
For these kinds of highly detailed specifications, my hourly rate is $300.00/hr (USD) open ended.
June 13, 2012 at 8:41 am
This'll wind up on the "watercooler" thread...
June 13, 2012 at 8:52 am
anand1310g (6/12/2012)
Clean the table from old values- Get the new values in with format utf-8 from the .flat-files
- In case we have multiple loads
- Append the additional regions without cleaning the table
Please read this article to see where you went wrong.
June 13, 2012 at 12:39 pm
anand1310g (6/12/2012)
Clean the table from old values- Get the new values in with format utf-8 from the .flat-files
- In case we have multiple loads
- Append the additional regions without cleaning the table
Clean the table from old values ----Use DELETE FROM 'Your table Name'
Get the new values in with format utf-8 from the .flat-files---- Use SELECT CAST (EX:SELECT CAST('000' AS NVARCHAR(10)) AS [record code].
In case you have multiple loads
Don't use----"DELETE FROM 'Your table Name".
Thanks
June 13, 2012 at 10:48 pm
you just need to assure that everything you are currently doing manually via the import tool will be handled by a procedure which can be somehow executed. You can use those stpes for your design. Mainly it is:
- Clean the table from old values
- Get the new values in with format utf-8 from the .flat-files
- In case we have multiple loads (e.g. FR)
o Append the additional regions without cleaning the table (e.g. MC and AD)
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply