I'm trying to execute this query, but I'm getting ORA-00911: invalid character. It appears as if the error is ASCII characters in front of my table name.
CREATE TABLE #RMDist (
Rebate_ID VarChar(MAX),
Rebate_Desc VarChar(MAX),
Sponsor_ID VarChar(MAX),
Sponsor_Desc VarChar(MAX),
GLPeriod INT,
DocType INT,
GLAccount VarChar(MAX),
BusinessEntity INT,
TotalAmount Decimal (15,2)
)