UML Specification #56

From: http://sitestree.com/?p=4908
Categories:56
Tags:
Post Data:2011-03-10 07:46:39

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

The Business and Prospect of Computer Games #59

“According to the NPD Group, US video game retail sales approached $12.5 billion in 2006 where the domestic box office movie gross of $9.2 billion in 2006, according to Box Office Mojo”

We all know that video games were being used to provide education especially child education. Now, video games are targeting to have an impact on social behavior. Companies and universities are working towards creating games such as: Awareness-raising games (raise awareness of important social issues), Transformation games (transform player’s intellectual views and real world behaviors), Social commentary/art games (inspiring new thinking on important social issues)

From: http://sitestree.com/?p=4919
Categories:59
Tags:
Post Data:2006-09-20 18:44:34

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

Logical Data Modeling: Logical Database Design Steps: RDBMS #6

Logical Data Modeling

  1. Identify major entities
  2. Determine relationships between entities
  3. Determine primary and alternate keys
  4. Determine foreign keys
  5. Determine key business rules
  6. Add remaining attributes
  7. Validate user views through normalization
  8. Determine domains
  9. Determine triggering operations
  10. Combine user views
  11. Integrate with existing data models
  12. Analyze for stability and growth

Translate Logical Model into the Real Database System

  1. Identify tables
  2. Identify columns
  3. Adapt data structure to product environment
  4. Design for business rules about entities
  5. Design for business rules about relationships
  6. Design for additional business rules about attributes
  7. Tune for scan efficiency
  8. Define clustering sequences
  9. Define hash keys
  10. Add indexes
  11. Add duplicate data
  12. Redefine columns
  13. Redefine tables

Design for Special Design Challenges

  1. Provide for access through views
  2. Establish security
  3. Cope with very large databases
  4. Access and accommodate change
  5. Anticipate relational technology evolution

Reference: C. C. Fleming and B. V. Halle

From: http://sitestree.com/?p=4896
Categories:6
Tags:
Post Data:2011-01-04 05:33:34

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

Boyce/Codd and Fourth Normal Form #6

Boyce/Codd Normal Form
———————-
It is just an extension to the third normal form. Third normal form ensures that non key attributes does not depend on any non key attribute but fully depend on the key[primary] attributes.

Boyce codd normal form ensures that non key attributes are fully dependent on the total set of the primary key. Non-key attributes should not depend [only] on a subset of the key[primary] attributes.

Fourth Normal Form:
——————-
It tries to decompose an entity/table into multiple entities/tables when there are multiple independent[not dependent on each other] multivalued attributes in an entity/table.

For example: Consider a table with emp_number, skill name, objective of the employee. Employees may have many skills and also many objectives. Hence, skill_name, and objective are multivalued and also they do not depend on each other. This table will cause many redundant data.Better is to use two tables like:

Emp_skill
Emp_num, Skill Name

Emp_objective
Emp_num, Objective

From: http://sitestree.com/?p=4762
Categories:6
Tags:
Post Data:2012-01-14 02:58:00

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

Normalization in Relational DBMS Systems #6

First Normal Form:All table columns should have distinct meaningIn another word: All attributes of an entity/table must be uniqueSolution: Grow the table row wise[in the direction of rows] not the column wiseGroup the columns with same meaning into oneTo handle multiple values for the same attribute of an entity create multiple rows [not multiple columns]To keep track of paycheques, you may think the table should be as follows:Name, provider company, date 1, pay cheque 1, date2 , pay cheque 2, date 3, paycheque 3See date1, date2, and date 3 have the same meaningPay cheque 1, Pay cheque 2, and Pay cheque 3 have the same meaningThese are the repeating attributesSolution:create table with:number name, company, date,   paycheque100    1,    xyz,      12/13,  1000.00100    1,    abc,      12/13,  1000.00100    1,    xyz,      12/31,  1000.00or create a child entity with Date and amount. And a master entity with number, Name and CompanyEntity one: number, name, companyEntity two: number, date, amount2nd Normal form:----------------Rule: All attributes can be identified from the primary key. Primary key is directly related to all other attributes.All attributes are fully dependent on the primary key.Line Item Table/Entity:--------------------number [line item] [pk]order number[pk]vendor namevendor townproduct codeproduct amountHere, vendor name and vendor town may not be fully dependent on the whole primary key. They are dependent on the order number.So we can decompose it into another table.Order entityNumber [pk]Vendor NameVendor TownLineitem entitynumber [pk]order_number [pk]product codeproduct amount3rd normal form-----------------Rule: Non key attributes are fully dependent on the primary key but not on any other key or attribute.In Order entity table, vendor town is not fully dependent on number[pk], but it does depend on the vendor name. So we can decompose order entity table into twoVendor EntityName [pk]TownOrder EntityNumbervendor-name

From: http://sitestree.com/?p=4761
Categories:6
Tags:
Post Data:2013-04-30 16:31:25

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

Practical Database Design Resources #6

From: http://sitestree.com/?p=4743
Categories:6
Tags:
Post Data:2008-10-15 05:36:26

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

DBMS System Online Course #6

Please check the resources at:
http://www.cs.sfu.ca/CC/354/zaiane/material/notes/contents.html

Just like an undergraduate course in Database Management Systems. Along with other topic, ER-Diagram and representation of ER-Diagrams into tables are provided. Some of the complex forms of ER diagrams are discussed.

From: http://sitestree.com/?p=4737
Categories:6
Tags:
Post Data:2012-11-13 06:40:32

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

Normalization (1NF to 5th NF) #6

Please check this link.
http://www.keithjbrown.co.uk/vworks/mysql/mysql_p7.php From: http://sitestree.com/?p=4723
Categories:6
Tags:
Post Data:2007-06-03 04:52:04

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

Some Short-cuts for Eclipse IDE #61

shortcut keysCtrl + M = maximize active view/editorCtrl + / = line commentCtrl + Shift + / = block commentsCtrl + D = delete lineAlt + Up = move lines upAlt + Down = move lines downShift + Enter = insert line below current lineCtrl + Shift + Enter = insert line above current lineCtrl + Shift + Y = to lower caseCtrl + Shift + X = to upper caseCtrl + Space = control asistCtrl + K = find nextCtrl + Shift + K = find previousMore Short Cut Keys for Eclipse From: http://sitestree.com/?p=5260
Categories:61
Tags:
Post Data:2012-07-01 15:02:06

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>

Shortcuts for Eclipse for Java Developers #61

From: http://sitestree.com/?p=5162
Categories:61
Tags:
Post Data:2008-01-16 03:14:22

    Shop Online: <a href='https://www.ShopForSoul.com/' target='new' rel="noopener">https://www.ShopForSoul.com/</a>
    (Big Data, Cloud, Security, Machine Learning): Courses: <a href='http://Training.SitesTree.com' target='new' rel="noopener"> http://Training.SitesTree.com</a> 
    In Bengali: <a href='http://Bangla.SaLearningSchool.com' target='new' rel="noopener">http://Bangla.SaLearningSchool.com</a>
    <a href='http://SitesTree.com' target='new' rel="noopener">http://SitesTree.com</a>
    8112223 Canada Inc./JustEtc: <a href='http://JustEtc.net' target='new' rel="noopener">http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a>
    Shop Online: <a href='https://www.ShopForSoul.com'> https://www.ShopForSoul.com/</a>
    Medium: <a href='https://medium.com/@SayedAhmedCanada' target='new' rel="noopener"> https://medium.com/@SayedAhmedCanada </a>