Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
100csc
Starting Member
1 Post |
Posted - 2009-03-23 : 13:04:46
|
hiI wil be geting daily aroun 40,000 of xml files i am asked to create a package where it takes those files and saves into Db in table 1 and once they are savedin DB tht whole xml file should be saved as image in another table2 in sqland once this is done all the files must be delectedI created half where i used for eeach loop and data flow task n file taskthis package takes all the xml files and saves into Db into table 1and deletes those filesI need to know how those files can be saved in table 2 as imagei am giving the table 2 descCREATE TABLE table 2( [ID] [INT] NOT NULL, [FileName] [nvarchar](max), [DATA] [image] , [time_stamp] [smalldatetime] NULL DEFAULT (getdate()), [active] [bit] NULL DEFAULT ((1))) thankyou |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2009-04-15 : 18:05:52
|
Why are you using IMAGE datatype in favor of XML datatype? E 12°55'05.63"N 56°04'39.26" |
 |
|
|
|
|