1 / 17

ORACLE SESSION

ORACLE SESSION. ORACLE SESSION. Execute IE to link to the website of ORACLE iSQL*Plus https://oraeng01.syr.edu:5560/isqlplus Login in Username is your NetID username, Password is orange , Connect Identifier is cse581. ORACLE SESSION. We will discuses :

walda
Download Presentation

ORACLE SESSION

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ORACLE SESSION CSE 581,EECS, SU

  2. ORACLE SESSION • Execute IE to link to the website of ORACLE iSQL*Plus https://oraeng01.syr.edu:5560/isqlplus • Login in Username is your NetID username, Password is orange , Connect Identifier is cse581 CSE 581,EECS, SU

  3. ORACLE SESSION • We will discuses : • Create table, • Insert/Delete/Update data, • Drop table, CSE 581,EECS, SU

  4. Login into ORACLE iSQL*Plus https://oraeng01.syr.edu:5560/isqlplus CSE 581,EECS, SU

  5. Work Space of ORACLE iSQL*Plus CSE 581,EECS, SU

  6. EXAMPLE DATA CSE 581,EECS, SU

  7. CREATE ATABLE • CREATE TABLENAME (attr1 datatype1, attr2 datatype2,…); Datatype examples - number(e.g. 1024), real or float (10.24), varchar2(‘ABC12’) CSE 581,EECS, SU

  8. INSERT TO TABLE (Ⅰ) • INSERT INTO tablename VALUES(value1,value2…) CSE 581,EECS, SU

  9. RESULTS after INSERT • SELECT * FROM CSE581; CSE 581,EECS, SU

  10. INSERT TO TABLE (Ⅱ) • INSERT INTO tablename (attr1, attr2) VALUES(value1,value2) CSE 581,EECS, SU

  11. RESULTS after INSERT • SELECT * FROM CSE581; CSE 581,EECS, SU

  12. DELETE DATA CSE 581,EECS, SU

  13. RESULTS after DELETE • SELECT * FROM CSE581; CSE 581,EECS, SU

  14. UPDATE DATA CSE 581,EECS, SU

  15. RESULTS after UPDATE • SELECT * FROM CSE581; CSE 581,EECS, SU

  16. DROP A TABLE • DROP TABLE tablename; CSE 581,EECS, SU

  17. End CSE 581,EECS, SU

More Related