Create Sequence
In this section, you will find information about the transformation done to the Create Sequence in Oracle.
Input Code:
CREATE SEQUENCE SequenceSample
START WITH 1000
INCREMENT BY 1
NOCACHE
NOCYCLE;Output Code:
CREATE OR REPLACE SEQUENCE SequenceSample
START WITH 1000
INCREMENT BY 1
COMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},{"attributes":{"component":"oracle"}}';SEQUENCE EXPRESSIONS
Input Code:
Output Code:
Sequence START WITH
Example Code
Input Code:
Output Code:
Related EWIs
Last updated