Questions tagged [flat-file]

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.

A "flat file" is a plain text or mixed text and binary file which usually contains one record per line or 'physical' record (example on disc or tape). Within such a record, the single fields can be separated by delimiters, e.g. commas, or have a fixed length. In the latter case, padding may be needed to achieve this length. Extra formatting may be needed to avoid delimiter collision. There are no structural relationships between the records.

Typical examples of flat files are /etc/passwd and /etc/group on Unix-like operating systems. Another example of a flat file is a name-and-address list with the fields Name, Address, and Phone Number.

Source: Wikipedia (Flat file database)

830 questions
-1
votes
1 answer

FlatFile Source in SSIS

In My Flat File source, i want to transfer all these data in OLDEDB. But I want to DIVIDE data into different tables. Example. Table one starts in first %F and ends before another %F in col[0]. And table two starts in second %F with different…
-1
votes
2 answers

Accessing static data

What is the best way to access static data for an Android app Information about the data Will be read-only, the user cannot change it Data will consist of an ID, and a few words/short phrases It won't be huge: maximum of about 1000 words/short…
Code Vader
  • 739
  • 3
  • 9
  • 26
-1
votes
2 answers

Any detached/independent Session Library in PHP using Flat File or MySQL?

Any detached/independent Session Library in PHP using Flat File or MySQL?
Viet
  • 17,944
  • 33
  • 103
  • 135
-1
votes
1 answer

Import flat-file fixed width - suggestions

I am reading a flat file (fixed width fields) so that I can import it into SQLServer. This is a new project in my company. I have not yet worked on parsing huge files in the most time-efficient and quick way. Scouring on the Internet, I have found a…
DataRiver
  • 188
  • 1
  • 8
  • 21
-1
votes
3 answers

Example of data access in java or a similar lang

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 used for the purpose?
The-Droidster
  • 635
  • 7
  • 13
-2
votes
3 answers

multidimensional array php flat-file

I am upgrading the way my website runs, I have already integrated mant php scripts in pages, but I am trying to develop fully php based site, eg, instead of loading urls: url/events/event-1 url/events/event-2 ^^^ 2 seperate pages I am trying to…
DJ-P.I.M.P
  • 105
  • 2
  • 6
  • 15
-2
votes
1 answer

PHP: performance oriented way of storing variables in a flat file?

I'm looking to store some basic information (just simple variables, not a database) which doesn't require any security (simple strings stored for case sensitivity, lets me skip a MySQL query to improve performance). I'm looking for quickest way to…
John
  • 1
  • 13
  • 98
  • 177
-2
votes
1 answer

Create nested json lines from pipe delimited flat file using python

I have a text file pipe delimited as below. In that file for same ID, CODE and NUM combination we can have different INC and…
Koushik Chandra
  • 1,565
  • 12
  • 37
  • 73
-2
votes
1 answer

Fetch server-side file says javascript not enabled

This has been driving me insane, because it seems simple, but has been a nightmare to figure out. I have a vue application which has been using canvas to draw images. I intend to have an API dictating what 'kind' of image it should display…
-2
votes
1 answer

Read a large txt file in php

I'm using a txt file as a database for a project. I read it, convert it to an array with a delimiter, and process the arrays (as id, title, text..) But now, i will have to add large chunks of text in my text database, and i'm a litle concerned, that…
Giannis
  • 49
  • 6
-2
votes
1 answer

BizTalk Flatfile schema wizard multiple repeating records with optional records

BizTalk Flat File Schema Wizard: I have the following sample file with IN2 and RS2 occurring only in some instances i.e., optional. I tried by creating a record and grouping all the nodes under it, but no luck. Please help. PAT614604002 …
-2
votes
2 answers

How to read data from the URL in PHP?

Just as an example: http://domain.com/main.php(then the database file here). I'm not sure what that is even called, but I can't find anything on it.
luvUI
  • 19
  • 4
-2
votes
1 answer

Java filename searching

I need to make a database for book storing. So what I want to do Is basically make a file for each book which I have done. Now I need to search books when I need them. In 2 functions I'll need to find the book and edit its information. I have no…
-2
votes
2 answers

Can I use the XML Validator Pipeline Component in BizTalk to validate Flat Files?

This is more of an academic question than a practical one, but I'm trying to gain a more in-depth knowledge of BizTalk. In this scenario I'm getting a FlatFile with a head line and then repeated entries. The consensus seems to be that in order to…
Ryanman
  • 880
  • 1
  • 8
  • 20
-2
votes
2 answers

NoSql, Sql or Flatfile

I've just started playing around with Node.js and Socket.io and I'm planning on building a little multi-player game. Probably something simple like each player has a character that they can run around in an arena and try and kill each other. However…
James
  • 2,609
  • 3
  • 20
  • 27
1 2 3
55
56