Write data from TM1 to MSSQL2000 via ODBC
Posted: Mon Jul 14, 2008 7:36 am
I'm trying to create TI for update data back to MSSQL but it doesn't work.
Here is my TI script.
on Data tab
ODBCOpen('TM1MSSQL','xxx','xxx');
ODBCOutput('TM1MSSQL', INSERT INTO Season_Index ( Version, Year, Month, Entity, Assumption_Measure, Percent_Inc ) VALUE("%Version%","%V2%","%V3%","%Entity%","%Assumption_Measure%", %Percent_Inc% )' );
ODBCClose('TM1MSSQL');
This process run completed successfully but there is no update on my MSSQL200 in Season_Index table
Can anyone give me a suggestion?
Here is my TI script.
on Data tab
ODBCOpen('TM1MSSQL','xxx','xxx');
ODBCOutput('TM1MSSQL', INSERT INTO Season_Index ( Version, Year, Month, Entity, Assumption_Measure, Percent_Inc ) VALUE("%Version%","%V2%","%V3%","%Entity%","%Assumption_Measure%", %Percent_Inc% )' );
ODBCClose('TM1MSSQL');
This process run completed successfully but there is no update on my MSSQL200 in Season_Index table
Can anyone give me a suggestion?