Viewing 15 posts - 346 through 360 (of 938 total)
noeld (3/20/2008)
March 20, 2008 at 10:38 am
You could load the entire file into a single VARCHAR(MAX) column and use SUBSTRING to split it up on the server or you may be able to find some functionality...
March 20, 2008 at 10:36 am
This could just as easily (perhaps more easily) be done by pumping the raw XML into a staging table column and using the native SQL Server XML data type's .nodes()...
March 20, 2008 at 9:21 am
Hi johnr,
The sample you posted appears to have row delimiters in it. If there are no row delimiters at all, and the file looks like this:
TEST1ABCTEST2DEFTEST3 TEST4GHI
Then...
March 19, 2008 at 7:40 pm
johnr (3/19/2008)
I get these files which are basically text streams and they...
March 19, 2008 at 5:11 pm
JJ B (3/19/2008)
March 19, 2008 at 2:46 pm
That shouldn't be a problem with comma-separated lists of numbers, but for character data it could present a problem. You might be able to use the TYPE directive to...
March 19, 2008 at 2:18 pm
Jeff Moden (3/6/2008)
Mike C (3/6/2008)
March 6, 2008 at 9:36 pm
Jeff Moden (3/6/2008)
I don't believe it was meant to... wasn't advertised that way except maybe by a slightly misleading title.
Yes, catchy title. When I first clicked on it I...
March 6, 2008 at 9:16 pm
Charles Kincaid (3/6/2008)
March 6, 2008 at 7:28 pm
paul.ibison (3/6/2008)
all due respect but I think you're missing the point.
Judging by some of the questions, some others (Jeff apart) have also never really tried to solve this problem...
March 6, 2008 at 12:53 pm
This looks like a traditional header/footer formatted text files. It doesn't seem to account for additional information in the header and/or footer that applies to all rows nested within...
March 5, 2008 at 10:06 am
michael.rosquist (2/27/2008)
Using identity as PK is bad.
Having a table like this:
CREATE TABLE Countries
(CountryID INT IDENTITY PRIMARY KEY,
CountryName VARCHAR(50) NOT NULL)
If I were Joe Celko I...
February 27, 2008 at 2:22 pm
Unfortunately for me I've never been good at office politics 🙁 I see people on the job scheming and plotting to get ahead all the time. While it's incredibly...
February 21, 2008 at 10:43 pm
This is an interesting idea, and I think I get the author's point - why use the FTS "sledgehammer" for simpler tasks that don't require all the extra functionality? ...
February 20, 2008 at 10:40 pm
Viewing 15 posts - 346 through 360 (of 938 total)