Viewing 7 posts - 1 through 7 (of 7 total)
Hi Jeff,
Yes I will most definately let you know how long it takes. I am going to start on it tonight.
December 11, 2009 at 8:29 am
Hi Jeff,
Thanks for your continued interest. I am reassured by the term "staging table". It suggests that this technique is used quite often when importing data.
To give you more information,...
December 11, 2009 at 3:50 am
Hi Jeff,
Thanks for your feedback.
I am at the point where I need to make a decision. I have 2 choices:
1. Use bulk insert - However I need to run...
December 10, 2009 at 7:58 am
Ok I got a solution:
INSERT INTO
xTest2
(Numeric1,Field1,Field2,Field3,Field4,Field5,Field6,Field7,Field8)
SELECT
Numeric1,Field1,Field2,Field3,Field4,Field5,Field6,Field7,Field8
FROM OPENROWSET ('MSDASQL','Driver={Microsoft Text Driver...
December 10, 2009 at 4:38 am
Hi Jeff,
I managed to get the OPENROWSET to work using the following
SELECT *
FROM OPENROWSET
('MSDASQL','Driver={Microsoft Text Driver (*.txt; *.csv)};DefaultDir=C:\Files\CSV','SELECT * FROM example3.csv')
How do I adjust the above script to copy...
December 10, 2009 at 3:59 am
Hi Jeff,
Thanks for this. I have never come across this method before and this does look promising.
I have a few questions if you would kindly respond to:
1. I am using...
December 10, 2009 at 1:53 am
Since my last post I have figured out that I could use a format file.
Here is another example CSV file which better illustrates what I am referring to:
---------------------------
ID,TextField1,TextField2
23,This is some...
December 9, 2009 at 3:04 am
Viewing 7 posts - 1 through 7 (of 7 total)