Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Intro to Oracle:SQL & PL/SQL class -HELP
Hi,
I've taught this class many times..I'm looking at the Oracle Education book for SQL, Chapter 9 and it refers to a lab9_1 script.It's just a script to create a table called MY_EMPLOYEE as described in the book..
Her you go:
SQL> CREATE TABLE MY_EMPLOYEE
2 (ID NUMBER(4) PRIMARY KEY,
3 LAST_NAME VARCHAR2(25),
4 FIRST_NAME VARCHAR2(25),
5 USERID VARCHAR2(8),
6 SALARY NUMBER(9,2));
Have fun!
Steve
In article <cdua6.5057$1m.272574_at_bgtnsc04-news.ops.worldnet.att.net>,
"Jolo" <temple_at_techie.com> wrote:
> Has anyone here has taken the Into to Oracle SQL & PL/SQL class ?
>
> I'm doing the labs in chapter 9 on my computer and lo and behold, it
> mentions about running a script called lab9_1.sql. But I don't have it
> although I have all of the other test databases (login as scott,
password =
> tiger).
>
> If anyone has that script so I can continue and finish the practices
in
> chapter 9 (Manipulating Data) PLEASE E-MAIL THE SCRIPT TO ME !!!
>
> Thanks,
>
> Jon Temple
> temples_at_att.net
>
>
Sent via Deja.com
http://www.deja.com/
Received on Sun Jan 21 2001 - 15:13:00 CST
![]() |
![]() |