StartBackground Script Examples: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
This page contains examples for the [[ | This page contains examples for the [[SQL Scripting Commands#--.23StartBackground|StartBackground]] command. | ||
The following example will first show a "Starting SAP import" message in the user interface, then run an import from SAP that is executed in client side, then enter the background execution mode and then create a new model based on the extracted data. | The following example will first show a "Starting SAP import" message in the user interface, then run an import from SAP that is executed in client side, then enter the background execution mode and then create a new model based on the extracted data. |
Revision as of 20:47, 25 October 2021
This page contains examples for the StartBackground command.
The following example will first show a "Starting SAP import" message in the user interface, then run an import from SAP that is executed in client side, then enter the background execution mode and then create a new model based on the extracted data.
Print 'Starting SAP import' (SELECT 'SapAppServerHost', '127.0.0.1') UNION ALL (SELECT 'SapSystemNumber', '10') UNION ALL (SELECT 'SapUser', 'qpr') UNION ALL (SELECT 'SapPW', 'demo') UNION ALL (SELECT 'SapRouter', '') UNION ALL (SELECT 'SapClient', '200') UNION ALL (SELECT 'SapLanguage', 'EN') UNION ALL (SELECT 'SapPoolSize', '5') UNION ALL (SELECT 'SapPeakConnectionsLimit', '10') UNION ALL (SELECT 'SapConnectionIdleTimeout', '600') UNION ALL (SELECT 'ExecuteInClientSide', '1') UNION ALL (SELECT 'DataTargetName', 'SAPDATA') UNION ALL (SELECT 'Append', '0') UNION ALL (SELECT 'SapWhereClause', 'VBELN BETWEEN `0060000039` AND `0060000041`') UNION ALL (SELECT 'SapQueryTable', 'VBAK') --#ImportSapQuery (SELECT 'Enabled', 'TRUE') --#StartBackground (SELECT 'AnalysisType', '18') UNION ALL (SELECT 'DataTableName', 'SAPDATA') UNION ALL (SELECT 'TargetTable', '#SAPDATA') --#GetAnalysis (SELECT 'ModelName', 'NewModel'); (SELECT * from #SAPDATA; --#ImportEvents