Learn about Oracle and learn how to get started

Source: Internet
Author: User

Learn about Oracle and learn how to get started

Unable to log on upon login: No listener program --- start service OracleXETNListener listener unable to identify request service in connection description ---- Restart service OracleServiceXE check host value of tnsnames. ora

When PL/SQL is not installed: Run sqlplus to log on, and view all Oracle users in the user_tables table: end with a statement.

Oracle Data Type: character data type: char, varchar2, nchar, nvarchar2 numeric data type: number date and Time data type: date, timestamp LOB data type: blob, clob, bfile ** varchar, integer, float, double, and Other types are not recommended.

Pseudo column: rowid: identifies the data in the database rownum: commonly used for writing Paging

-- Paging Query
-- (PageNo-1) * pagesize = start row pageNo * pagesize = end row

Select * from (
Select rownum rm, s. * from (
Select * from myfirsttb order by stuage desc) s where rownum <= 5) where rm> = 1;

Experience: After adding or deleting a modification statement in oracle, you must submit the transaction to take effect before committing or rolling back: commit/rollback

Related Article

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.