Introduction to Oracle Database | What is Oracle? full Explanation

Learn Coding
12 Jul 202114:32

Summary

TLDRThis video introduces Oracle Database, covering its basics, history, and key functionalities. It explains Oracle as a powerful relational database system developed by Larry Ellison and his colleagues in 1977. The video discusses the process of installing and using Oracle Database, including creating tables, inserting records, and managing data. It also highlights the advantages of databases, such as data retrieval, security, and integrity. Viewers will learn how to install Oracle Database, execute SQL commands, and manage tables efficiently. The video is informative for beginners and encourages viewers to subscribe for more content.

Takeaways

  • 😀 Oracle is a powerful relational database system designed to organize data in a tabular format (rows and columns).
  • 📅 Oracle Database was developed in 1977 by Larry Ellison and his friends Bob Miner and Ed Oates.
  • 📊 Oracle was initially known as 'RSI' (Relational Software Inc.) and later renamed to Oracle Corporation in 1992.
  • 🖥️ Oracle supports SQL (Structured Query Language) for creating tables, inserting records, and managing databases.
  • 🔧 The tutorial demonstrates how to install Oracle Database and create tables using SQL commands.
  • 💡 SQL allows for creating columns with various data types such as numbers and characters to organize data.
  • 🔐 Oracle provides data security, ensuring that unauthorized users cannot access or modify data in the database.
  • 📂 Databases store user information like name, password, email, and phone numbers securely, as demonstrated with Facebook example.
  • 🛡️ Oracle also ensures data integrity by supporting primary keys and unique constraints, preventing duplicates in data.
  • 📈 Latest versions of Oracle include features like PL/SQL language support, and the latest versions (11g, 12c, 2019 updates) improve performance and usability.

Q & A

  • What is Oracle Database?

    -Oracle Database is a powerful relational database management system that stores data in a tabular format, using rows and columns to organize the information.

  • Who developed Oracle Database, and when?

    -Oracle Database was developed by Larry Ellison, along with his friends Bob Miner and Ed Oates, in the year 1977.

  • What was the original name of Oracle Database?

    -The original name of Oracle Database was 'RSI,' which stands for Relational Software, Inc.

  • What does 'relational' in Relational Database mean?

    -A relational database organizes data into a tabular format, where data is stored in rows and columns. Relationships between different tables are established, which allows for efficient data retrieval and management.

  • What is the purpose of a database?

    -A database is an organized collection of data that allows for easy access, management, and retrieval of information. It securely stores data and makes it available when needed.

  • What are some of the main advantages of using a database?

    -The advantages include easy data retrieval, enhanced data security, management of duplicate data (data redundancy), and data integrity, which allows users to maintain unique and consistent data.

  • How is Oracle Database installed and accessed?

    -Oracle Database can be installed by downloading and setting it up on a computer system. After installation, users can access it via SQL command-line interfaces to create tables, insert records, and manage data.

  • What is PL/SQL in Oracle Database?

    -PL/SQL is a procedural language extension to SQL used in Oracle databases, allowing users to write full programs to manage and modify data within the database.

  • What is indexing in a database, and why is it important?

    -Indexing is a technique used in databases to speed up the retrieval of data. It creates a separate structure that allows the system to find specific records faster, improving overall performance.

  • How does Oracle Database ensure data security?

    -Oracle Database ensures data security by controlling access to data. Only users with correct login credentials (username and password) can access specific data, and it can prevent unauthorized actions such as data deletion or modification.

Outlines

00:00

📊 Introduction to Oracle Database

This section introduces Oracle Database, explaining its powerful relational database software. It covers the historical development of Oracle, created by Larry Ellison and his friends in 1977, and highlights Oracle's evolution over the years. The video will also discuss how to install Oracle Database and how to create tables, insert records, and manage data using SQL commands.

05:02

🔐 How Facebook Uses Databases

Here, the script explains how user information, such as name, email, and password, is stored in a database when creating a Facebook account. The example shows how Facebook’s database stores, retrieves, and secures the data to ensure user information is protected and only accessible with correct login credentials. It also emphasizes the role of databases in managing data like photos and videos uploaded to Facebook.

10:03

🛡️ Advantages of Using Databases

This part focuses on the benefits of using databases, such as data retrieval, security, and redundancy prevention. It highlights how databases manage duplicate data and maintain data integrity by allowing unique entries with primary keys. The section also discusses indexing, which improves data retrieval speed, and the security measures that prevent unauthorized access to sensitive data.

⚙️ Installing and Working with Oracle Database

This section provides detailed instructions on how to install and work with Oracle Database. It explains the process of using SQL command lines to create tables and insert records into the database. The video tutorial offers step-by-step guidance on connecting to Oracle Database, creating a table, and adding employee data, such as ID, name, and address, to the database.

📄 SQL Commands for Data Management

The script explains the SQL commands used for creating, inserting, and retrieving records from a database. It demonstrates how to insert employee data into a table and retrieve it using the SELECT command. The process of deleting records and dropping tables from the database is also covered. This part concludes with a summary of the key topics discussed, encouraging viewers to like and subscribe for more content.

Mindmap

Keywords

💡Oracle Database

Oracle Database is a powerful relational database management system developed by Larry Ellison and his team in 1977. It organizes data into tables consisting of rows and columns, allowing easy storage, retrieval, and management of information. In the video, Oracle is introduced as a prominent relational database system used to manage structured data efficiently.

💡Relational Database

A relational database organizes data into tables (rows and columns) where each piece of data relates to others in structured ways. This format allows for efficient querying, updating, and management of data. The video explains that Oracle is a relational database, meaning data is stored in tabular formats and relationships between data are maintained.

💡Larry Ellison

Larry Ellison is the co-founder of Oracle Corporation and one of the main developers of Oracle Database. Along with his team, Ellison played a crucial role in designing this system in 1977, which has since become a cornerstone of modern database management. The video highlights his contributions to the development of Oracle Database.

💡SQL (Structured Query Language)

SQL is a programming language used for managing and manipulating relational databases. The video discusses how SQL can be used within Oracle to create tables, insert records, and query data. SQL is essential for interacting with databases, and Oracle Database users must write SQL commands to perform these operations.

💡PL/SQL

PL/SQL (Procedural Language/SQL) is Oracle’s extension to SQL that allows for procedural logic to be included in SQL operations, making database tasks more dynamic and functional. The video touches on PL/SQL as one of the languages used within Oracle Database to enhance its capabilities.

💡Table

In the context of a database, a table is a collection of data organized into rows and columns. The video demonstrates how to create a table in Oracle Database using SQL, specifying column names and data types. Tables serve as the primary structure for storing data in relational databases like Oracle.

💡Record

A record is a single entry in a database table, representing one set of data points across different fields (columns). The video shows how to insert records into an Oracle Database table, where each record is a row containing data for each column of the table.

💡Versioning

Versioning in databases refers to the release of different versions of database software, often with new features and improvements. The video mentions various versions of Oracle Database, such as 11g, 12c, and 19c, explaining how each newer version brought enhancements in functionality and performance.

💡Data Integrity

Data integrity refers to the accuracy and consistency of data within a database. The video explains that Oracle Database allows the implementation of business rules like unique constraints and primary keys to ensure data remains accurate and consistent. It ensures that the data entered is valid and correct.

💡Data Security

Data security refers to measures taken to protect data from unauthorized access or corruption. The video highlights how Oracle Database ensures data security, such as preventing unauthorized users from accessing the database by requiring correct usernames and passwords to retrieve records or perform actions on the database.

Highlights

Introduction to Oracle Database: Understanding what Oracle Database is and its significance as a powerful relational database software.

History of Oracle Database: Developed by Larry Ellison and his friends Bob Miner and Ed Oates in 1977.

Explanation of Relational Databases: Data in a relational database is stored in a tabular format, with rows and columns.

Evolution of Oracle Database: Initially called 'RSI' (Relational Software Inc.), it was later renamed Oracle Corporation in 1992.

Oracle 11g and 12c versions: Explanation of key versions like Oracle 11g (launched in 2017) and Oracle 12c (widely used since 2018).

Database Structure: Oracle stores account information like name, email, and password in a secure format for user authentication and access.

Security Features of Databases: Oracle Database provides features to safeguard data, ensuring only authorized users can access it.

Creating Tables: Using SQL commands like 'CREATE TABLE' to structure data within the Oracle Database.

Inserting Records: SQL query 'INSERT INTO' used to insert data into a table.

Querying Data: Explanation of using 'SELECT' query to retrieve data from a table.

Data Retrieval Advantage: Oracle Database efficiently retrieves data when needed.

Data Redundancy Control: Oracle supports handling duplicate data and managing changes across records.

Data Integrity and Transparency: Ensuring unique and valid data using business rules and constraints like primary keys.

Database Indexing: Improves data retrieval speed through the indexing feature.

How to Install Oracle Database: Link to a tutorial for downloading and installing Oracle Database.

Transcripts

play00:00

ओरेकल डाटा बेस देखने के लिए हमारे चैनल

play00:02

को डिंग को सब्सक्राइब करें आज का हमारा

play00:06

टॉपिक है इंट्रोडक्शन टू पर आकर डेटाबेस

play00:09

तो करैक्टर डेटाबेस के ऊपर यह हमारा

play00:11

फर्स्ट वीडियो है तो इस वीडियो में सबसे

play00:13

पहले हम आपको बताएंगे और एक होता क्या है

play00:16

ठीक है उसके बाद डेटाबेस का मतलब क्या

play00:19

होता है और एक और डेटाबेस का हिस्ट्री भी

play00:21

हम डिस्कस करेंगे ओरेकल डाटा आप इसको

play00:24

सिस्टम इंस्टॉल कैसे करना है साथ ही साथ

play00:26

रहकर डेटाबेस में टेबल कैसे क्रिएट करना

play00:29

है रिकॉर्ड को कैसे इन सेट करना है इन सभी

play00:31

चीजों को इस एक वीडियो में हम आपको कवर

play00:34

करके दिखाएंगे तो चलिए स्टार्ट करते हैं

play00:36

व्हाट इस ओरेकल सबसे पहले पड़े कल क्या है

play00:39

फुल एक्सप्लैनेशन हम यह जान लेते हैं और

play00:42

140 आप पावरफुल रिलेशनल डाटा बेस

play00:44

सॉफ्टवेयर ओरेकल जो है वह एक पावरफुल

play00:47

रिलेशनल डाटा विच सॉफ्टवेयर है यहां पर

play00:50

रिलेशनल का मतलब क्या हो गया कि रिलेशनल

play00:53

डाटा बेस वहीं डेटाबेस होता है जिसमें

play00:55

डाटा ट्यूबलर का फॉर्मेट में स्टोन होता

play00:57

है यानि रॉक कॉलम के फॉर्मेट में है

play01:00

है और एकल डेटाबेस को डेवलप किसने किया

play01:02

डेवलप्ड बाय लहरी एडिशन एंड हिस फ्रेंड

play01:05

फॉर माइनर एंड एश्योर्ड इन द ईयर 1977

play01:10

ओरेकल डाटाबेस को डिवेलप करने वाले डेवलपर

play01:13

का नाम है लैरी एलीसन और उनके दो फ्रेंड्स

play01:16

से वो माइनर एंड एश्योर्ड इन तीनों ने मिल

play01:19

के ओरेकल डाटा बेस को डेवलप किया कब किया

play01:22

था 1977 में इन्होंने डेवलप किया था कहां

play01:27

किया था ऐड सॉफ्टवेयर डेवलपमेंट लेग यानि

play01:29

एसडीएल में इन्होंने डेवलप किया था तो यह

play01:33

हो गया और कल क्या होता है अभी आपको चलिए

play01:35

ओरेकल डाटा बेस इसका आइसक्रीम बताते हैं

play01:37

यहां पर हिस्ट्री ऑफ़ करेक्शन डेटाबेस तो

play01:41

1978 है यहां पर सीमेंट इनोवा 1978 में

play01:45

पहले ओरेकल डाटा बेस का नाम था आरए साइड

play01:49

यह क्या किया डेवलप किया था और एकल बिट्टू

play01:52

ठीक है और अकील कादरी इक्कू वर्जन यूनिट

play01:55

डेवलप किया था जो कि फेस्टिवल लैंग्वेज को

play01:57

सपोर्ट करता था यहां पर ऐसा

play02:00

पूरा नेम क्या होता है रिलेशनल सॉफ्टवेयर

play02:03

इन सियो बाद में इसको क्या किया ओरेकल

play02:05

कार्पोरेशन नाम यहां पर देखो 1992 में

play02:08

इसका नाम चेंज करके बदल दिया गया पड़े कल

play02:11

कॉर्पोरेशन और आज भी कंपनी का नाम ओरेकल

play02:14

कार्पोरेशन है पहले आरएसएस यानि रिलेटिव्स

play02:18

और रिपेयरिंग सीख 93वें क्या हुआ और एक

play02:22

हल्का भी थ्री वर्जन आया जिसे SIM ही

play02:24

डेवलप किया गया था किस लैंग्वेज का यूज

play02:26

करके बनाया गया था 1994 में भी फोन आया

play02:30

1995 में भी पाया को लेकर भी पार्टी के

play02:33

यहां पर और है कल नहीं लिखा हुआ इसका मतलब

play02:34

यह बात समझने के सिर भी फोड़ है और एल बी

play02:37

फॉर र कंट्री 598 में ओरेकल बेसिक है

play02:41

जिसमें पीएल एसक्यूएल लैंग्वेज को भी

play02:44

इनपुट किया गया यहां से पी एल स्कोर में

play02:46

भी आर यू सपोर्ट करने लगा 1992 में उन्हें

play02:50

का बीटा वर्जन है 99 ओरेकल डाटा या 21वें

play02:56

और एक लाइन या उसके बाद 223 में

play03:00

आधे देखकर पड़े कंटेन जी हमारा आया

play03:03

मार्केट में तो आज के टाइम में हम जो

play03:05

डेटाबेस यूज करते हो अरे कंटेन जी यूज

play03:08

करते हैं या फिर 1128 इन सी लेफ्टिनेंट

play03:10

इसे हम इन्हें कोई यूज करते हैं यह पहले

play03:14

के वर्जन है जो कि बहुत पुरानी हो चुके

play03:15

हैं लेकिन अगर आप उन्हें कल कोई सपोर्ट

play03:19

करेंगे सिस्टम एंड या तो आप चेंजेस फोल्ड

play03:21

करेंगे या 11g करेंगे तो लेमन जूस को 2017

play03:24

में लाया गया 2030 में ओरेकल 12c है जो कि

play03:28

ज्यादा यूज किया जाता आज के टाइम पर यही

play03:32

2018 न्यू 2018 में ओरेकल एक ही आया और

play03:36

लेटेस्ट वर्जन ओरैकल का 2019 में और 10 जो

play03:41

कि अभी तक यह लेटेस्ट वर्जन यह हो गया और

play03:44

एक और डेटाबेस का स्प्रे अभी चलिए हम आपको

play03:47

सबसे पहले डेटाबेस का मतलब क्या होता है

play03:49

डीटॉक्स होता क्या है यह समझाते हैं अगर

play03:53

कोई बोले डाटा बेस क्या होता है डाटा में

play03:55

इसका मतलब समझा दो मुझे तो आपको सिंपली

play03:57

आंसर करना है ऑर्गेनाइज कलेक्शन

play04:00

क्वेटा इन्हें पर्टिकुलर फॉरमैट फॉर दैट

play04:03

कैन वेरी इजीली एक्सेस नुव्वे इसका मतलब

play04:07

होता है मतलब को आप ऐसे में मैसेज करो ऐसे

play04:11

में इस करके मैंने करो जिससे को आसानी से

play04:17

एक्सेस कर सके और मैंने कर सके वहीं इसी

play04:21

का मतलब होता है यही काम होता है अब हम

play04:25

एक-एक करके प्रोवाइड करें और हमारे मैंने

play04:29

करके रखें और इसी काम को करता है चलिए

play04:34

यहां पर हम आपको समझाते हैं यह हो गया

play04:40

हमारा बस ठीक है

play04:44

कि इसका काम क्या डाटा को स्टोर करना अभी

play04:47

मालूम अगर आप Facebook में कोई भी Account

play04:49

बनाते हो सबसे पहले आप क्या देते हुए अपना

play04:52

नेम देते हैं जब फर्स्ट टाइम अकाउंट के

play04:54

लिए करते हैं पासवर्ड देते हैं

play04:58

मैं अपना ईमेल ID भी देते हैं मोबाइल नंबर

play05:01

भी देते हैं ठीक है इन सभी चीज़ो को मांगा

play05:04

जाता है वह सकता आप एड्रेस में देते हो तो

play05:07

यह सारी डिटेल समय अकाउंट क्रिएट संघ के

play05:10

टाइम किस कहीं भी लगती है ठीक है एक बार

play05:12

अकाउंट गर्म क्रिएट कर देते हैं हमारा जो

play05:14

अकाउंट होता है वह डाटा बेस में जाकर से

play05:17

हो जाता है ठीक है डेटाबेस में इसको हो

play05:19

जाता है उसके बाद अगर हमें अपने अकाउंट को

play05:22

जब एक्सेस करना हो तो दोबारा एक्सेस करने

play05:24

के लिए हम नेम और पासवर्ड अगर यूज करते

play05:27

हैं अगर हम नेम और पासवर्ड एंटर करते हैं

play05:30

करेक्ट इनपुट करते हैं हम क्या कर सकते

play05:33

हैं अपने अकाउंट को एक्सेस कर सकते हैं यह

play05:35

जो अकाउंट अपने क्रिएट करें इसका डिटेल

play05:38

जाकर और है कि डेटाबेस में सेव हुआ मान लो

play05:40

या तो Facebook एक्सांपल दे रुमाल

play05:42

Facebook के डाटा बेस में स्टोर होगा और

play05:44

एग्जांपल के लिए कंसीडर करूंगा रेखा लेकर

play05:47

चल रहे तो जो अकाउंट क्रिएट वह डेटाबेस

play05:49

में जाकर इसको हुआ उसके बाद जब अकाउंट को

play05:52

एक्सेस करने की कोशिश करें तो अकाउंट में

play05:54

कहां से एक्सेस करने के लिए परमिशन मिल जा

play05:56

रहा वह अकाउंट मारा डेटाबेस

play05:58

तो फिर तुमने पासवर्ड एंटर करें तो वह

play06:02

अकाउंट हमें डेटाबेस प्रोवाइड कर दे रहा

play06:05

जो अभी हमने क्रिएट किया था डेटाबेस में

play06:07

शुरू हुआ था तो देखो जब हमें अकाउंट

play06:09

एक्सेस करने के बाद आपने तो डाटा वे समय

play06:12

एक्सेस करने का परमिशन दे दे रहा अगर

play06:14

अकाउंट लॉगिन करने के बाद हम इसमें कुछ भी

play06:16

वीडियोस लेकर पिक्चर अपलोड करते हैं अपने

play06:19

Facebook अकाउंट में तो वीडियो पिक्चर भी

play06:21

जाकर डाटा बेस में हमारे अकाउंट में इसको

play06:23

रहता है ताकि हम जब भी चाहे अपने उस

play06:27

पिक्चर वीडियो जो मैंने अपलोड किया है उसे

play06:29

हम एक्ट्रेस कर सके तो डेटाबेस का यही काम

play06:32

होता है डाटा को एक्सेस करवाना और साथ ही

play06:35

साथ हमारे डाटा को अच्छे से मैनेज करके

play06:37

रखना डेटाबेस समय सिक्योरिटी भी देता है

play06:39

और हमारे डाटा को डिलिट करता मतलब अगर आप

play06:42

रोम यूजर पासवर्ड देंगे हमारा अकाउंट यह

play06:45

ओपन करके नहीं देगा ठीक है तो यहां पर यह

play06:47

सारी चीजें होती है डेटाबेस में अभी चलो

play06:50

हम आपको बता देते हैं डेटाबेस यूज करने का

play06:53

एडवांटेज क्या होता है सबसे पहले डाटा

play06:55

रिट्रीवाल इसका मतलब हमें चाहिए डे

play06:58

यह मैं रिट्रीव करके देता है सेकंड

play07:01

डेटाबेस समय सिक्योरिटी प्रोवाइड करता था

play07:03

कि हमारा डाटा चोरी ना हूं ठीक है डाटा

play07:06

रिडंडेंसी इसका मतलब डुप्लीकेट ऑफ डाटा भी

play07:09

इसमें आसानी से हम रख सकते हैं मैंने इस

play07:11

कर सकते हैं अगर एक डुप्लीकेट डाटा में

play07:13

कुछ चेंजेस करते हुए दूसरे वाले में कोई

play07:15

अकाउंट नहीं जाता है डाटा इंटिग्रेटिव

play07:19

इसका मतलब क्या हुआ कि हम चाहे तो अपने

play07:20

डाटा को ट्रांसपेरेंट लगाकर यूनिक डाटा

play07:23

बना सकते हैं अगर हमें मानो किसी कॉलम में

play07:26

यूनिक डाटा रखना है तो हम ट्रांसपेरेंट

play07:28

यानि बिजनेस रूल्स अप्लाई करके अपने कॉलम

play07:31

में प्राइमरी की या फिर यूनिक लगाकर डाटा

play07:33

को यूनिक कर सकते हैं उसमें डिलीटेड डाटा

play07:35

नहीं जाएगा तो उसी को डाटा इंटिग्रेटिव

play07:38

बोलते हैं यह में फैसिलिटी प्रोवाइड करता

play07:40

है कि डिलीटेड डाटा को भी आप रोक सकते हैं

play07:42

अगर आप चाहे तब इंजेक्शन का मतलब क्या हुआ

play07:45

कि अगर अपडेट आपको रिट्रीव कर दें उसका

play07:47

कुछ स्पीड होता है वह स्पीड को रिप्रेजेंट

play07:50

करता है यह इंडेक्सिंग तो अभी हम आपको यह

play07:53

बताते हैं हम डिस्क्रिप्शन में आपको एक

play07:55

लिंक दे रहा है उस लिंक मैं आपको यह बताएं

play07:57

कि

play07:58

श्रवण डेटाबेस को कैसे डाउनलोड और इंस्टॉल

play08:02

करना ठीक है इससे बेहतर मैंने इस वीडियो

play08:05

में बताया जो वीडियो का लिंक आपको

play08:07

डिस्क्रिप्शन में मिलेगा आप उस विडियो को

play08:09

देखकर सबसे पहले अपने सिस्टम में और एक

play08:12

डेटाबेस को डाउनलोड और इंस्टॉल कर लीजिए

play08:14

डाउनलोड इंस्टॉल करने के बाद कंप्यूटर

play08:16

सिस्टम में ओरेकल डाटा आप इसको ओपन कैसे

play08:19

करना है उसमें काम कैसे करना है चलिए अब

play08:21

हम आपको वह चीज बताते हैं सिस्टम में

play08:24

ओरेकल डाटा बेस इंस्टॉल हो जाने के बाद

play08:26

अभी हमें क्या करना है ओरेकल डाटा वे इसको

play08:28

ओपन करके उसमें काम करना है टेबल क्रिएट

play08:31

करना है रिकॉर्डिंग सेट करना है रिकॉर्ड

play08:33

को प्रेस करना है वह हम कैसे करेंगे उसके

play08:36

लिए हमें यहां पर सर्च बार में आना है और

play08:37

सर्च करना है रन एसक्यूएल कमांड लाइन आपको

play08:43

इतना यहां पर सर्च करना जवाब सर्च करेंगे

play08:46

तो आपको यह ऑप्शन दिखेगा आपको इस पर क्लिक

play08:48

करना है जब आप इस पर क्लिक करेंगे तो आपके

play08:51

सामने इस तरह का विंडो अपन होगा सबसे पहले

play08:53

आप यहां पर देखिए ऐसा क्यों लिखा हुआ

play08:56

एस्क्यूलेंटस लैंग्वेज इसका यूज करें

play08:58

यहां पर डाटा बेस करता अपने डाटा को मैंने

play09:01

प्लेट करने के लिए यानि मैंने इस करने के

play09:03

लिए इसी फेस्टिवल लैंग्वेज के थ्रू हम और

play09:06

एक्टर डेटाबेस में टेबल क्रिएट कर सकते

play09:07

हैं उसमें रिकॉर्डिंग सेट कर सकते हैं

play09:10

रिकॉर्ड को फैक्स कर सकते हैं डाटा में

play09:12

मॉडिफिकेशन कर सकते हैं जो भी हम करना

play09:14

चाहे सबसे पहले तो हमें क्या करना होगा

play09:17

अपने ओरेकल डाटा बेस 11g से कनेक्ट होना

play09:20

पड़ेगा तो हम क्या करते हैं यहां पर

play09:22

लिखेंगे कनेक्ट फिर हम से पूछेगा एंटर

play09:26

यूजर नेम यूजर नेम मैं आपको वही यूजर नेम

play09:28

देना है जो आपने इंस्टॉलेशन के टाइम में

play09:30

दिया था तो हमने इंफार्मेशन के टाइम में

play09:33

यूजर नेम सिस्टम लिया था मैं पर सिस्टम

play09:35

देते हैं एंटर फिर पासवर्ड पूछेगा तो

play09:38

पासवर्ड आपको यहां पर टाइप करना है लेकिन

play09:40

वह दिखाई नहीं देगा अगर आप सही पासवर्ड

play09:42

टाइप करके एंटर मारेंगे तो आपको बोलेगा

play09:45

कनेक्टेड इसका मतलब हम अपने डेटाबेस से

play09:48

कनेक्ट हो चुके हैं अब हमें क्या करना है

play09:50

अपने डेटाबेस में टेबल क्रिएट करना है

play09:53

टेबल क्रिएट करने के लिए कमांड होता है

play09:55

क्वेरी होता है कि

play09:58

ए टेबल टेबल का निर्णय लेते हैं एमपी एमपी

play10:02

हमारे ट्रेवल करने में ठीक है उसके बाद

play10:05

यहां पर पहला कॉलम हम बनाते हैं सीआईडी

play10:08

इसका टाइप होगा नंबर दूसरा कॉलम होगा

play10:12

हमारा यह नेम इसका टाइप हम दे देते हैं यह

play10:16

इसमें हम करेक्टर टाइप कर लू ले लो अ

play10:24

कि उसके बाद हम क्या करते हैं एक और कॉलम

play10:26

यहां पर बना लेते हैं तो कहना देंगे जितने

play10:28

भी कॉलम आप बनाएंगे को मार देते हुए

play10:31

चलेंगे एड्रेस यानी कि इसका टाइप करके

play10:36

उसमें करेक्ट टाइम टेबल इसका मतलब नाम पर

play10:46

एक डेटाबेस में बन चुका है अगर हम क्या

play10:50

करेंगे इसमें डिस्क्रिप्शन ऑफ़ अ

play10:56

कि यहां पर देखो नेम में हमारा यह तीन

play10:58

कॉलम आ चुका है यह आईडी नेम ऐड्रेस जो

play11:01

हमने अपने एमपी टेबल में क्रिएशन के टाइम

play11:04

में लिखा था बनाया था वह बन चुका है इनका

play11:06

टाइप इधर देखो मेंशन हो रहा अभी हमें क्या

play11:09

करना है रिकॉर्डिंग सेट करना है अपने एमपी

play11:11

टेबल में तो क्वेरी हमारे यहां पर पास

play11:14

करेंगे इंसर्ट इनटू MP3 में लिखना होगा

play11:19

वाली इसकी वैल्यू इनपुट कर रही है एमपी

play11:22

टेबल में सबसे पहले अमेज्ड इनपुट करना

play11:25

उसका नंबर है यहां पर एक नंबर देते हैं

play11:29

रमेश ने यहां पर देना होगा तो किसी भी तरह

play11:34

सब्सक्राइब को फोल्ड करना होता है इसके

play11:39

अंदर लेते हैं फिर हम क्या करेंगे फिर

play11:48

सब्सक्राइब यहां पर एड्रेस दे देते हैं

play11:52

फिर से बजा दो

play11:56

किड यानि हमारा यह तीनों रिकॉर्ड एमपी

play11:59

टेबल में इंसल्ट हो चुका है अगर हमें

play12:02

देखना और हम लिखेंगे सिलेक्ट स्टार फ्रॉम

play12:06

एमपी तो यहां पर स्टार का मतलब यह हुआ कि

play12:10

एमपी टेबल में जितने भी रिकॉर्ड है मुझे

play12:12

सभी दिखाओ सिलेक्ट करके एंटर मारते हैं तो

play12:15

यहां पर देखो हमारा यह कॉलम हो गया तीनों

play12:19

कॉलम के नीचे तीनों का रिकॉर्ड यहां पर

play12:21

एमपी टेबल का दिखा रहा हूं और भी रिकॉर्ड

play12:24

अगर इन सेट करना हुआ तो यहां पर हम क्या

play12:26

करेंगे 10:00 120 लिखेंगे इंप्लाई नेम

play12:29

यहां पर चेंज कर देते हैं और इंप्लॉइ का

play12:32

एड्रेस यहां पर अभी हम बदल देते हैं

play12:34

साक्षी ठीक है इंटर मारते एक और रो क्रिएट

play12:39

हो गया यह रिकॉर्ड भी इंट्रस्ट हो चुका है

play12:41

अब हमें कॉल रिकॉर्डिंग सेट कर देते हैं

play12:43

अतिथि एड्रेस दे देते हैं डिन्नर

play12:47

कि उसके बाद इन अप्लाई करने देते हुए

play12:52

अखिलेश उसके बाद इसका की टीम रहते हैं अगर

play12:58

आप टेबल का रिकॉर्ड रखना चाहिए सिलेक्ट

play13:00

स्टार्ट फ्रॉम आप यूज करेंगे तो इस तरह से

play13:04

आप देख सकते हैं कि इस तरह से प्रेस कर

play13:07

सकते हैं यहां पर यह सारा रिकॉर्ड में अगर

play13:14

मुझे को डिलीट करना मुझे यहां पर लिखना

play13:17

होगा ड्रॉप टेबल टेबल टेबल टेबल और टू-डू

play13:28

लिस्ट से यह इस तरह से आप और डेटाबेस में

play13:35

को क्रिएट करके उसमें सेट कर के डाटा को

play13:40

डिलिट कर सकते हैं अगर आपको वीडियो पसंद

play13:42

आया तो लाइक करें शेयर करें और सबसे पहले

play13:45

मैं आपको इस वीडियो में हमने आपको क्या

play13:47

तो सबसे पहले तो पर आकर डाटा बेस क्या

play13:51

होता है हमने आपको यह बताया उसके बाद उसके

play13:54

बाद हमारा का डेटाबेस का हिस्ट्री बताएं

play13:56

आपको फिर हमने क्या बताया कि रिलेशनल वर्ड

play13:59

का मतलब क्या होता है कौन सा डेट आईएस

play14:01

रिलेशनल होता है उसके बाद डेटाबेस का मतलब

play14:04

हमने आपको बढ़िया से समझाया फिर ओरेकल

play14:07

डाटा बेस को इंस्टॉल कैसे करना है उसका

play14:09

लिंक भी मैंने डिस्क्रिप्शन में गुड नाइट

play14:11

करके आपको वह भी समझाया फिर और एक डेटाबेस

play14:14

में काम कैसे करना है हमने यह भी देखा

play14:16

आपको बता दूं कि ओरेकल जो है वह डेटाबेस

play14:19

का नियम है लेकिन और रेल कॉर्पोरेशन उस

play14:22

कंपनी का नाम है जिसने डेटाबेस को और एक

play14:25

डेटाबेस को डेवलप किया था अगर आपको हमारा

play14:27

यह वीडियो पसंद आया हो तो लाइक करिए और

play14:29

शेयर करिए चैनल पर है सब्सक्राइब कर दीजिए

Rate This

5.0 / 5 (0 votes)

関連タグ
Oracle DatabaseDatabase BasicsInstallation GuideCreate TablesSQL CommandsData ManagementDatabase SecurityDatabase HistoryTutorial VideoRelational Databases
英語で要約が必要ですか?