SQL data type in hindi

Hello दोस्तों! आज हम इस पोस्ट में SQL data type in Hindi (SQL में डाटा टाइप क्या है?) के बारें में पढेंगे. आप इसे पूरा पढ़िए. आपको यह आसानी से समझ में आ जायेगा. तो चलिए शुरू करते हैं:- SQL Data types in Hindi SQL में data types निम्नलिखित प्रकार के होते है तो आइये हम … Read more

Non loss decomposition in hindi

Non loss decomposition:- जब कभी table या relation में data normalization किया जाता है यदि उसमें सूचना(information) का loss(हानि) नही होता है तब उसे non loss decomposition कहते है। कभी-कभी हम इसे lossless decomposition भी कहते है। आसान भाषा में कहें तो loss less decomposition ऐसी process है जिसमें duplicate data को हटा दिया जाता … Read more

Functional dependency in hindi

Functional dependency:- Functional dependency एक table में दो attributes के मध्य constraints के समूह को कहते है। Functional dependency तब होती है जब table(relation) का एक attribute दूसरे attribute को uniquely identify करता है। Functional dependency को एक तीर(->) चिन्ह्  द्वारा प्रदर्शित किया जाता है। यदि X->Y, तो हम कह सकते है कि ” X … Read more

BCNF (Boyce-Codd Normal Form) क्या है?

BCNF (Boyce-Codd Normal Form) एक विशेष प्रकार का 3NF है। यह 3NF का बेहतर वर्जन है। यह तब लागू होता है जब किसी table में functional dependency के कारण anomalies आ रही हों। इसे 3.5NF भी कहा जाता है। BCNF एक database normalization तकनीक है जो redundancy को कम करता है और data integrity को maintain … 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

डेटा इंटीग्रिटी क्या है? (Data Integrity in DBMS in Hindi)

Data Integrity का मतलब होता है कि database में रखा गया डेटा accurate (सही), complete (पूर्ण) और consistent (संगत) हो। यानी data में कोई गलती, duplication (दोहराव) या mismatch नहीं होना चाहिए। डेटाबेस मैनेजमेंट सिस्टम (DBMS) में डेटा का पूरी तरह से सटीक (Accurate), विश्वसनीय और सम्पूर्ण होना ही Data Integrity कहलाता है। इसका मुख्य … Read more

DBMS में Keys क्या हैं और उनके प्रकार (Types of Keys in DBMS in Hindi)

RDBMS में Keys का इस्तेमाल Table में किसी भी Row को विशेष रूप से पहचानने, डेटा की शुद्धता (Integrity) बनाए रखने और दो Tables के बीच संबंध (Relationship) स्थापित करने के लिए किया जाता है। RDBMS में निम्नलिखित प्रकार की keys होती हैं। 1:- Primary Key किसी relational table की primary key टेबल के प्रत्येक … Read more

Primary Key क्या है? (Primary Key in DBMS in Hindi)

DBMS में Primary Key का इस्तेमाल Table के प्रत्येक रिकॉर्ड (Row) को विशेष रूप से पहचानने (Identify) के लिए किया जाता है। एक टेबल में Primary Key वह Column होता है जिसकी value कभी भी खाली (Null) नहीं हो सकती और न ही कभी दोहराई (Duplicate) जा सकती है। Primary Key के प्रकार (Types of … Read more

Relationship among Entities in DBMS in Hindi (एंटिटीज़ के बीच संबंध)

DBMS में Entities के बीच संबंध (Relationship) बहुत महत्वपूर्ण होता है। Relationship यह बताता है कि एक entity दूसरी entity से कैसे जुड़ी हुई है। आसान शब्दों में “Entities के बीच का connection ही Relationship कहलाता है।” Entities के बीच मुख्य रूप से तीन प्रकार की relationships होती हैं:- 1:- One-to-One (1:1) Relationship यह relationship … Read more

Types of Attributes in DBMS in Hindi (एट्रिब्यूट के प्रकार)

Types of Attributes in DBMS in Hindi

DBMS में Attributes बहुत महत्वपूर्ण होते हैं। Attribute किसी भी Entity की विशेषता (property) को दर्शाता है। जैसे – Student Entity के लिए Name, Age, Roll Number आदि उसके attributes होते हैं। सरल शब्दों में कहें तो, “डेटाबेस में स्टोर की जाने वाली किसी ‘Entity’ (वस्तु, व्यक्ति, या स्थान) की विशेषताओं को ही Attribute कहा … Read more