A flat-file database model is any system using a single file for storage with one record per line, usually plain-text or text mixed with binary data.

learn more… | top users | synonyms

0
votes
2answers
21 views

SQL Server table or flat text file for infrequently changed data

I'm building a .net web app that will involve validating an email input field against a list of acceptable email addresses. There could be up to 10,000 acceptable values and they will not change very ...
2
votes
1answer
49 views

Need custom order in flat file from XML using XSLT

I want to create a flat file from an xml using xslt with this output in the order as shown: NM1*CC*1*Smith*John****34*999999999~ N3*100 Main Street~ From this XML: <Claim> <Claimant ...
1
vote
3answers
62 views

Clojure: Store and Compile Large Derived Data Structure

I have a large data structure, a tree, that takes up about 2gb in ram. It includes clojure sets in the leaves, and refs as the branches. The tree is built by reading and parsing a large flat file ...
0
votes
1answer
31 views

SSIS Flat file import - rolling data

I need to import a flat file into a database table every hour, however the file itself is continuously updated by an application (file doesn't lock so that's no problem). What i need is to make sure ...
0
votes
0answers
34 views

Dynamically pulling .asc file data into sql database can any one help me with this scenario

I need some help from you all. I am trying to build a package where the requirement goes like this. There is text file which consits of just the column names, so here I am dumping this data into a ...
0
votes
1answer
31 views

XSLT iterate over flat file

Can you iterate over a flat file with XSL? I'd like to ls>myfile for each line of myfile apply-template
0
votes
0answers
5 views

Viewing database after import in visual studio?

I have a project in visual studio where I have a flat file that was imported into a OLE DB. Everything worked fine and the DB has some 9 million rows, so it's pretty large. The thing is I have never ...
0
votes
1answer
58 views

What is the best way to parse this flat text format in R?

1. ZFP112 Official Symbol: ZFP112 and Name: zinc finger protein 112 homolog (mouse)[Homo sapiens] Other Aliases: ZNF112, ZNF228 Other Designations: zfp-112; zinc finger protein 112; zinc finger ...
0
votes
0answers
45 views

How to create a flatfile from a series of tables in Access?

I have a series of tables in an Access 2007 database. I am trying to find a way of outputting a flat-file to an excel spreadsheet that combines all of the tables so that each row of the flatfile ...
1
vote
2answers
68 views

Export tables to Flat File with some logic

I'm writing scripts to export some tables to flat files every day. I'm looking at the BCP utility, but I'm not sure it has the kind of features I really need. For example, I need to output the ...
0
votes
0answers
51 views

ffdfappend crashing R

I'm a bit of an R newbie but I'm trying to use the acast,ff,ffbase packages to create a pretty large R object (5 mil rows x ~17k cols) - after a SQLServer dataset has been brought in and been melted ...
1
vote
0answers
131 views

How to return multiple values from unconnected lookup?

In my mapping, I am using flat files as source and target. I have to use unconnected lookup. Can somebody tell me how to return multiple values from unconnected lookup specially when we are using flat ...
1
vote
2answers
84 views

Export null values to Flat file Source

I have a package which will export data from a table into flat file destination. In another server the exported text file will import into a table. What actually my problem is , the package should ...
0
votes
1answer
88 views

Relational flat-file database

For a small application, need to use a flat file database with relational capabilities (2 or 3 tables). Couple questions regarding this schema: Does such databases exist? Any performance hits with ...
0
votes
0answers
126 views

importing data from tab delimited file into sql server 2005

I'm trying to import a text file into Sql Server. The file is tab delimited and uses double quotations as a text qualifier. One of the fields in the text file is a note field and every now and then ...
0
votes
1answer
26 views

Writing large volume of web post requests to flat files (File based Queuing )

I am developing a Spring Based Web Application which will handle large volume of requests per minute and this web app needs to respond very quickly. For this purpose, We decided to implement a ...
3
votes
3answers
89 views

Flat file normalization with a dynamic number of columns

I have a flat file with an unfortunately dynamic column structure. There is a value that is in a hierarchy of values, and each tier in the hierarchy gets its own column. For example, my flat file ...
0
votes
2answers
220 views

Running a script component before writing data to a flat file in SSIS

In my SSIS package I need to modify the flat file name that will get creted at the last step of my data flow execution. Currently, I need to transit input data though the Script Component + do a code ...
1
vote
2answers
97 views

If PHP text file line equals, then do something

I am saving the state of a checkbox to a text file and reading it back in to show either a checked or non-checked box. The saving part is no problem - depending on whether I check or uncheck the box ...
-3
votes
2answers
303 views

How would I store JSON data in a flat file database? [closed]

I need to store some data in a JSON file. I know how to use json_encode but I can't find any information on how to write the encoded data into an external file. Here's a pice of code that prints out ...
2
votes
1answer
80 views

Reading tab and newline delimited (multi-dimensional) flat-file database

Apologies if this may be a simple question, I haven't worked with flat file databases before and finding this pretty non-intuitive. I have a flat file, tab \t and \n new line delimited database as ...
0
votes
2answers
113 views

How to view the ConnectionString value of Flat File Connection while debugging?

There seem to be 2 ways to set up the connection string in FlatFile connection properties: Using ConnectionString property Using ConnectionString expression Which one will be used? Is there any ...
0
votes
1answer
94 views

flat file blog engine powered by asp.net

Regarding blog engines, are there any blog engines that meet all of the following criteria? exists in the asp.net ecosystem flat file option to edit files as raw html (not markdown) actively ...
0
votes
1answer
92 views

Batching line-item data using Flat-File

I have to parse a CSV flat-file containing only line item data, with no recognisable header record, kinda like this: 930001,14-02-2013,100.00,1,Line 1,2,10.00,20.00 930001,14-02-2013,100.00,2,Line ...
2
votes
3answers
80 views

Reading text file

We have a a supplier that each Monday sends a list of new Devices/Parts these are then manually entered into a database. I'd like to use PHP to read this file and update the appropriate datebase ...
0
votes
1answer
251 views

How to load data from a single CSV file into multiple tables with relations? [duplicate]

I have a CSV file which I need to load into a SQL database. The issue is, that i need to split some Data into different tables. During the load I need to make sure, that when the first part is loaded ...
0
votes
1answer
188 views

How can I save a rolling flat file trace listener on another machine in LAN?

Hi I'm using Enterprise Library 5, I defined rolling flat file trace listener, to save my logs to a file, how can I address this file to be saved on another machine on LAN?
1
vote
3answers
834 views

How to prevent SSIS from truncating the last field of the last data row in a flat file?

I have an SSIS package thats unzips and loads a text file. It has been working great from the debugger, and from the various servers its been uploaded to on its way to our production environment. My ...
1
vote
1answer
228 views

How to import a flat file without changing regional settings on the deployment server?

I am trying to read a text file in SSIS (2005/2008). I created a connection to the file and placed flat file source, and it works fine in preview but when I try to run I get error saying: [Derived ...
0
votes
1answer
275 views

How to transfer data from Excel spreadsheet to flat file without column headers?

Got a simple data flow in SSIS with excel source and flat file destination. The headers in excel are on first row and in SSIS I've the 'first row has headers' ticked in excel connection manager. In ...
0
votes
2answers
110 views

Where to store flat files in CakePHP?

I am building an application that allows a user to browse html templates. The html template will be displayed in a preview area (source code will be obfuscated), and although the template will contain ...
0
votes
0answers
47 views

Batch - Incrementing file name from archive

I have a folder with archived files, IE 20130122TCA_1.txt, 20130122TCA_2.txt,20130122TCA_4.txt etc. I would like any new file created that day to continue the naming schema. If its on a new day it ...
0
votes
1answer
340 views

BizTalk flat file output schema - Test Map gives Output validation error: The element 'Root' has invalid child element 'Record'

I have a fairly simple flat file schema that just generates CSV, or at least it is supposed to. It has a Root node which is delimited by CRLF, and then a Record node which is delimited by comma, and ...
0
votes
1answer
49 views

How to output a String with JRecord

I am trying to convert a XML/Bean (either one) to a fixed length flatfile with JRecord. I am not able to output it correctly to a String in file. I can only get an output as binary. So I will just ...
-1
votes
3answers
83 views

Example of data access in java or a similar lang [closed]

Can someone post or point out an example of how flat-file data access is done in java? What java technology is used for the purpose? how rdbms data access is done in java? What java technology is ...
2
votes
2answers
317 views

BizTalk flat file schema - produce XML file even if blank flat file received

I am using the BizTalk flat file schema to process CSV files. My schema essentially looks like this: <?xml version="1.0" encoding="utf-16"?> <xs:schema ...
2
votes
3answers
139 views

Best practices for storing the schema of delimited text files

I am writing a program that parses several delimited flat files from which it needs several of the columns. I am not sure of the best way to make my code easy to maintain/update in the event of future ...
1
vote
1answer
57 views

sql routine to export separate txt files

I have an sql query which is a pricelist that i normally run 18 different times for 18 different clients. I have a @varchar as as declaration and I change the customerID. This then exports a txt ...
0
votes
2answers
38 views

Create value with specific parts of a text file

Ok, I am working on a flatfile shoutbox, and I am trying to achieve a way to get the username from the flatfile and making it a variable so I can use it to make a call to the database to check if the ...
1
vote
3answers
134 views

PHp - submit page returns Internal Server Error

I'm making a flat file login system and when I click the submit the button on the login.php page it goes to protected.php and returns Internal Server Error, but when I just load the protected.php page ...
0
votes
1answer
104 views

FlatFile Processing

I have a flat file which contain data with Fixed length,Is there any good approach to parse the data and splitting the lines using a regular occurrence,ie for every occurrence starting with "02" ...
1
vote
1answer
113 views

Subset a ffdf object (subset vs ffwhich)

I am performing a subset of a large ffdf objects and I noticed that when I use subset.ff it is generating a large number of NAs. I tried an alternative way by using ffwhich and the result is much ...
0
votes
1answer
69 views

Replace NAs in a ffdf object

I`m working with a ffdf object which has NAs in some of the columns. The NAs are the result of a left outer merge using merge.ffdf.I would like to replace the NAs with 0s but not managing to do it. ...
1
vote
2answers
249 views

Get difference to previous date in ffdf object

sometimes ago I asked the following question: I have a list of deals with trading day and market value. Every (Trading)day new positions come into the list but the old one never disappear ...
0
votes
1answer
1k views

getting null values while loading the data from flat files into hive tables

I am getting the null values while loading the data from flat files into hive tables. my tables structure is like this: hive> create table test_hive (id int,value string); and my flat file is ...
1
vote
1answer
275 views

Automating Excel Work - flat files into excel spreadsheet

I have a master Excel spreadsheet and I am updating this every day with 10 flat files for 10 different tabs. So, every morning I am opening my excel spreadsheet, deleting yesterday's tabs and putting ...
3
votes
1answer
240 views

SSIS Flat File - How to handle file versions / generations

I am working in a data warehouse project with a lot of sources creating flat files as sources and we are using SSIS to load these into our staging tables, we are currently using the Flat File Source ...
2
votes
1answer
775 views

Import Text File with irregular header lines through SSIS

I have a file like as seen below; please help how to import it through SSIS.The problem comes how to skip the starting lines as the rest of the file has all columns tab separated.Also i need some ...
0
votes
2answers
332 views

Why is the variable in a package assigned to scope of another package in the solution?

So I've updated the DB source query in an SSIS package. But now the package fails at the destination. In debug, I get this output: The file name property is not valid. The file name is a device or ...
0
votes
3answers
1k views

How to dynamically give flat file source file name in session properties of informatica?

i have an issue where i get flat file with date and time extension to flat file name like test_28-10-2012.txt I can get the flat file name in mapping through checking the ...

1 2 3 4 5 6