Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Very basics on DB access CS3431 - Nov 2012. 2 DBMS? Oracle Accounts already created Documentation: mySQL: To create an account,

Similar presentations


Presentation on theme: "1 Very basics on DB access CS3431 - Nov 2012. 2 DBMS? Oracle Accounts already created Documentation: mySQL: To create an account,"— Presentation transcript:

1 1 Very basics on DB access CS3431 - Nov 2012

2 2 DBMS? Oracle Accounts already created Documentation: http://www.oracle.com mySQL: To create an account, visit http://www.wpi.edu/Academics/CCC Documentation: http://www.mysql.com Many other DBMS engines out there

3 3 Oracle Version at WPI The oracle server SID is WPI11GR2 (or, CS) Version: 11g 11.2.0.3.0 (64 bit version) System name is oracle.wpi.edu port is #1521 Problem: user names cannot have a “.” in them. So for instance, BOLIN.ZHU would be BOLIN_ZHU

4 How to set up path for Oracle If you use CCC linux systems, then you need to source /usr/local/bin/csoraenv file to setup your shell to use oracle On CCC, if your shell is set to /bin/tcsh, then run : source /usr/local/bin/csoraenv On CCC, if your shell is set to /bin/bash, then run : source /usr/local/bin/oraenv To figure out what the type of shell that you use, type: echo $SHELL From your shell prompt, type : echo $PATH 4

5 5 How to set up Oracle Or, set environment variables by adding the needed settings into your.cshrc file on the ccc.wpi.edu machine (which gets sourced automatically when you log on). setenv ORACLE_BASE /usr/local/oracle11gr203 setenv ORACLE_HOME /usr/local/oracle11gr203/product/11.2.0/db_1 setenv PATH ${PATH}:${ORACLE_HOME}/bin setenv ORACLE_SID WPI11GR2 setenv TWO_TASK ${ORACLE_SID}

6 6 How to set up Oracle Or, set environment variables by adding the needed settings into your.cshrc file on the ccc.wpi.edu machine (which gets sourced automatically when you log on). setenv ORACLE_BASE /usr/local/oracle11gr203 setenv ORACLE_HOME /usr/local/oracle11gr203/product/11.2.0/db_1 setenv PATH ${PATH}:${ORACLE_HOME}/bin setenv ORACLE_SID WPI11GR2 setenv TWO_TASK ${ORACLE_SID}

7 7 How to set up Oracle If in tcsh or csh shell, your.cshrc file would be: setenv ORACLE_BASE /usr/local/oracle11gr203 setenv ORACLE_HOME ${ORACLE_BASE}/product/11.2.0/db_1 setenv PATH ${PATH}:${ORACLE_HOME}/bin setenv ORACLE_SID WPI11GR2 setenv TWO_TASK WPI11GR2 setenv LD_LIBRARY_PATH ${ORACLE_HOME}/lib

8 8 How to set up Oracle If in bash shell, your.cshrc file would be: setenv ORACLE_BASE=/usr/local/oracle11gr203 setenv ORACLE_HOME=${ORACLE_BASE}/product/11.2.0/db_1 setenv PATH=${PATH}:${ORACLE_HOME}/bin setenv ORACLE_SID=WPI11GR2 setenv TWO_TASK=WPI11GR2 setenv LD_LIBRARY_PATH=${ORACLE_HOME}/lib

9 9 How to set up Oracle (contd…) If your path is empty, then add one additional line, as below, on top of your.cshrc file : setenv PATH. The rest is as on previous slide

10 10 How to set up Oracle After editing the file “.cshrc “ Please run below: source.cshrc Or, log out and back in.

11 11 Problems while setting up Oracle Important – Set up Oracle immediately and see that it is working you may run into problems, typically due to simple typos or minor setup issues If you have identified a project partner, start working with him/her on this to help each other If you get really stuck, please send a message to mywpi to show a screen-dump of what happens.

12 12 Oracle introduction Connecting sqlplus / Change passwd using password command You will end up submitting your passwd. Therefore don’t use your favorite password that you tend to use for other purposes.

13 13 Oracle useful commands These commands can be executed from SQL shell SELECT * FROM cat; -- lists tables you have created SELECT table_name FROM user_tables; -- as above. DESCRIBE ; -- describes schema for table with name tableName help index; -- shows list of help topics; help start; -- illustrates how to use command start exit; -- exit from SQL shell

14 14 Using Oracle from Windows Multiple ways: Use aquastudio software from aquafold.com. connect to -- server: oracle.wpi.edu port: 1521 (this is the default) SID: WPI11GR2 Download oracle client for windows. Connect using sqlplus client or other tools: sqlplus rundenst/rundenst@//oracle.wpi.edu:1521/cs.wpi.edu


Download ppt "1 Very basics on DB access CS3431 - Nov 2012. 2 DBMS? Oracle Accounts already created Documentation: mySQL: To create an account,"

Similar presentations


Ads by Google