Blaine Carter bae5cbe76a Modified the HoL for Collaborate (#169)
Modified samples and instructions to import common connection information from db_config.py or db_config.sql in order to make setup a bit more generic.
2018-04-20 15:35:17 -07:00

27 lines
717 B
SQL

-------------------------------------------------------------------------------
-- bind_insert.sql (Section 4.2)
-------------------------------------------------------------------------------
/*-----------------------------------------------------------------------------
* Copyright 2017, Oracle and/or its affiliates. All rights reserved.
*---------------------------------------------------------------------------*/
set echo on
@@db_config.sql
connect &user/&pw@&connect_string
begin
execute immediate 'drop table mytab';
exception
when others then
if sqlcode not in (-00942) then
raise;
end if;
end;
/
create table mytab (id number, data varchar2(20), constraint my_pk primary key (id));
exit