Database Normalization in hindi

database Normalization:- DBMS में, Normalization डेटा को organise(व्यवस्थित) करने की प्रक्रिया है। सामान्यतया यह two step process है जो निम्न है:- पहला step:- पहले step में, यह रिलेशनल टेबल में से redundant data(वह डेटा जो एक से अधिक बार स्टोर हुआ हो) को eliminate करता है। दूसरा step:- दूसरे step में, यह ensure करता है … Read more

Relational Algebra in hindi

Relational algebra:- Relational algebra, operations का एक समूह होता है जिसका प्रयोग relations से data को manipulate करने के लिए किया जाता है। Relational algebra एक procedural language है। इसमें operators का प्रयोग queries को perform करने के लिए किया जाता है और यह DBMS में प्रयुक्त होने वाली intermediate language है। Relational Algebra में … Read more

DBMS CONSTRAINTS IN HINDI

Types of constraints:- प्रत्येक table में डेटा को insert करने के लिए कुछ business rules होते है। ये business rules, data constraints कहलाते है। DBMS में constraints निम्नलिखित प्रकार के होते है। 1:-NOT NULL constraints:- इस constraints का प्रयोग तब किया जाता है जब किसी column को खाली ना रखना हो। NOT NULL constraints एक … Read more

DBMS Data Integrity in HINDI

data integrity:- database management sysyem में डेटा का accurate तथा सम्पूर्ण होना data integrity कहलाती है तथा डेटा में duplicate ness नही होनी चाहिए इसका मतलब यह है कि डेटा consistence होना चाहिए जिससे डेटा की हानि ना हो। जिससे डेटा की integrity बनी रहती है।                             डेटा integrity दो प्रकार की होती है। 1.Entity … Read more

DBMS KEYS IN HINDI

All DBMS keys:- Rdbms में निम्नलिखित प्रकार की keys होती हैं। 1:- primary key:- किसी relational table की primary key टेबल के प्रत्येक record को uniquely identify करता है। primary key दो प्रकार की होती है। 1. simple primary key 2. composite primary key 1. Simple primary key:- simple primary key केवल एक field से … Read more

primary key in hindi

primary key:- किसी relational table की primary key टेबल के प्रत्येक record को uniquely identify करता है। primary key दो प्रकार की होती है। 1. simple primary key 2. composite primary key 1. Simple primary key:- simple primary key केवल एक field से मिलकर बना होता है। 2. composite primary key:- composite primary key एक … Read more

Join in Dbms in hindi

join:- दो या दो से अधिक tables में से डेटा को प्राप्त करना join कहलाता है। प्रत्येक table में डेटा को insert करने के लिए कुछ business rules होते है। ये business rules, data constraints कहलाते है। NOTE:- आपको ये पोस्ट कैसी लगी आप हमें कमेंट के माध्यम से अवश्य बतायें। हमें आपके कमेंट्स का … Read more

Tuples in DBMS—in hindi

Tuple:- एक Tuple, columns or attributes का collection होता है। tuple एक instance के लिए table की attributes के बारें में information का collection होता है। एक tuple को हम row कह सकते है यदि row, unique हो तो। Relation:- एक relation, rows or tuples का collection होता है। NOTE:- आपको ये पोस्ट कैसी लगी … Read more

domain in DBMS–in hindi

Domain:- एक attribute के लिए permit की जाने वाली सभी unique values के सेट को हम domain कहते है। उदहारण के लिए:- gender के लिए एक field डोमेन[male,female,others] हो सकते है। जहां ये तीनों values ही permitted entries है। NOTE:- आपको ये पोस्ट कैसी लगी आप हमें कमेंट के माध्यम से अवश्य बतायें। हमें आपके … Read more

Relationship among entities in hindi

Relationship among entities:- entities के मध्य तीन प्रकार की relationship होती है। 1. One-to-one(1:1) relationship:- यह तब होती है जब entity A का एक instance, entity B के एक instance के साथ associated होता है। उदहारण के लिए:- किसी office में employees का अपना अलग-अलग office होता है। प्रत्येक employee के लिए एक unique office … Read more