Results 1 to 15 of 17

Thread: oracle 10 i password

Threaded View

  1. #16
    Join Date
    Jul 2003
    Posts
    421
    CREATE SEQUENCE sq;
    CREATE TABLE t_test(
    id INTEGER PRIMARY KEY,
    name VARCHAR(10)
    );
    INSERT INTO t_test(id,name)
    VALUES (sq.nextval,'Andrew');
    INSERT INTO t_test(id,name)
    VALUES (sq.nextval,'Gordon');
    SELECT * FROM t_test;
    select owner, object_name from dba_objects where object_name ='t_test'
    ________
    MEDICAL MARIJUANA STATES
    Last edited by sql; 03-06-2011 at 01:55 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •