Viewing 8 posts - 1 through 8 (of 8 total)
First of all you are correct, the '' in the middle name should be nulls.
In regards to identifying an individual I have to make some choices here. So if it...
September 14, 2011 at 1:24 pm
Sorry About that. Bad pasting job
CREATE TABLE [#CustomerInfo](
[CustRowID] [int] NULL,
[CustFuzzyGroup_Key_Out_ID] [int] NULL,
[CustLocID] [int] NULL,
[CustNo] [varchar](17) NULL,
[FirstName] [varchar](25) NULL,
[MiddleName] [varchar](25) NULL,
[LastName] [varchar](40) NULL,
[AddressLine1] [varchar](45) NULL,
[City] [varchar](35) NULL,
[State] [varchar](3) NULL,
[ZipCode] [varchar](10) NULL,
[CellPhone]...
September 14, 2011 at 1:16 pm
Thanks for the help that did the trick. I eventually had to Convert it back to an integer but that got it in the right format.:-)
September 1, 2010 at 9:30 am
Thanks for the help and advice. Your solution worked fine. I am also investigating the use of APPLY.
August 18, 2010 at 8:30 am
Lutz, thanks for your reply. I think your approach will work best for my situation. I need the Product codes in separate columns to do some additional processing for comsumption...
April 16, 2010 at 8:00 am
Lynn, thanks for the response I like your approach. Thanks for the links to the articles. In my situation I think I will you the CTE approach presented by Lutz....
April 16, 2010 at 7:57 am
The flat file's only purpose is consumption by the legacy system. I am performing other processing in SQL Server that I did not list. Such as calculating Order totals, spliting...
April 16, 2010 at 7:40 am
Thanks for the info!
This is my first post so I apologize for any lack of etiquette.
Your never too old or too young to learn new things and ideas.
October 9, 2008 at 11:02 am
Viewing 8 posts - 1 through 8 (of 8 total)