Community-Credit.com | NonProfitWays.com | SOAPitstop.com   Skin:   
      User: Not logged in 
Home
Newsletter Signup
XSLT Library
Latest XML Blogs
Featured Examples
Presentations
Featured Articles
Book Chapters
Training Courses
Events
NewsGroups
 
Discussions
Examples
Tutorials
Tools
Articles
Resources
Websites
 
Sign In
My Profile
My Articles
My Examples
My Favorites
My Resources
Add a Resource
Logout
 
About Me
My Blog
HeadGeek Articles
Talking Portfolio
Resume
Pictures
World Trip Pics


Resources

 ADO.NET (5)  OTA (47)  WAP (4)  XMLHTTP (1)
 Database (31)  Pattern (3)  WebDAV (57)  XMPP (28)
 Debugging (15)  RDF (53)  WebService (195)  XPath (142)
 DIME (6)  RSS (24)  WML (148)  XPointer (36)
 DOM (83)  SAX (80)  WSDL (133)  XQL (23)
 DTD (136)  Schema (209)  XAML (1)  XQuery (99)
 ebXML (106)  SMIL (119)  XBRL (201)  XSchema (18)
 Flash (21)  SOAP (165)  XForms (141)  XSL (133)
 Humor (1)  SQL (4)  XHTML (388)  XSL-FO (78)
 Java (636)  SQLXML (47)  XLL (7)  XSQL (44)
 MathML (124)  SVG (721)  XML (857)  XUL (21)
 Oracle (19)  VoiceXML (84)  XML.NET (16)

Total Resources: 5,510

 


database Resources
Prev Next
1 2
 
Oxygen XML Editor
Oxygen offers support for importing database data, MS Excel files and text files into XML documents, that can be further converted into other formats using the Transform features. The user can examine the database contents and select the table to be exported using the database browser. It is possible to refine the data source by editing the generated SQL select statement in order to join multiple tables or to use advanced SQL expressions. Oxygen can generate an XML Schema from the database structure.

Type: Database  #Views: 580  Category: Resource    

IBM moves the database goalposts
Analysis At its annual analyst conference last week, IBM announced its next generation database. The big news is that this will not be a relational database. Or, to be more accurate, it will not just be a relational database.

Type: Database  #Views: 1108  Category: Resource    

Hands On: Cross-DB Resource Guide for Devs
More and more often, enterprise developers of all stripes (Java, VB/.NET, C++, etc.) are asked to build cross-database access for applications and end users. A growing list of methods to exploit features and libraries in JDBC, OBDC, ADOdb, JDO, SQL and XML are available to developers for such one-off integration projects.

Type: Database  #Views: 881  Category: Resource    

Comparison of object and relational concepts
A comparison of relational and object model techniques is shown in the following table

Type: Database  #Views: 419  Category: Resource    

Comparison of object and relational terminology
This figure presents a comparison of some basic terms used in relational and object technology...

Type: Database  #Views: 401  Category: Resource    

Inheritance in database
Inheritance in the object model is a means of defining one class in terms of another. This is common usage for most of us. For example, a conifer is a type of tree. There are certain characteristics that are true for all trees, yet there are specific characteristics for conifers.

Type: Database  #Views: 479  Category: Resource    

Encapsulation in a database
Encapsulation is the object model concept of including processing or behavior with the object instances defined by the class. Encapsulation allows code and data to be packaged together. The definition of methods for a class is an integral part of encapsulation. A method is programming code that performs the behavior an object instance can exhibit. Calculating the age of a person would be an example of such behavior.

Type: Database  #Views: 497  Category: Resource    

Data Abstraction
Data abstraction is the process of distilling data down to its essentials. In an object schema, the abstract data model is implemented as a graph. The following figure shows such a graph structure for a genealogical database. For more information on data abstraction, see the items under "more detail" below.

Type: Database  #Views: 470  Category: Resource    

Object or instance locking
Instance locking locks a single relational tuple in an RDBMS or a single object in an ODBMS. This type of concurrency control is illustrated below.

Type: Database  #Views: 557  Category: Resource    

Class or table locking
Class or table locking means that all instances of either a class or table are locked, as is illustrated below. This shows one form of concurrency control. Note the circle at the lower left. It represents all instances of a class, regardless of the page where they are stored.

Type: Database  #Views: 413  Category: Resource    

Cluster locking
Cluster locking or container locking for concurrency control is illustrated in the figure below. In this form of locking, all data clustered together (on a page or multiple pages) will be locked simultaneously. This applies only to clusters of objects in ODBMSs. Note that in this example, the cluster of objects spans portions of three pages.

Type: Database  #Views: 473  Category: Resource    

Page locking
Page locking (or page-level locking) concurrency control is shown in the figure below. In this situation, all the data on a specific page are locked. A page is a common unit of storage in computer systems and is used by all types of DBMSs. In this figure, each rectangle represents a page. Locking for objects is on the left and page locking for relational tuples is on the right. If the concept of pages is new to you, just think of a page as a unit of space on the disk where multiple data instances are stored.

Type: Database  #Views: 516  Category: Resource    

Concurrency control and locking
Concurrency control and locking is the mechanism used by DBMSs for the sharing of data. Atomicity, consistency, and isolation are achieved through concurrency control and locking.

Type: Database  #Views: 470  Category: Resource    

Durability
Maintaining updates of committed transactions is critical. These updates must never be lost. The ACID property of durability addresses this need. Durability refers to the ability of the system to recover committed transaction updates if either the system or the storage media fails. Features to consider for durability:

Type: Database  #Views: 376  Category: Resource    

Isolation
The isolation portion of the ACID properties is needed when there are concurrent transactions. Concurrent transactions are transactions that occur at the same time, such as shared multiple users accessing shared objects. This situation is illustrated at the top of the figure as activities occurring over time. The safeguards used by a DBMS to prevent conflicts between concurrent transactions are a concept referred to as isolation.

Type: Database  #Views: 387  Category: Resource    

Consistency
Consistency is the ACID property that ensures that any changes to values in an instance are consistent with changes to other values in the same instance. A consistency constraint is a predicate on data which server as a precondition, post-condition, and transformation condition on any transaction.

Type: Database  #Views: 503  Category: Resource    

Atomicity
The phrase "all or nothing" succinctly describes the first ACID property of atomicity. When an update occurs to a database, either all or none of the update becomes available to anyone beyond the user or application performing the update. This update to the database is called a transaction and it either commits or aborts. This means that only a fragment of the update cannot be placed into the database, should a problem occur with either the hardware or the software involved. Features to consider for atomicity:

Type: Database  #Views: 618  Category: Resource    

ACID properties
ACID properties are an important concept for databases. The acronym stands for Atomicity, Consistency, Isolation, and Durability.

Type: Database  #Views: 494  Category: Resource    

Lack of impedance mismatch
Object DBMSs allow you to store objects directly without any mapping to different data structures. Relational DBMSs require mapping from objects to tables. This mapping to different data structures is called "impedance mismatch." The figure below shows direct storage at the left and impedance mismatch at the right.

Type: Database  #Views: 491  Category: Resource    

Transparent persistence
Transparent persistence in object database products refers to the ability to directly manipulate data stored in a database using an object programming language. This is in contrast to a database sub-language used by embedded SQL or a call interface used by ODBC or JDBC. Using an object database product means that you have higher performance and less code to write.

Type: Database  #Views: 325  Category: Resource    

Prev Next
1 2


Fans of "The Office"
Dwight Bobbleheads are here!

  “It's me! I'm the bobblehead! Yes!”



Advertise on XMLPitstop

Advertise on XMLPitstop


EggHead Cafe
Web Servicee development
DotNetSlackers
it outsourcing
online fax service
UK conference call service
Ink
Conference Call
Video Surveillance
MailCleaner Spam Gateway
Exchange Hosting

2,846 Total Members
32 members(last 30 days)
8 members(last 7 days)
1 members(today)

1,905 Total Discussions
6 Posts(last 30 days)
3 Posts(last 7 days)
0 Posts(today)

47,487 Total Blog Posts
0 Blogs(last 30 days)
0 Blogs(last 7 days)
0 Blogs(today)

8,699 Newsgroup Posts
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)

14,050 Total Resources
2 Resources(last 30 days)
1 Resources(last 7 days)
0 Resources(today)


 

David Silverlight's XMLPitstop.com| 2801 Florida Ave #225|Miami, FL 33133|Ph:305-447-1139