The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 views

MS Access Importing a csv Errors

Hi I am trying to import a csv and am having errors with the import. If there is a string for ex. " Hi, Hello" then it is treating it as Hi Hello in separate columns. Is there anyway to circumvent ...
2
votes
1answer
57 views

How to put a textfile into sqlite simply using Python API?

I have a tab delimited file in the format: sentenceID (sid) documentID (scid) sentenceText (sent) E.g. 100004 100 即便您喜爱流连酒吧,也定然在这轻松安闲的一隅,来一场甜蜜沉醉的约会。 100005 100 您可以慢慢探究菜单上所有的秘密惊喜。 I want ...
-1
votes
0answers
13 views

Extract lines with the same content in certain column? [closed]

I'm trying to extract specific lines (rows) in a tab delimited file. Contents are like below, and I only want to get lines with chr1 in the first column using linux command. Can anyone help me? chr10 ...
1
vote
6answers
68 views

reading columns of a tabdelimited file into variables

Given a tab delimited file in the following format, I need to perform operations on column-wise manner. The easiest solution that I know is to use pandas package, however my file being couple of ...
0
votes
2answers
27 views

Unix - Sort particular output

I need to sort this output: /dir1NameWithSpaces/dir2NameWithSpaces/dir3NameWithSpaces/File1_04092008/es3.sml: some content .... with words and symbols ...
0
votes
0answers
39 views

Empty Strings, Nulls, and Money types with SqlBulkCopy

I have some TAB delimited text files that I have to import to a SQL Server each month using an ASP.NET intranet page. I have been using the Generic Parser found here to import the files to DataTables ...
1
vote
1answer
70 views

H2 DB CSVREAD command converting value to date before placing into VARCHAR

I am attempting to load a tab delimited text file which contains a column of values which happen to look exactly like a date, but aren't. It appears that the CSVREAD command scans the row, converts ...
1
vote
4answers
104 views

Reading columns as lists

I have data in a txt file in the form. Tab-delimited data here a b c e f g tere x y z w t y I need to read the columns into lists. like col1 = ['here', '', '', tere, '', ''] ...
2
votes
2answers
212 views

reading tab delimited file into table

We read a tab delimited file into a DataTable with the following code. //read the uploaded file... var records = File.ReadAllLines(Server.MapPath("~/UploadFiles/") + Session.SessionID + ...
1
vote
2answers
126 views

Select data in a text file from a separate list - perl or unix

I have a massive tab delimited file like this: contig04733 contig00012 77 contig00546 contig01344 12 contig08943 contig00001 14 contig00765 contig03125 88 etc And I have a separate tab ...
1
vote
1answer
87 views

Can't Input Tab Delimited file to Stanford Classifier

I'm having a problem inputting tab delimited files into the stanford classifier. Although I was able to successfully walk through all the included stanford tutorials, including the newsgroup ...
2
votes
1answer
85 views

Value extraction from file in vb.net

The following is a piece of code which I use in my project: Using Reader As New Microsoft.VisualBasic.FileIO.TextFieldParser(OpenFileDialog1.FileName.ToString()) Reader.TextFieldType = ...
0
votes
3answers
50 views

I have a JSON object in a file that I stored in a variable, but I can't seem to do anything I want with it because it is nested inside of an array

My json file has contents formatted like this: [ { "id": 1, "keyword_filter": null, "name": "My Name ", "type": "some product", "sku": "1234567", "nested_obj": { ...
0
votes
3answers
129 views

How to ignore \t character inside double quotes using regex?

I am trying to parse a file using regex split, it works well with the '\t' character but some lines have the '\t' inside a field instead of acting as the delimiter. Like : G2226 TEST 1 C 29 ...
0
votes
2answers
290 views

splitting a large tab delimited file in python

I have a large tab delimited file containing about 1.4 million lines and 50 columns. Before I do anything with the data contained in the file I want to split this large file into about a few thousand ...
0
votes
0answers
28 views

In Adobe Acrobat Pro, how do i name a comment field?

In Acrobat, how do I name a Comment field so that I can attach variables to them? When I right click on the comment field and choose "Properties", under the "General" tab, I only see the options ...
0
votes
1answer
98 views

H2 column name select returning incorrect column name; “Column ”OUT_ID“ not found; SQL statement:”

I am using the H2 database, version "H2 1.3.170 (2012-11-30)" I have the following tab delimited file contents: in:value1:String out:id:Int out:description:String N/A 0 N/A Forced Available ...
0
votes
0answers
135 views

Loading Tab delimited File in 2D vector string in c++

This is my code to Read Tab delimited data from file and Load it into a 2D vector String vector <vector <string> > indexTable; int rowIndex,fieldIndex,rowSize; int rowIndexCount, ...
0
votes
0answers
55 views

In a large tab delimited file, get unique values of one field, sum their values in a second field

first post, I normally lurk, but I couldn't find anything that quite fit my situation. So, I have a large tab-delimited file (~3 billion lines) with two fields on each line. One is a string of fixed ...
0
votes
1answer
301 views

Copy in Postgres from a tab delimited file to table

I am working on a copy command to copy the contents of a tab delimited file with a header to a table in postgres. I have used copy before so I know how it works but I have a question regarding how I ...
0
votes
0answers
44 views

GNU Sort using TAB as field separator

I am using GNU sort (from GnuWin32) on Windows. I renamed it to "sort1.exe". The input text file has spaces and tabs but the fields are delimited by tabs. I tried with: sort1 -n -k2 -t "\t" file.txt ...
1
vote
2answers
324 views

How can I grep nth column of tab delimited file in Groovy?

My source file is tab delimited and I need to grep the 4th column of values. How can I do this in Groovy? Here's my code which doesn't work. Is it even close? def tab_file = new ...
0
votes
1answer
80 views

Concatenate selective columns in a tab delimited file into a key-value pair

I have a tab delimited file, for which I need to concatenate selective columns into a key-value pair. Let's say my first three columns stay the same, but after that, I can expect any number of ...
0
votes
2answers
204 views

load tab delimited data into mysql

I need to load a text file tabDelimited/csv directly into mysql as table. I am following the page (https://dev.mysql.com/doc/refman/5.5/en/loading-tables.html) for doing the same. testfile.txt ...
1
vote
2answers
205 views

python tab delimited retrieve column and delete empty lines

I have a tab delimited text file that is consists of two columns, something like: Apple123 2 Orange933 2 Banana33334 2 There maybe empty lines at the bottom. How can I: 1. Strip the empty ...
0
votes
1answer
85 views

Whats the right name for fixed position files?

You can structure data in various ways: for example comma separated or tab separated. But you can also structure data on positions. So, for example, the first 20 characters are meant for a phone ...
1
vote
1answer
743 views

how to create a Tab Delimited CSV?

I need to produce a Tab Delimited CSV of a query pulled from a mySql database. I am using MySQL Query Browser to extract the data as ordenery CSV. Does anyone know how to convert an ordinery -- ...
1
vote
2answers
83 views

search for specific row c++ tab delmited

AccountNumber Type Amount 15 checking 52.42 23 savings 51.51 11 checking 12.21 is my tab delmited file i would like to be able to search for rows by the account ...
1
vote
1answer
210 views

tab delimited file data to be stored into data structure

I'm reading in a tab delmited file into c++ and I want to manipulate the data. I was wondering what is a good data structure to store it in. Here is my tab delmited file: Account No. Name Address ...
1
vote
4answers
632 views

Tab-delimited flat file to SQL

I have a Tab-delimited flat file which i need to pull data from and update a table in my MS-SQL database. Does anyone have any details on how i would go about doing this? Maybe a site or a tutorial ...
0
votes
1answer
98 views

Importing Date Data as Text - Tab Delim to Access

I have a tab-delimited output from an outside program. One of the fields is (non-negotiable) is of #/#, that is 1/1, 1/2, 3/5 etc (represents part one of two, three of five etc). Access is wrongly ...
0
votes
1answer
233 views

Oracle SQL Developer Mac OS cannot bulk insert into SQL server database

I'm trying to import a set of flat files into an SQL server database. I downloaded and installed Oracle SQL Developer for Mac OS. I installed the proper plugin and can connect to the database fine, ...
2
votes
2answers
367 views

Python: How to extract floating point numbers from a text file with mixed content?

I have a tab delimited text file with the following data: ahi1 b/se ahi test -2.435953 1.218364 ahi2 b/se ahi test -2.001858 1.303935 I want to extract the ...
0
votes
1answer
316 views

Writing table to file using R results in unwanted row names column

I'm attempting to use R to merge data columns into one tab-delimited matrix. When I use the cbind() function, R for some reason adds a first column specifying row numbers, even though I did not ...
0
votes
5answers
2k views

Batch : change tab delimited to pipe delimited

Edit Question: Now, i can change from tab to pipe delimited. But the data have space after text. How to add code in bat to trim space? Original Question : I want to create nightly batch process to ...
2
votes
1answer
202 views

Importing data into Matlab from poorly formatted file

I have a large set of text files (tab delimited data) I need to parse. They are mostly well formatted. However, there are randomly interspersed rows that include erroneous characters, like what is ...
2
votes
2answers
164 views

Ugly tab delimited text file I want to “normalise”, attempting it via SQL

I have a huge text file of something like 11 million rows, I cant change this but I would like to be able to process it into a usable format. It is basically structured as: Field1 : Type of data ...
1
vote
2answers
69 views

Splitting lines into columns

I have a problem. Right now, a file that was supposed to be tab-delimited is missing a few "newlines"... My file looks something like this right now Field1 Field2 Field3 Field1 Field2 Field3 Field1 ...
0
votes
1answer
366 views

ASP.net VB HTTPS Post Tab Delimited File

I need to post a tab delimited file via the https post request. I need to be able to do this in asp.net VB. I have found various methods in C# however as I am still rather new to asp.net VB I ...
1
vote
4answers
2k views

Opening .dat (tab delimited file) in Excel, save as .xls

I am trying to open a .dat file in Excel, which is tab delimited, and then have it save out as a .xls file. So far, I can read in the file and save it as the .xls file but for some reason, all the ...
0
votes
1answer
146 views

How to remove header of unknown length using Python

Python beginner here. I am using the matplotlib library to make graphs from tab delimited text files. I want my script to be flexible, so that it can take different types of data file and turn them ...
0
votes
1answer
253 views

Sorting tab delimited file based on column in java

I have huge (approximately 4GB) text file that needed to be sorted. It is so huge that it has 6 thousand coumns and thousands of rows. It is very easy to sort with bash script. However, i am in need ...
0
votes
2answers
190 views

Format text file on OSX to tab delimited text file

I have a file that looks like the following, which is outputted from a program i wrote in applescript. "AXTitle: Blah AXSize: Width: 300 AXSize: Height: 44 AXPosition: X: 217 AXPosition: Y: 170 ...
0
votes
2answers
94 views

How can I get useful information from largest tab-delimited file with PHP?

I have following problem. I have tabdelimited file with more 100 000 records. On every row have 6 and more elements, but i want to get 2 elements from any row. Sample structure of the tabdelemited ...
0
votes
1answer
141 views

HTTP Post request with tab delimited field

I've been asked to set up a web service for account creation. The inbound HTTP Post request contains a single formatted field containing tab delimited fields with a header line wrapped in tags. ...
6
votes
2answers
2k views

selecting across multiple columns with python pandas?

I have a dataframe df in pandas that was built using pandas.read_table from a csv file. The dataframe has several columns and it is indexed by one of the columns (which is unique, in that each row has ...
3
votes
1answer
549 views

indexing several csv files with pandas from records?

I have a list of csv files ("file1", "file2", ...") that have two columns but do not have header labels. I'd like to assign them header labels and them as a DataFrame which is indexed by file and then ...
0
votes
1answer
54 views

Comparing&editing two tabdelimeted files with PHP?

I want to compare two tabdelimeted files. I take the files and converts them into two arrays with the following structure: Array 1 Array ( [0] => Array ( ...
2
votes
2answers
961 views

Truncating characters when importing with SAS

I have an Excel spreadsheet with company data and descriptions. Some of the cells basically contain mini-essays in them, pages and pages of straight text contained in a single cell. SAS has been ...
1
vote
1answer
878 views

python csv register_dialect

I am using the csv module in python to parse a delimieted file. I use the register_dialect method of csv to specify the deleimiter and other parameters. It was working fine all this while, but now I ...

1 2