Viewing 15 posts - 16 through 30 (of 41 total)
Jeff Moden (3/17/2015)
March 18, 2015 at 8:33 pm
Attached is a smaller version of the file that I'm using. I opened it in notepad++, edited it and saved it as a .txt file so I could upload...
March 17, 2015 at 12:33 pm
I'm still trying to figure out how to make this data into columns. Is it not possible with "DelimitedSplit8K"? Should I use something else? Is there something...
March 17, 2015 at 6:47 am
@Ed Wagner
your code example makes the data into rows, not columns. How do I use this to make columns?
March 14, 2015 at 3:48 pm
So, my other option. If I just import the file into one columnCREATE TABLE BULKACT(RAWDATA VARCHAR (MAX))
BULK INSERT BULKACT FROM 'C:\ftp\NAV830.curr' then I can only import the rows where...
March 11, 2015 at 8:53 pm
Lowell (3/11/2015)
three from your screenshot:
OHD record
HDR record
DTL record(s) that are related to the HDR row...
March 11, 2015 at 3:18 pm
How do I "fill up your shorter lines with extra field terminators so every row has 18 columns"?
Another alternative I was thinking was to import all of this data into...
March 11, 2015 at 5:12 am
Okay so now that I figured out how to add images I edited my last post. Please look it over and let me know what I'm missing.
March 10, 2015 at 6:11 pm
That screenshot is exactly what notepad++ shows for my file "CRLF" but when I tried \r it didn't work. Maybe there's something more in my process or maybe I'm...
March 10, 2015 at 10:19 am
Great! I changed varchar(100) to varchar(1000) and it works without errors but I'm still not finding the rowterminator. I've tried
\r
\r
\r
char(10)
0x0a
and none of them seem to be able...
March 10, 2015 at 8:32 am
Okay so I'm running the following code to import my asterisk delimited file.
/* CREATE TEMP TABLE */
IF OBJECT_ID('tempdb..#tblhdr830') IS NOT NULL DROP TABLE #tblhdr830
CREATE TABLE #tblhdr830(A1 varchar (max) not null
...
March 10, 2015 at 7:47 am
@ Ed Wagner
That's my point, it's too huge to recover to another database just for one table. It would take forever. I have about 80% of...
February 14, 2015 at 5:23 am
bump
Does my post make sense? Is this a possibility? How can I bring over the selects that are selected but only if not all are selected?
September 28, 2014 at 9:25 pm
Bump
I'm still looking to see if there's a way to repeat the headers of the table for every Group? Is this possible?
September 16, 2014 at 8:11 pm
Ville-Pekka Vahteala (8/28/2014)
I understood that you want to have second detail row for val5 for each detail row. If this is...
August 29, 2014 at 2:36 pm
Viewing 15 posts - 16 through 30 (of 41 total)