Steps to develop Oracle MIS system for Beginners

Source: Internet
Author: User

The difference between Oracle and SQL Server development is that developing a database application with SQL Server typically builds a database and then designs a database object in the database, such as tables/views/stored procedures/functions /diagram/users ... While Oracle is developing an application, it is common to create a database object, followed by the following steps:

1. Create a user's permanent tablespace and temporary tablespace (the corresponding data file will be created when the table space is established)

2. Establish the user and set the user's default tablespace

Create user TX identified by first default tablespace TX temporary tablespace tx_tmp;

3. Set user permissions on a tablespace

Alter user TX quota unlimited on TX;

Alter user TX quota unlimited on tx_tmp;

4. Set permissions for users

such as: Grant Connect, resource, create TABLE, create view to TX;

Remark:it Essays, if reproduced please indicate the source, thank you!

Author:terryxia

Steps to develop Oracle MIS system for Beginners

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.