July 17, 2008 at 4:31 am
Hi Friends,
I am good in T-SQL but new to XML data type.
I am creating a SSIS Package in which I need to extract data from XML columns and save the data in SQL Server Table (Destination)
My Source Table Looks like:
TableName: EmpInfo
ID int IDENTITY,
EmpFirstName varchar(50)
EmpMiddleName varchar(50)
EmpLastName varchar(50)
Details XML
here, Details feilds contains information like Local Address, Permanent Address, Phone No etc.
My Destination Table Looks like:
TableName: EmpInfo
ID int IDENTITY,
EmpFirstName varchar(50)
EmpMiddleName varchar(50)
EmpLastName varchar(50)
LocalAddress varchar(50)
PermanentAddress varchar(50)
PhoneNo varchar(20)
Now, I think you got my point. I need to extract the first four columns as it is but remaing three columns from XML columns.
How I can do it in SSIS or even in T-SQL?
Thanks in advance 🙂
July 22, 2008 at 1:27 am
Hi Hari,
Is it possible to post your Details column xml structure???
---
July 22, 2008 at 1:46 am
USE [AdventureWorks]
GO
SELECT JobCandidateID,Resume FROM HumanResources.JobCandidate
-- Consider Resume column
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply