If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Database Concepts & Design > Pls help - how database write records?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-30-09, 00:20
RisBoW RisBoW is offline
Registered User
 
Join Date: May 2009
Posts: 3
Pls help - how database write records?

Hello!

Im pretty new in database world, so Im interested in the way the records are writenn in database, for example, in dBase. Is this happens cronologicaly, one by one, relaed to the time each record is created?
Reply With Quote
  #2 (permalink)  
Old 05-30-09, 10:45
Pat Phelan Pat Phelan is offline
Resident Curmudgeon
 
Join Date: Feb 2004
Location: In front of the computer
Posts: 12,605
The general answer is: Each database engine is free to choose how it will store data, and how it will access data. Some database engines always do given operations is a single way, but most will choose between multiple options to get the best overall system performance.

Specific answers require VERY specific analysis.

-PatP
__________________
In theory, theory and practice are identical. In practice, theory and practice are unrelated.
Reply With Quote
  #3 (permalink)  
Old 05-31-09, 02:07
RisBoW RisBoW is offline
Registered User
 
Join Date: May 2009
Posts: 3
Thank you for your answer, but I am confused.
Is it some kind of default setting that each new record comes after last one in the database?

How can one be sure that record X is created after or before record Y?
Reply With Quote
  #4 (permalink)  
Old 05-31-09, 02:13
RisBoW RisBoW is offline
Registered User
 
Join Date: May 2009
Posts: 3
And one more question, please:

What is ODBS, is it the way application communicate with database? Also, what is DBF flat file system? Can someone explain me this in few words?

Thank you in advance!
Reply With Quote
  #5 (permalink)  
Old 05-31-09, 10:57
Pat Phelan Pat Phelan is offline
Resident Curmudgeon
 
Join Date: Feb 2004
Location: In front of the computer
Posts: 12,605
Quote:
Originally Posted by RisBoW
Is it some kind of default setting that each new record comes after last one in the database?
It depends on the database engine, but in most cases you can't do that.
Quote:
Originally Posted by RisBoW
How can one be sure that record X is created after or before record Y?
This one is easy, since if the row doesn't have any data to allow you to determine the order in which it was received, there isn't a reliable way to tell.
Quote:
Originally Posted by RisBoW
What is ODBS, is it the way application communicate with database?
I don't recognize ODBS as a database related acronym. An OODBMS is an Object Oriented Database Management System which can be either an OOP wrapper for standard database calls or a full-blown OOP database which is a whole different kind of thing.[quote=RisBoW]A "Flat File" database is a VSAM file oriented database, meaning that the records stored are in a single file and all records have uniform size. Most flat file databases support but do not require indicies.

-PatP
__________________
In theory, theory and practice are identical. In practice, theory and practice are unrelated.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On