Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|
Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|
A new configuration parameter "keywords_addressed_using_doublequote" should be introduced with the below value:
keywords_addressed_using_doublequote=freeze
keywords_addressed_using_as=owner,attribute,source,freeze
create table t12 (c1 int, FREEZE varchar(10)); ==> create table t12 (c1 int, "freeze" varchar(10));
select c1, Freeze from t12; ==> select c1, "freeze" from t12;
select c1 freeze from t12; ==> select c1 as freeze from t12;
Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|
Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|