<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3162336104011886282</id><updated>2012-02-16T04:36:03.197-08:00</updated><category term='csc 121'/><title type='text'>tinjoy kuli2y</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-5369689258799340202</id><published>2008-09-04T19:59:00.000-07:00</published><updated>2008-10-02T18:38:43.699-07:00</updated><title type='text'>CSC 121 As I see it 009</title><content type='html'>&lt;p align="center"&gt;&lt;span style="font-family:arial;font-size:180%;color:#999900;"&gt;&lt;strong&gt;Oracle Database&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;Making database in Oracle Database: &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;&lt;span style="font-family:arial;"&gt;1. Select the Database &lt;/span&gt;&lt;span style="font-family:arial;"&gt;Create Database Profiles&lt;/span&gt;&lt;span style="font-family:arial;"&gt; main menu item to create profiles for the existing databases.&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;&lt;span style="font-family:arial;"&gt;2. After you have created the required database profiles (&lt;/span&gt;&lt;span style="font-family:arial;"&gt;Create Database Profile Wizard&lt;/span&gt;&lt;span style="font-family:arial;"&gt;) they appear in the explorer tree on the left. Now you can establish connection to the database. If connection succeeds, the database node expands displaying the tree of its objects.&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color:#999900;"&gt;&lt;span style="font-family:arial;font-size:130%;"&gt;&lt;strong&gt;Creation of Oracle Tables:&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;&lt;span style="font-family:arial;"&gt;1. New tables are created within &lt;/span&gt;&lt;span style="font-family:arial;"&gt;Create Table Wizard&lt;/span&gt;&lt;span style="font-family:arial;"&gt;. In order to run the wizard you should either:-select the Object Create Database Object... main menu item;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;2. Select the Table icon in the Create Database Object dialog or select the Tables list or any object from that list in the explorer tree;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;3. Select the Create New Table... item from the popup menu or open and the Tables tab there;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;4. Press the Insert key or select the Create New Table item from the popup menu (alternatively, you may use the corresponding link of the Navigation Bar).&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;Note:&lt;/span&gt; In Oracle, you can only control read/write capability for an entire tablespace, not for a single table within a tablespace. So, if you want all the tables in a tablespace to be read-only, use the following command: &lt;/strong&gt;&lt;/span&gt;&lt;pre&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;ALTER TABLESPACE &lt;tablespace_name&gt; READ ONLY;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;To reverse the change and set all the tables in the tablespace back to read-write mode, use this code: &lt;/strong&gt;&lt;/span&gt;&lt;pre&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;ALTER TABLESPACE &lt;tablespace_name&gt; READ WRITE;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;Despite that limitation, you can simulate a read-only table by simply preventing all table modifications using a trigger. To do that, create a trigger as follows. &lt;/strong&gt;&lt;/span&gt;&lt;pre&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;SQL&gt; create or replace trigger emp_sal_read_only&lt;br /&gt;2 before insert or update or delete&lt;br /&gt;3 on emp_sal_tbl&lt;br /&gt;4 begin&lt;br /&gt;5 raise_application_error (-20001, 'Table EMP_SAL_TBL is read only,&lt;br /&gt;  You cannot make changes to the data.');&lt;br /&gt;6 end;&lt;br /&gt;7 /&lt;br /&gt;Trigger created.&lt;/strong&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div align="center"&gt;&lt;pre&gt;&lt;code&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:180%;color:#999900;"&gt;&lt;strong&gt;FileMaker Pro&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;pre&gt;&lt;span style="font-family:Arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;Making database in FileMaker Pro Database:&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;Note: Plan the database. Determine the purpose of the database and the information to be input into the database. &lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;Decide what specific fields are needed, what types of fields and how the database should look. &lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;Think about how the database may be used in the future and who should have access to the layouts, scripts and field definitions. &lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;1. Select the "File" menu and choose "New Database." If the "FileMaker Quick Start" screen appears, choose "Create Empty Database" and click "OK." Otherwise, the "New File" dialog box will appear. &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;2. Type a file name in the "New File" box. Be certain to give it a unique name; otherwise, the file name could overwrite another database. Navigate to the folder where the file will reside. Click "Save." The "Manage Database" box will appear. &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;3. Define a field by giving the field a name and determining any applicable options. Specify the field type, such as text or number. While FileMaker Pro will allow changing the type of field at a later date, there are restrictions on the type of information it will retain in the changed field. Continue defining the fields until all fields are entered. &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;4. Click "Done" when all fields have been defined. A basic layout with all the fields will appear. &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;Making tables in FileMaker Pro:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;1. Open Database Editor and the Tables tab there;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;2. Press the Insert key or select the Create New Table item from the popup menu (alternatively, you may use the corresponding link of the Navigation Bar). &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-family:Arial;color:#999900;"&gt;3. Type a table name in the pop up menu box. Be certain to give it a unique name; otherwise, the name could overwrite another table. Navigate to the folder where the file will reside. Click "Save." The table you've just created will appear. &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Arial;color:#999900;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align="center"&gt;&lt;span style="font-family:arial;font-size:180%;color:#999900;"&gt;&lt;strong&gt;SQLite&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;Making database in SQLite Database:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;1. Just click the "Create New Database" button from the main menu item.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;2. This will lead you to the Create Database Wizard &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;3. Once you have accomplish filling up some informations in the Wizard window, you have now your database.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;p&gt;&lt;span style="font-family:arial;color:#999900;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;Making tables in SQLite Database:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;Note:&lt;/strong&gt; In making tables, you must first connect to a database.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;To be conected just;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;font-size:130%;color:#999900;"&gt;1. Open the DB by simply double clicking it. For an example ill use TFS/Forgotten.&lt;br /&gt;2. Click on "Accounts" and make sure your in the "Edit Data" Tab which is in the window to the right.&lt;br /&gt;3. Double click in each window under.. Ex, Account, Password Etc... This image has been resized.&lt;br /&gt;4. After you have entered all the information , you will see blue icons like arrows or checks. Click on the "Check" which will say post if you leave your mouse icon on it. After that click on the account table and press F5 to refresh. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:arial;font-size:130%;color:#999900;"&gt;&lt;br /&gt;*Once you have connected, just right-click the database item in the explorer tree. Then, click "Create New Table".&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Arial;font-size:130%;color:#999900;"&gt;Another way is to:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;•&lt;span style="font-family:arial;"&gt; select the Tables list or any object from that list in the explorer tree;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;&lt;span style="font-family:arial;"&gt;• select the Create New Table... item from the popup menu&lt;/span&gt; &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p align="center"&gt;&lt;span style="font-family:arial;font-size:180%;color:#999900;"&gt;&lt;strong&gt;FIREBIRD MAESTRO&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;span style="font-family:arial;font-size:130%;color:#999900;"&gt;&lt;strong&gt;Making database in Firebird Database:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-family:arial;"&gt;&lt;p align="left"&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;1. Database are made in the Create Database Wizard.&lt;br /&gt;2. To run the Create Database Wizard, select the Database Create New Database... main menu item or click the Create New Database button on the main toolbar.&lt;br /&gt;3. The first wizard step allows you to set a name of the new database.&lt;br /&gt;4. Database Editor allows you to browse all the database objects and its main properties. There is possible to create, edit and drop database sub-items.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;5.  You should accomplish filling up some informations in the Wizard window and set the server into an embedded one for you to be connected to the database.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;6. Click ready and you have now your database.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;span style="font-size:130%;color:#999900;"&gt;&lt;strong&gt;Making tables in Firebird database:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;New tables are created within Create Table Wizard. In order to run the wizard you should either&lt;br /&gt;&lt;br /&gt;•&lt;br /&gt;select the Object Create Database Object... main menu item;&lt;br /&gt;•&lt;br /&gt;select the Table icon in the Create Database Object dialog&lt;br /&gt;or&lt;br /&gt;•&lt;br /&gt;select the Tables list or any object from that list in the explorer tree;&lt;br /&gt;•&lt;br /&gt;select the Create New Table... item from the popup menu&lt;br /&gt;or&lt;br /&gt;•&lt;br /&gt;open Database Editor and the Tables tab there;&lt;br /&gt;•&lt;br /&gt;press the Insert key or select the Create New Table item from the popup menu (alternatively, you may use the corresponding link of the Navigation Bar).&lt;br /&gt;&lt;br /&gt;To create a new table with the same properties as one of the existing tables has:&lt;br /&gt;&lt;br /&gt;•&lt;br /&gt;select the Object Duplicate Database Object... main menu item;&lt;br /&gt;•&lt;br /&gt;follow the instructions of Duplicate Object Wizard.&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-5369689258799340202?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/5369689258799340202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=5369689258799340202' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/5369689258799340202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/5369689258799340202'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/09/csc-121-as-i-see-it-009.html' title='CSC 121 As I see it 009'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-2862133848238235703</id><published>2008-08-10T20:06:00.000-07:00</published><updated>2008-09-04T19:55:31.609-07:00</updated><title type='text'>CSC 121 As I see it 008</title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:#666600;"&gt;History of Firebird Maestro 7.12&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;1. Version 6.7 &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;- features: Object Browser, some interface improvements. &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;2. Version 6.12&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;-features: tabbed interface, OLAP viewer, script executor, improved BLOB editor and more.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;3. Version 7.3 &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;-introduces graphical Database Designer, a tool to represent Firebird tables and relationships as ER Diagrams. &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;4. Version 7.7 &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;-includes support for embedded server and some Firebird 2.1 new features as well as a possibility of managing Unicode/UTF-8 data. &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;5. Version 7.9 &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;-introduces column reordering, SQL Formatter and some other features. &lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#336666;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="color:#336666;"&gt;6. Version 7.12&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#336666;"&gt;-features new SQL Generator tool, improved data management and some other useful things.&lt;br /&gt;&lt;br /&gt;. &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-2862133848238235703?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/2862133848238235703/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=2862133848238235703' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/2862133848238235703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/2862133848238235703'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/08/history-of-firebird-maestro-7.html' title='CSC 121 As I see it 008'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-9106559293625643839</id><published>2008-07-16T18:05:00.000-07:00</published><updated>2008-10-02T18:49:10.431-07:00</updated><title type='text'>CSC 121 As I See it 007</title><content type='html'>&lt;span style="font-family:trebuchet ms;font-size:130%;"&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;Distinguish the Difference/Relationships between folder,file,records, and fields:&lt;br /&gt;&lt;br /&gt;1. Folder&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;- contains records&lt;/span&gt;&lt;span style="COLOR: rgb(51,153,153); TEXT-DECORATION: underline"&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;, and in which each record is specified in a single line.&lt;/span&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;2. File&lt;br /&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;-stores information&lt;/span&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;3. Record&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;-An item or collection of &lt;/span&gt;&lt;b style="COLOR: rgb(51,153,153)"&gt;data&lt;/b&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;4. Fields&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;-is a place where you can store data.&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(102,102,0)"&gt;Relationship:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;-Information in the database is generally stored in several different files. Each file consists of series of records. Each records consists of several fields, with each field containing an individual data item. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;"&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;/span&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;"&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;- an individual database as a whole has a lot of related files with related records on it. A single record is composed of related fields in which each of that field has related attributes. Inside each field, there are related data which constitute the field. The data is the last constituent of the whole system. It is the fundamental among all since when data is grouped and related to each other it will constitute a field then a record then into a file and finally into a database.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;"&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(51,153,153)"&gt;-fields, records, files and objects optimized to deal with very large amounts of data stored on a permanent structure.&lt;/span&gt;&lt;span style="TEXT-DECORATION: underline"&gt;&lt;/span&gt;&lt;a title="Data storage device" href="http://en.wikipedia.org/wiki/Data_storage_device"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-9106559293625643839?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/9106559293625643839/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=9106559293625643839' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/9106559293625643839'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/9106559293625643839'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/07/as-i-see-it-007.html' title='CSC 121 As I See it 007'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-218267231860885893</id><published>2008-07-09T23:03:00.000-07:00</published><updated>2008-10-02T18:52:34.975-07:00</updated><title type='text'>CSC 121 As I See It 006</title><content type='html'>&lt;span style="COLOR: rgb(51,153,153)"&gt;&lt;span style="font-size:+0;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;Differentiate all the basic and alternative database models&lt;/span&gt; :&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;Hierarchical&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;   &lt;span style="font-size:130%;"&gt;  This is a tree structured model for a database. It requires that the application knows about the physical relationships between entities. The structure is rigid. Hierarchical structures were widely used in the early mainframe database management systems. This structure allows one 1:N relationship between two types of data and is very efficient to describe many relationships in the real world; recipes, table of contents, ordering of paragraphs/verses, any nested and sorted information. However, the hierarchical structure is inefficient for certain database operations when a full path is not also included for each record.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;ex. IMS is a hierarchical database.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;Network&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;       An extension of the tree into a lattice so that multiple relationships can be supported. This model is inflexible, requiring significant changes if relationships change. The network model is a variation on the hierarchical model, to the extent that it is built on the concept of multiple branches (lower-level structures) emanating from one or more nodes (higher-level structures), while the model differs from the hierchical model in that branches can be connected to multiple nodes. The network model is able to represent redundancy in data more efficiently than is the hierarchical model.&lt;br /&gt;&lt;br /&gt;ex. CODASYL and IDMS is a network database.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;strong&gt;&lt;span style="COLOR: rgb(102,102,0)"&gt;Relational&lt;/span&gt; &lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;       This model is based on relational algebra and encompasses the rules developed by Codd. Most of the databases in commercial use now are relational. The model is flexible and extensible. It makes database management systems more independent of any particular application. Three key terms are used extensively in relational database models: relations, attributes, and domains. A relation is a table with columns and rows. The named columns of the relation are called attributes, and the domain is the set of values the attributes are allowed to take.&lt;br /&gt;&lt;br /&gt;ex. Sybase, Oracle, Ingres.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(102,102,0)"&gt;Object&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;       Object databases address the need to store more complex data types than are supported by the relational model. These databases attempt to bring the database world and the application programming world closer together, in particular by ensuring that the database uses the same type system as the application program. This aims to avoid the overhead of converting information between its representation in the database (for example as rows in tables) and its representation in the application program. At the same time, object databases attempt to introduce the key ideas of object programming into the world of databases&lt;br /&gt;Object databases suffered because of a lack of standardization: although standards were defined by ODG, they were never implemented well enough to ensure interoperability between products. Nevertheless, object databases have been used successfully in many applications: usually specialized applications such as engineering databases or molecular biology databases rather than mainstream commercial data processing&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-218267231860885893?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/218267231860885893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=218267231860885893' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/218267231860885893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/218267231860885893'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/07/csc-121-as-i-see-it-006.html' title='CSC 121 As I See It 006'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-3344278949795868190</id><published>2008-07-05T18:46:00.000-07:00</published><updated>2008-07-06T20:36:37.862-07:00</updated><title type='text'>CSC 121 As I see it 005</title><content type='html'>&lt;strong&gt;&lt;span style="font-size:130%;color:#666600;"&gt;10 examples of DBMS Software:&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#000000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;1. &lt;strong&gt;Oracle Database&lt;/strong&gt; by Oracle Corporation&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;2. &lt;strong&gt;Adaptive Server Enterprise (ASE)&lt;/strong&gt; by Sybase Corporation's&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;3.&lt;strong&gt;MySQL &lt;/strong&gt;by MySQL AB&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;4. &lt;strong&gt;FileMaker&lt;/strong&gt; from FileMaker Inc.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;5. &lt;strong&gt;Informix &lt;/strong&gt;by IBM&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;6. &lt;strong&gt;Microsoft Office Access,&lt;/strong&gt; previously known as Microsoft Access, from Microsoft&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;7.&lt;strong&gt; PostgreSQL&lt;/strong&gt; under a BSD-style license&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;8. &lt;strong&gt;OpenEdge Advanced Business Language&lt;/strong&gt;, by Progress Software Corporation (PSC). &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;9. &lt;strong&gt;CSQL &lt;/strong&gt;developed in sourceforge.net.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;10. &lt;strong&gt;Visual FoxPro &lt;/strong&gt;by Microsoft&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#999900;"&gt;"Oracle Database System"&lt;/span&gt; &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#000000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;An Oracle database system comprises at least one instance of the application, along with data storage. An instance comprises a set of operating-system &lt;/span&gt;&lt;a title="Process (computing)" href="http://en.wikipedia.org/wiki/Process_(computing)"&gt;&lt;span style="font-size:130%;color:#339999;"&gt;processes&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:130%;color:#339999;"&gt; and &lt;/span&gt;&lt;a class="mw-redirect" title="Memory (computers)" href="http://en.wikipedia.org/wiki/Memory_(computers)"&gt;&lt;span style="font-size:130%;color:#339999;"&gt;memory&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:130%;color:#339999;"&gt;-structures that interact with the &lt;/span&gt;&lt;a class="mw-redirect" title="Computer storage" href="http://en.wikipedia.org/wiki/Computer_storage"&gt;&lt;span style="font-size:130%;color:#339999;"&gt;storage&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:130%;color:#339999;"&gt;. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#339999;"&gt;&lt;span style="font-size:130%;"&gt;The Oracle RDBMS stores data &lt;/span&gt;&lt;span style="font-size:130%;"&gt;logically in the form of tablespaces and physically in the form of &lt;strong&gt;data &lt;/strong&gt;&lt;strong&gt;files&lt;/strong&gt;. Tablespaces can contain various types of memory segments; for example, &lt;strong&gt;Data&lt;/strong&gt; &lt;strong&gt;Segments. &lt;/strong&gt;Extents comprise groups of contiguous data blocks. &lt;strong&gt;Data blocks&lt;/strong&gt; form the basic units of data storage. At the physical level, data-files comprise one or more data blocks, where the block size can vary between data-files.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#339999;"&gt;&lt;span style="font-size:130%;"&gt;Oracle database management track its &lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;computer data storage&lt;/strong&gt; with the help of information stored in the SYSTEM tablespace. The SYSTEM tablespace contains the &lt;strong&gt;data dictionary&lt;/strong&gt; — and often (by default) indexes and clusters. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#339999;"&gt;Each Oracle instance uses a &lt;/span&gt;&lt;span style="color:#339999;"&gt;System Global Area&lt;/span&gt;&lt;span style="color:#339999;"&gt; or SGA — a &lt;/span&gt;&lt;span style="color:#339999;"&gt;shared-memory&lt;/span&gt;&lt;span style="color:#339999;"&gt; area — to store its data and control-information.&lt;/span&gt; &lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;Oracle stores information here about the logical and physical structure of the database. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-3344278949795868190?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/3344278949795868190/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=3344278949795868190' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/3344278949795868190'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/3344278949795868190'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/07/csc-121-as-i-see-it-005.html' title='CSC 121 As I see it 005'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-711082339578409629</id><published>2008-07-01T21:20:00.000-07:00</published><updated>2008-07-01T21:35:05.492-07:00</updated><title type='text'>CSC 121 As I see it 004</title><content type='html'>&lt;strong&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;color:#999900;"&gt;Correlate the following:&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;color:#999900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;color:#999900;"&gt;1. Data and Database&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;color:#339999;"&gt;Information in the database  is generally stored in several different files. Each file consists of series of records. Each records consists of several fields, with each field containing an individual data item. From this sentence, we can say that in a database, data are an important factor  in which composes database. Data is important since in database is a huge collection of data that were organized according to their data types.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;color:#339999;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;color:#999900;"&gt;2. System and Management&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;font-size:130%;color:#339999;"&gt;System is the software program of the computer that coordinates the fuction of each hardware components of the computer. The system software works like a traffic inforcer inside the CPU since in every instructions given by the user, the system software coordinate all the hardware to accomplish the task. On the other hand, management is somewhat like managing the a whole integrated processing to accomplish a task. On this, all the hardware are helping each ohter to achieve what the user wants the computer to do. without the system software, the whole hardware components will be useless since the system software do all the coordination of the hardware components for them to work.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-711082339578409629?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/711082339578409629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=711082339578409629' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/711082339578409629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/711082339578409629'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/07/csc-121-as-i-see-it-004.html' title='CSC 121 As I see it 004'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-7405934473116209970</id><published>2008-07-01T21:08:00.000-07:00</published><updated>2008-07-01T21:20:34.761-07:00</updated><title type='text'>CSC 121 As I see it 003</title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="font-family:trebuchet ms;color:#999900;"&gt;1. Why input data?&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#339999;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;-We need to input data in order to process it by the CPU. When users input data, the user and the machine are interconnected to each other.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;-We input data so that the computer program be completed.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:trebuchet ms;color:#999900;"&gt;2. why process data?&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#339999;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;-Processing data means to overview the data inputed by the user and obtaining a meaningful information from the data.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;-We process data to gain a factual information to be used in our daily lives.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;After processing the data, it will become a new powerful information that can be used instantly.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:trebuchet ms;color:#999900;"&gt;3. Output for what?&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#339999;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;- Output so that we can see the hard copies or back-up copies of what we make in the computer.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;- To obtain the result of the processng of data.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;- To display the outcome of the desired information from that data input by the user.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-7405934473116209970?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/7405934473116209970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=7405934473116209970' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/7405934473116209970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/7405934473116209970'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/07/csc-121-as-i-see-it-003.html' title='CSC 121 As I see it 003'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-6155208676478683317</id><published>2008-06-24T22:01:00.000-07:00</published><updated>2008-07-01T21:05:04.505-07:00</updated><title type='text'>CSC As I See It 002</title><content type='html'>&lt;span style="color:#339999;"&gt;&lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;Interrelate&lt;/span&gt; the ff:&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#999900;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#999900;"&gt;&lt;strong&gt;1. Data&lt;/strong&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Trebuchet MS;font-size:130%;color:#339999;"&gt;- it is a raw facts to be processed by the computer into information.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:Trebuchet MS;color:#339999;"&gt;- refer to a collection of natural phenomena descriptors including the results of &lt;a title="Experience" href="http://en.wikipedia.org/wiki/Experience"&gt;experience&lt;/a&gt;, &lt;a title="Observation" href="http://en.wikipedia.org/wiki/Observation"&gt;observation&lt;/a&gt; or &lt;a title="Experiment" href="http://en.wikipedia.org/wiki/Experiment"&gt;experiment&lt;/a&gt;, or a set of &lt;a title="Premise" href="http://en.wikipedia.org/wiki/Premise"&gt;premises&lt;/a&gt;. This may consist of &lt;a title="Number" href="http://en.wikipedia.org/wiki/Number"&gt;numbers&lt;/a&gt;, &lt;a title="Word" href="http://en.wikipedia.org/wiki/Word"&gt;words&lt;/a&gt;, or &lt;a title="Image" href="http://en.wikipedia.org/wiki/Image"&gt;images&lt;/a&gt;, particularly as &lt;a title="Measurement" href="http://en.wikipedia.org/wiki/Measurement"&gt;measurements&lt;/a&gt; or observations of a set of &lt;a title="Variable" href="http://en.wikipedia.org/wiki/Variable"&gt;variables&lt;/a&gt;.&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#999900;"&gt;&lt;strong&gt;2. Data Structure &lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;- Is a way of storing &lt;/span&gt;&lt;span style="color:#339999;"&gt;data&lt;/span&gt;&lt;span style="color:#339999;"&gt; in a computer so that it can be used efficiently.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Trebuchet MS;font-size:130%;color:#339999;"&gt;-is a way of storing &lt;a title="Data" href="http://en.wikipedia.org/wiki/Data"&gt;data&lt;/a&gt; in a computer so that it can be used efficiently. Often a carefully chosen data structure will allow the most &lt;a title="Algorithmic efficiency" href="http://en.wikipedia.org/wiki/Algorithmic_efficiency"&gt;efficient&lt;/a&gt; &lt;a title="Algorithm" href="http://en.wikipedia.org/wiki/Algorithm"&gt;algorithm&lt;/a&gt; to be used. The choice of the data structure often begins from the choice of an &lt;a title="Abstract data type" href="http://en.wikipedia.org/wiki/Abstract_data_type"&gt;abstract data type&lt;/a&gt;. A well-designed data structure allows a variety of critical operations to be performed, using as few resources, both execution time and memory space, as possible. Data structures are implemented by a &lt;a class="mw-redirect" title="Programming" href="http://en.wikipedia.org/wiki/Programming"&gt;programming&lt;/a&gt; &lt;a title="Programming language" href="http://en.wikipedia.org/wiki/Programming_language"&gt;language&lt;/a&gt; as &lt;a title="Data type" href="http://en.wikipedia.org/wiki/Data_type"&gt;data types&lt;/a&gt; and the &lt;a title="Reference (computer science)" href="http://en.wikipedia.org/wiki/Reference_%28computer_science%29"&gt;references&lt;/a&gt; and operations they provide.&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;strong&gt;&lt;span style="color:#999900;"&gt;3. Data Type&lt;/span&gt;&lt;/strong&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;- In &lt;/span&gt;&lt;span style="color:#339999;"&gt;programming languages&lt;/span&gt;&lt;span style="color:#339999;"&gt; a data type is an attribute of a &lt;/span&gt;&lt;span style="color:#339999;"&gt;datum&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt; which tells the computer (and the programmer) something about the kind of datum it is.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;-is an attribute of a &lt;a class="mw-redirect" title="Datum" href="http://en.wikipedia.org/wiki/Datum"&gt;datum&lt;/a&gt; which tells the computer (and the programmer) something about the kind of datum it is. This involves setting constraints on the datum, such as what values it can take and what operations may be performed upon it. Common data types may include: &lt;a title="Integer (computer science)" href="http://en.wikipedia.org/wiki/Integer_%28computer_science%29"&gt;integers&lt;/a&gt;, &lt;a title="Floating point" href="http://en.wikipedia.org/wiki/Floating_point"&gt;floating-point&lt;/a&gt; numbers (decimals), and alphanumeric &lt;a title="String (computer science)" href="http://en.wikipedia.org/wiki/String_%28computer_science%29"&gt;strings&lt;/a&gt;. For example, in the &lt;a title="Java (programming language)" href="http://en.wikipedia.org/wiki/Java_%28programming_language%29"&gt;Java programming language&lt;/a&gt;, the "int" type represents the set of &lt;a title="32-bit" href="http://en.wikipedia.org/wiki/32-bit"&gt;32-bit&lt;/a&gt; &lt;a title="Integer (computer science)" href="http://en.wikipedia.org/wiki/Integer_%28computer_science%29"&gt;integers&lt;/a&gt; ranging in value from -2,147,483,648 to 2,147,483,647, as well as the operations that can be performed on integers, such as addition, subtraction, and multiplication. Colors, on the other hand, are represented by three &lt;a title="Byte" href="http://en.wikipedia.org/wiki/Byte"&gt;bytes&lt;/a&gt; denoting the amounts each of red, green, and blue, and one string representing that color's name; allowable operations include addition and subtraction, but not multiplication. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Trebuchet MS;font-size:130%;color:#339999;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#999900;"&gt;&lt;strong&gt;4.Database Management System &lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;- Computer Software designed for the purpose of managing &lt;/span&gt;&lt;span style="color:#339999;"&gt;databases&lt;/span&gt;&lt;span style="color:#339999;"&gt; based on a variety of &lt;/span&gt;&lt;span style="color:#339999;"&gt;data models&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;Interelate:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;Data are raw facts and figures which are processed into information. It is a recorded information. It can exist in a variety of forms. When data are related to each other, they can be &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_1"&gt;organized&lt;/span&gt; into a sets forming data structures. Data &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;structure&lt;/span&gt; is a manner in which data is organized and arranged usually with reference to computer storage or into the computer memory. The kind of data that can be represented on a computer program such as a whole number is called data types. When data is assigned a type, it cannot be treated like another type.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Trebuchet MS;font-size:130%;color:#339999;"&gt;Data is a part of Database Management system since DBMS is a set of &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_3"&gt;interrelated&lt;/span&gt; data records. It is a stored collection of the libraries data that are needed by organizations and individuals to meet their information processing and retrieval requirements. Data Structures and Data types are also related to DBMS because DBMS is categorized according to their data &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_4"&gt;structures&lt;/span&gt; and data types. DBMS and Data Structure have similarities in their functions because they both arrange and organized data. Further more, Data structures are implemented by a programming language as data types and the references and operations they provide. And that's how Data, Data Structure, Data Types and DBMS are related to each other.&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#339999;"&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:Trebuchet MS;color:#339999;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-6155208676478683317?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/6155208676478683317/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=6155208676478683317' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/6155208676478683317'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/6155208676478683317'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/06/csc-as-i-see-it-002.html' title='CSC As I See It 002'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3162336104011886282.post-405205568132634795</id><published>2008-06-20T18:39:00.000-07:00</published><updated>2008-06-22T20:23:18.005-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='csc 121'/><title type='text'>CSC As I see it! 001</title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;span style="color:#999900;"&gt;A. Parts of the Computer System:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;color:#3366ff;"&gt;&lt;span style="color:#339999;"&gt;1. CPU(Central Processing Unit) or Processor &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;color:#3366ff;"&gt;&lt;span style="color:#339999;"&gt;-execute computer programs. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;color:#3366ff;"&gt;&lt;span style="color:#339999;"&gt;&lt;br /&gt;2. Storage:&lt;br /&gt;&lt;br /&gt;a. Main Memory- directly accessible to the CPU.&lt;br /&gt;b. Secondary Memory-not directly accessible by the CPU.&lt;br /&gt;&lt;br /&gt;3. Peripheral Devices:&lt;br /&gt;&lt;br /&gt;a. Input Devices-used to provide data and control signals to an information processing system. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:trebuchet ms;color:#3366ff;"&gt;&lt;span style="color:#339999;"&gt;&lt;br /&gt;b. Output Devices- used to communicate the results of data processing carried out by an information processing system to the outside world.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#999900;"&gt;B. System:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#33ff33;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;Is a set of interacting or interdependent entities, real or abstract, forming an integrated whole. The concept of an 'integrated whole' can also be stated in terms of a system embodying a set of relationships which are differentiated from relationships of the set to other elements, and from relationships between an element of the set and elements not a part of the relational regime. &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;br /&gt;A system is a fundamental concept of system theory, which views the world as a complex system of interconnected parts. We determine a system by choosing the relevant interactions we want to consider plus choosing the system boundary —– or, equivalently, providing membership criteria to determine which entities are part of the system, and which entities are outside of the system and are therefore part of the environment of the system. We then make simplified representations (models) of the system in order to understand it and to predict or impact its future behavior.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#cc9933;"&gt;&lt;span style="color:#999900;"&gt;C. Examples of Platforms:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;a. Operating system platform examples&lt;br /&gt;-Microsoft Windows&lt;br /&gt;-Linux&lt;br /&gt;-Mac OS backward compatibility via Rosetta&lt;br /&gt;-WINE platform to behave like Microsoft Windows&lt;br /&gt;&lt;/span&gt;&lt;a id="Software_platform_examples" name="Software_platform_examples"&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:130%;color:#339999;"&gt;b. Software platform examples&lt;br /&gt;-Java - JDK and JRE&lt;br /&gt;-NET Framework - operating system dependence (MS Windows)&lt;br /&gt;-Mozilla Prism XUL and XUL Runner&lt;br /&gt;-Adobe AIR &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;br /&gt;c. Hardware examples&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#339999;"&gt;-Mainframe computerwith its custom operating system, say an IBM.&lt;br /&gt;-Midrange computer&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:#cc9933;"&gt;&lt;span style="color:#999900;"&gt;D. Management:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;Management in simple terms means the act of getting people together to accomplish desired goals. Management comprises planning, organizing, resourcing, leading or directing, and controlling an organization (a group of one or more people or entities) or effort for the purpose of accomplishing a goal. Resourcing encompasses the deployment and manipulation of human resources, financial resources, technological resources, and natural resources. &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;br /&gt;Management can also refer to the person or people who perform the act(s) of management.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:#339999;"&gt;&lt;/span&gt;&lt;span style="color:#33cc00;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3162336104011886282-405205568132634795?l=crazykristine2009.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://crazykristine2009.blogspot.com/feeds/405205568132634795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3162336104011886282&amp;postID=405205568132634795' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/405205568132634795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3162336104011886282/posts/default/405205568132634795'/><link rel='alternate' type='text/html' href='http://crazykristine2009.blogspot.com/2008/06/csc-as-i-see-it-001.html' title='CSC As I see it! 001'/><author><name>kristine joy gravador</name><uri>http://www.blogger.com/profile/01246650050934499350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
