Tag Archives: database

IDS ve IPS nedir ne işe yarar?

IDS ( Intrusion Detection System) yani saldırı tespit sistemi ve IPS (Intrusion Prevention System) ise saldırı önleme sistemi anlamına gelmektedir.Bu tip firewall’lara paket süzen güvenlik duvarı da denmektedir.Son zamanlarda artış gösteren ve ciddi zararlara yol açan hacking saldırılarının yakalanmasına ve önlenmesinde çok önemli rol oynamaktadırlar.IDS,sadece ağdaki kötü niyetli bağlantıları tespit eder ve loglar.IPS ise ağdaki kötü niyetli bağlantıları tespit eder …

Read More »

Database Systems

Step 0 – Analyze • Analyze the domain – Learn what things the system is intended to handle. – Learn what the constraints of the domain are. • Analyze the system – Learn what the system is intended to do, what operations it should perform. • We’ve partly done part of this for you… Step 1 – Design • Design …

Read More »

Database Systems Indexes DBMSs and ”NoSQL”

Typical (abstract) costs • Some typical costs of disk accessing for database operations on a relation stored over n blocks: – Query the full relation: n (disk operations) – Query with the help of index: k, where k is the number of blocks pointed to (1 for key). – Access index: 1 – Insert new value: 2 (one read, one …

Read More »

Database Usage (and Construction) ,Transactions Authorization

Setting • DBMS must allow concurrent access to databases. – Imagine a bank where account information is stored in a database not allowing concurrent access. Then only one person could do a withdrawal in an ATM machine at the time – anywhere! • Uncontrolled concurrent access may lead to problems. lecture11.pdf dosyayı indir

Read More »

Database Usage (and Construction) ,More SQL Queries and Relational Algebra

SELECT-FROM-WHERE • Basic structure of an SQL query: SELECT attributes FROM tables WHERE tests over rows SELECT X FROM T WHERE C Aggregation • Aggregation functions are functions that produce a single value over a relation. – SUM, MAX, MIN, AVG, COUNT SELECT MAX(nrSeats) MAX actually has FROM Rooms; SELECT COUNT(*) FROM Lectures WHERE room = ’VR’; lecture8.pdf dosyayı indir

Read More »

Database Construction and Usage, SQL DDL and DML Relational Algebra

Goals of database design • ”Map” the domain, find out what the database is intended to model. – The database should accept all data that is possible in reality. – The database should agree with reality and not accept impossible or unwanted data. • We accomplish this by making sure that our database captures all the constraints of the domain. …

Read More »

Database design IV, INDs and 4NF Design wrapup

Work flow • DRAW your diagram of the domain. • TRANSLATE to relations forming a schema • IDENTIFY dependencides from domain! • RELATE the dependencies to the schema, to find more constraints, and to validate your design. lecture5.pdf dosyayı indir

Read More »

Database design II ,Functional Dependencies BCNF

Functional dependencies (FDs) • X  A – ”X determines A”, ”X gives A” – ”A depends on X” • X is a set of attributes, A is a single attribute • Examples: – code  name – code, period  teacher lecture3.pdf dosyayı indir

Read More »

Database design, The Entity-Relationship model

The Entity-Relationship approach • Design your database by drawing a picture of it – an Entity-Relationship diagram – Allows us to sketch the design of a database informally (which is good when communicating with customers) • Use (more or less) mechanical methods to convert your diagram to relations. – This means that the diagram can be a formal specification as …

Read More »