Recently I have encountered a problem while create table in SAP HANA , I had no clue about the error .. I was getting the error from below
table.columns = [
{name = "orderID" ;sqlType = NVARCHAR ;nullable = false ;length = 10 ;},
{name = "Createdby" ;sqlType = NVARCHAR ;nullable = false ;length = 10 ;},
{name = "Createdat" ;sqlType = DATE ;nullable = false ;},
{name = "Currency" ;sqlType = NVARCHAR ;nullable = false ;length = 10 ;},
{name = "Total" ;sqlType = DECIMAL ;nullable = false ;length = 10 ;
defaultValue = "0";}
];
Error is "unable to parse '{' expected " .
later I found that , there is an empty line between the data and the square bracket ..
I just deleted the empty line and starting working .. quite strange :(
Hope this helps someone who is facing this issue.
Similar problem I come across recent days is that
Error : The processing instruction target matching "[xX][mM][lL]" is not allowed.
above error is occured while parsing the xml file by the application
Soln : you might have added some space in the beginning of the application , just remove the space and f5 .
table.columns = [
{name = "orderID" ;sqlType = NVARCHAR ;nullable = false ;length = 10 ;},
{name = "Createdby" ;sqlType = NVARCHAR ;nullable = false ;length = 10 ;},
{name = "Createdat" ;sqlType = DATE ;nullable = false ;},
{name = "Currency" ;sqlType = NVARCHAR ;nullable = false ;length = 10 ;},
{name = "Total" ;sqlType = DECIMAL ;nullable = false ;length = 10 ;
defaultValue = "0";}
];
Error is "unable to parse '{' expected " .
later I found that , there is an empty line between the data and the square bracket ..
I just deleted the empty line and starting working .. quite strange :(
Hope this helps someone who is facing this issue.
Similar problem I come across recent days is that
Error : The processing instruction target matching "[xX][mM][lL]" is not allowed.
above error is occured while parsing the xml file by the application
Soln : you might have added some space in the beginning of the application , just remove the space and f5 .
No comments:
Post a Comment