I am wondering... does anyone know what the subtle difference is that I need to do with my syntax to have a successful INNER JOIN of two .csv's in Tm1?
I did this in Cognos Analyst and was successful!! So, I know an INNER JOIN can be done between two .csv's.
My syntax that works successfully in Analyst is:
Code: Select all
SELECT
A.MPN as vMPN ,
A.Date as vMonth ,
A.Version as vVersion ,
A."Revenue Actual" as vRevenue ,
B."Profit Center" as vProfitCenter
FROM
"Load SSD Revenue Actuals.csv" A INNER JOIN "SSD MPN.csv" B
ON
A.MPN = B."SSD MPN"
WHERE
(A.MPN like 'MTFD%'
OR
A.MPN like 'CT%')
AND
B."Profit Center" like 'MT600A%'
Code: Select all
SELECT
[A.MPN] as vMPN ,
[A.Date] as vMonth ,
[A.Version] as vVersion ,
[A.Revenue Actual] as vRevenue ,
[B.Profit Center] as vProfitCenter
FROM
[Load SSD Revenue Actuals.csv] A INNER JOIN [SSD MPN.csv] B
ON
[A.MPN] = [B.SSD MPN]
WHERE
([A.MPN] like 'MTFD%'
OR
[A.MPN] like 'CT%')
AND
[B.Profit Center] like 'MT600A%'
I've reached out to various folks at my company, but unfortunately, no one knows what the issue may be. Thanks a lot for any help/guidance you can provide!!