Getting Started (LEGACY)
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
In this section, you will learn about the following topics:
How to install Oracle SnowConvert.
How to migrate your Oracle code.
How to interpret the results after migration.
First, let's suppose you have three different example statements:
An invalid
CREATE TABLE
statement.A
CREATE TABLE
statement (with one syntax error).A
CREATE VIEW
statement.
And we want to migrate them using Oracle SnowConvert.
--Invalid Create Table
CREATE TABLE! table_invalid
(
col1 VARCHAR2(255 BYTE),
col2 VARCHAR2!
);
--Create Table (with an error)
CREATE TABLE table1
(
col1 VARCHAR2(255 BYTE),
col2 VARCHAR2!
);
--Create View (valid example)
CREATE OR REPLACE FORCE VIEW view1
AS
SELECT
XMLSEQUENCE(1),
col1,
col2
FROM table1;
Last updated