A database is a server, or storage spot were information is stored. The stored information can range from user information to settings. http://en.wikipedia.org/wiki/Database
A foreign key constraint is used to represent a relationship in a RDBMS (relational database management system).
The recovery-management component of a database system can support atomicity and durability by a variety of schemes. We first consider a simple, but extremely inefficient, scheme called the shadow copy scheme. This scheme, which is based on making copies of the database, called shadow copies, assumes that only one transaction is active at a time. The scheme also assumes that the database is simply a file on disk. A pointer called db-pointer is maintained on disk; it points to the current copy of the database. In the shadow-copy scheme, a transaction that wants to update the database first creates a complete copy of the database. All updates are done on the new database copy, leaving the original copy, the shadow copy, untouched. If at any point the transaction has to be aborted, the system merely deletes the new copy. The old copy of the database has not been affected. If the transaction completes, it is committed as follows. First, the operating system is asked to make sure that all pages of the new copy of the database have been written out to disk. (Unix systems use the flush command for this purpose.) After the operating system has written all the pages to disk, the database system updates the pointer db-pointer to point to the new copy of the database; the new copy then becomes the current copy of the database. The old copy of the database is then deleted.
SQL These are the main categories are DDL(Data Definition Language) DML ( Data Manipulation Language) DQL( Data Query Language) DCL( Data control Language) Data administration commands Transactional control command. ddl includes insert ,delete ,update values it include select statements, it include insert statement, it includes drop statements
explain loop structrunes
form_title=Database Design form_header=Transform your company by incorporating a new database design. What program will the database be used with?=_ Please explain what you will be using the database for?="" Do you have a database that you're already using?= () Yes () No
1 Explain architecture of Distributed Database systems? Also, explain the reasons for building distributed database systems?
chandranana explain the characteristic of database?
A relational database is a type of database that stores and organizes data in tables with a predefined structure. The purpose of creating a database is to efficiently store, manage, and retrieve data for various applications or systems. Databases help to ensure data integrity, enable data sharing, provide a structured way to store information, and support data analysis and reporting.
what are the disadvantages of centralized database system
explain how database makes paying for products on the internet possible?
SQL server, or a Structured Query Languange server, is Microsoft's relational database management system. As a server it provided different needs, like data warehousing and web-enabled databases.
Explain how designers use different construction features to help the user access information on websites
form_title=Database Design form_header=Transform your company by incorporating a new database design. What program will the database be used with?=_ Please explain what you will be using the database for?="" Do you have a database that you're already using?= () Yes () No
one is made by an onion and the other by a garlic
functions of DBA in DBMS
Data integrity: Ensuring that data stored in the database is accurate and consistent by enforcing constraints, such as unique keys and foreign keys, to prevent invalid data. Scalability: Allowing the database to efficiently handle growing amounts of data and user load by optimizing data storage, indexing, and query performance. Maintainability: Simplifying the process of database maintenance, updates, and modifications by using normalization, clear data modeling, and documenting database structures.