TM1RunTI - Copy data between different TM1 Servers
Posted: Wed Aug 08, 2012 9:41 am
Hello all experts,
I have got a problem with TM1RunTI in my current project! We need to copy data from one TM1 Server into another TM1 Server. The user needs to press an action button in Perspectives/TM1 Web and all processes have to be executed.
I defined the following processes:
TM1 Server A: Process1 (writes data into CSV)
TM1 Server B: Process2 (reads the CSV and imports the data).
So far, so good. These processes are working fine!
Now I need to create another Process:
TM1 Server B: Process3 (Start Process1 and Start Process2)
This process looks like this:
The config File looks like this:
When saving this TI process, I get the following error:
Syntax Error on or before “tm1runti –I ‘\\..... invalid expression.
Can you tell me what is wrong with my TI Process or with the config file?
Are there any other ways than using TM1RunTI to copy data between different TM1 Servers (Replicating the source cube is not an option)?
Thanks in advance
I have got a problem with TM1RunTI in my current project! We need to copy data from one TM1 Server into another TM1 Server. The user needs to press an action button in Perspectives/TM1 Web and all processes have to be executed.
I defined the following processes:
TM1 Server A: Process1 (writes data into CSV)
TM1 Server B: Process2 (reads the CSV and imports the data).
So far, so good. These processes are working fine!
Now I need to create another Process:
TM1 Server B: Process3 (Start Process1 and Start Process2)
This process looks like this:
Code: Select all
#Prolog
vExec = "tm1runti –i '\\path to config file\config.config' -connect NameofAdminHost -process Process1";
ExecuteCommand(vExec, 1);
ExecuteProcess(‘Process2');
The config File looks like this:
Code: Select all
[TM1RunTI]
process=Process1
connect= NameofAdminHost
[Connect – NameofAdminHost]
adminhost= AdminHostXY
server=TM1 ServerA
user="admin"
pwd ="password"
AdminSvrSSLCertAuthority=.\ssl\applixca.pem
When saving this TI process, I get the following error:
Syntax Error on or before “tm1runti –I ‘\\..... invalid expression.
Can you tell me what is wrong with my TI Process or with the config file?
Are there any other ways than using TM1RunTI to copy data between different TM1 Servers (Replicating the source cube is not an option)?
Thanks in advance