SQL developer

SQL developer


Introduction to SQL Develope

SQL Developer provides a workspace for the development of the databases using the SQL programming, which is known as Integrated Development Environment or IDE. It is an open-source tool provided by Oracle that has a user-friendly Graphical User Interface (GUI) and supports all the other tools from Oracle. SQL is the widely used application software, as it facilitates various operations in one place, such as DBA processes, workspace to create and run queries, UI for report generation, etc.

Steps to Install SQL Developer
You can install it from the Oracle website, but you need to have an account on it to create an account.
Install the required version of the Oracle SQL Developer.
Install Oracle Database 10g and Sample Schema.
Unlock the HR user and log in as the SYS user and type command: alter user hr identified by hr account unlock.
Download and unzip the files.zip that contains all required files to a local folder on your system.

The first task after installation is to create a connection to the Oracle Database using Oracle SQL Developer.

Steps to Create Database Connection

Following are the steps to create a database connection.

1. Open Oracle SQL Developer.

2. Now, under Connections, right-click on the Connections, and the Connection menu appears. Click on New Connection.

3. The New/Select Database Connection Dialog Box will appear.

4. Enter the following details in the fields of the above-appeared dialog box.

Connection Name: Name of Cloud Connection
User Name: Database Username
Password: Your choice (then check the checkbox Save Password)
Hostname: Your local hostname
SID: Your own SID
Then click on Test

For example:

5. You can check the status of testing on the bottom left side. Then click connect and save.

6. The connection would be saved, and the new connection would appear under.

 Popular Course in this category
SQL Training Program (7 Courses, 8+ Projects)
7 Online Courses | 8 Hands-on Projects | 73+ Hours | Verifiable Certificate of Completion | Lifetime Access
4.5 (8,845 ratings)
Course Price
?6999 ?41999

View Course
Related Courses
JDBC Training (6 Courses, 7+ Projects)PHP Training (5 Courses, 3 Project)Windows 10 Training (4 Courses, 4+ Projects)PL SQL Training (4 Courses, 2+ Projects)Oracle Training (14 Courses, 8+ Projects)

After creating a connection, you can use existing objects of Oracle SQL Developer or can create new also. Now let us see how to browse already existing objects.

Browsing Objects in Oracle SQL Developer

1. Expand the newly added connection.

You can use any object like tables, views, indexes, packages, triggers, sequences, synonyms, directories, types, materialized views, functions, and many more. But we will see in brief how we can use tables.

2. Expand Tables.

3. You can select any table from the list to view the table definition and click the Data tab.

In the figure below, we have selected the DEPARTMENTS table. You can then see the data present in the table.

You can apply various operations on a table like sorting, filtering data, applying various constraints, and many more. For example, you can apply to sort by clicking the arrow icon next to the name of the column you want to sort.

Creating Objects in Oracle SQL Developer

You can create dialogs for each supported object type. Oracle SQL Developer also supports Temporary tables, External tables, lists, Partitioned tables, Index Organised tables, and many more object types.

1. Right-click on.

2. Select a New Table.

3. Enter the Table Name and check the Advanced.

4. Enter information for the first column as mentioned below:

Column Name: Performance_id
Type: VARCHAR
Size: 3
Not Null: Select it
Primary Key: Select it

5. Enter information for the second column as below:

Column Name: Name
Type: Varchar
Size: 40
Not Null: Select it
Primary Key: Leave it

6. Similarly, enter information for as many columns as you require.

7. Click OK.

8. The new table would be created under TABLES.

9. To see it, you can expand the TABLES and then use them to perform SQL commands.

The Not Null and Primary Key is the integrity constraint which states what type of data can be inserted in each column. There are more integrity constraints that can be applied to restrict the type of data that is valid for a respective column.

Let us briefly see what these integrity constraints do.

There are basically five integrity constraints:

NOT NULL: This constraint ensures that data must be present in that column. A null value cannot be inserted in that column.
Unique: This constraint ensures that each value in the column must be unique, i.e., no repetition of values. This constraint can be applied on multiple columns together as a group called as Composite Unique. It does not say anything about Null value.
Primary Key: This constraint ensures the properties of both NOT NULL and UNIQUE constraints, i.e. multiple rows cannot have the same value and prevent null value simultaneously.
Foreign Key: This constraint states that for each value in the column on which the constraint is applied, there must be the same or matching values in other specified tables and columns. It is basically called referencing other tables.
Check: This constraint is not used frequently, but it ensures that values must satisfy the specified condition. The condition can be the logical expression or comparison expression depending upon the need for the restrictions to be applied.r

要查看或添加评论,请登录

Darshika Srivastava的更多文章

  • CCAR ROLE

    CCAR ROLE

    What is the Opportunity? The CCAR and Capital Adequacy role will be responsible for supporting the company’s capital…

  • End User

    End User

    What Is End User? In product development, an end user (sometimes end-user)[a] is a person who ultimately uses or is…

  • METADATA

    METADATA

    WHAT IS METADATA? Often referred to as data that describes other data, metadata is structured reference data that helps…

  • SSL

    SSL

    What is SSL? SSL, or Secure Sockets Layer, is an encryption-based Internet security protocol. It was first developed by…

  • BLOATWARE

    BLOATWARE

    What is bloatware? How to identify and remove it Unwanted pre-installed software -- also known as bloatware -- has long…

  • Data Democratization

    Data Democratization

    What is Data Democratization? Unlocking the Power of Data Cultures For Businesses Data is a vital asset in today's…

  • Rooting

    Rooting

    What is Rooting? Rooting is the process by which users of Android devices can attain privileged control (known as root…

  • Data Strategy

    Data Strategy

    What is a Data Strategy? A data strategy is a long-term plan that defines the technology, processes, people, and rules…

  • Product

    Product

    What is the Definition of Product? Ask a few people that question, and their specific answers will vary, but they’ll…

  • API

    API

    What is an API? APIs are mechanisms that enable two software components to communicate with each other using a set of…

社区洞察

其他会员也浏览了