ODBCOutPut Data Export
Posted: Fri Sep 25, 2015 7:19 pm
Hello All
I was trying to delete 55000 rows from the relational table from existing ODBC output TI process. Inserting Data activity is fast as it should be in TM1 but deleting rows is too slow. The code for delete rows are as under:
vSql='Delete From [M1].[dbo].[Report]
Where Month=''%v2%'' and Year=''%v1%''';
ODBCOutput('production',Expand(vSql));
Is there a way to execute above code faster from ODBC output TI itself instead of following way ?
=> Alternate Way i approached:
I did achieve it through batch file where other TM1runTIs are integrated. It is fast also.
I was trying to delete 55000 rows from the relational table from existing ODBC output TI process. Inserting Data activity is fast as it should be in TM1 but deleting rows is too slow. The code for delete rows are as under:
vSql='Delete From [M1].[dbo].[Report]
Where Month=''%v2%'' and Year=''%v1%''';
ODBCOutput('production',Expand(vSql));
Is there a way to execute above code faster from ODBC output TI itself instead of following way ?
=> Alternate Way i approached:
I did achieve it through batch file where other TM1runTIs are integrated. It is fast also.