Database: Database and Database Management Systems Essay

Submitted By Viper1993
Words: 1052
Pages: 5

A database is a table consisting ofcolumns (fields) and rows (records) where each column contains a specific attribute and each row features a certain value for the corresponding attribute. The number of columns within a single table depends on how many different types/categories of information we need to store within a database, while the number of rows is defined by the quantity of the objects that have to be introduced categorized records for. This kind of simple organization of the data in database tables allows for a computer program to quickly select and handle the necessary pieces of information.

Database management systems (DBMS)
The communication between databases and computer programs working with them is executed through a database management system (aka DBMS). The latter represents a set of software programs that accept data requests from the application program and instruct the operating system how to handle the requested information. This is done through a variety of control operations that a DBMS supports, such as organizing, storing, deleting or retrieving the data in a database. All these actions are executed through specific SQL commands. Users can also easily add new data categories/attributes to the database without causing any system interruptions. Database management systems work with all basic database models available such as the network model and the relational model.
• Define database architecture. Consider Microsoft®
Microsoft® SQL Server™ 2000 data is stored in databases. The data in a database is organized into the logical components visible to users. A database is also physically implemented as two or more files on disk.
When using a database, you work primarily with the logical components such as tables, views, procedures, and users. The physical implementation of files is largely transparent. Typically, only the database administrator needs to work with the physical implementation. Each instance of SQL Server has four system databases (master, model, tempdb, and msdb) and one or more user databases. Some organizations have only one user database, containing all the data for their organization. Some organizations have different databases for each group in their organization, and sometimes a database used by a single application. For example, an organization could have one database for sales, one for payroll, one for a document management application, and so on. Sometimes an application uses only one database; other applications may access several databases. It is not necessary to run multiple copies of the SQL Server database engine to allow multiple users to access the databases on a server. An instance of the SQL Server Standard or Enterprise Edition is capable of handling thousands of users working in multiple databases at the same time. Each instance of SQL Server makes all databases in the instance available to all users that connect to the instance, subject to the defined security permissions.
When connecting to an instance of SQL Server, your connection is associated with a particular database on the server. This database is called the current database. You are usually connected to a database defined as your default database by the system administrator, although you can use connection options in the database APIs to specify another database. You can switch from one database to another using either the Transact-SQL USE database_name statement, or an API function that changes your current database context.
SQL Server 2000 allows you to detach databases from an instance of SQL Server, then reattach them to another instance, or even attach the database back to the same instance. If you have a SQL Server database file, you can tell SQL Server when you connect to attach that database file with a specific database name.

Objectives These notes introduce the Oracle server architecture. The architecture includes physical components, memory components, processes, and