Is there a way in VB6 to run this (and other) DDL statement with ORACLE data base?
[tt]
SET DEFINE OFF;
CREATE SEQUENCE ANDY_SEQ
START WITH 0
MAXVALUE 999999999999999999999999999
MINVALUE 0
NOCYCLE
NOCACHE
NOORDER
NOKEEP
GLOBAL
[/tt]
This is not for any user, just myself. I would like to write a little VB program to help me with some regular tasks in Oracle, like Create a Trigger, add a field to a table, Set the field as a PK, etc. I am also open to do this in VB.NET
---- Andy
There is a great need for a sarcasm font.
[tt]
SET DEFINE OFF;
CREATE SEQUENCE ANDY_SEQ
START WITH 0
MAXVALUE 999999999999999999999999999
MINVALUE 0
NOCYCLE
NOCACHE
NOORDER
NOKEEP
GLOBAL
[/tt]
This is not for any user, just myself. I would like to write a little VB program to help me with some regular tasks in Oracle, like Create a Trigger, add a field to a table, Set the field as a PK, etc. I am also open to do this in VB.NET
---- Andy
There is a great need for a sarcasm font.