I am using IICS with A WINDOWS environment. I would like to know if there is any method to run the .bat script using the COMMAND TASK ? I could see steps to run the .bat file in the linux env. but not in windows
Running a .bat script in IICS informatica using Command task
402 views Asked by BEING_CODER At
1
There are 1 answers
Related Questions in INFORMATICA-POWERCENTER
- How to convert ansii file to utf-8 encoded file through informatica workflow?
- How to match the values generated by MD5 hash (Informatica) and Standard hash (Oracle)?
- Subtaskflow is getting suspended instead of failed in IICS
- Instr to find the exact pattern match in informatica
- Ho to change existing MD5 checksum value to make it different from previous value
- Informatica new line and carriage return
- Unable to read the JSON array element data from event based kafka topic message connection in IICS/IDMC
- Affected rows from seesion logs does not reflect in actual target table in Informatica
- Sequence-id in associated expression for dynamic lookup in Informatica Powercenter
- how to lookup on a table based on a null key in informatica powercenter
- PMCMD Command to get session statistics Informatica
- can we use informatica power center to load into teradata cloud?
- Informatica Incremental Load using greenplum writer
- How to call APIs in Informatica Powercenter
- how to create ETL to dynamically get the port name
Related Questions in INFORMATICA-CLOUD
- Informatica sorter transformation performance tunning related to cache allocation
- Informatica Cloud Target file column order
- to find the highest sal employees and add only those employess in target by using IICS or informatica
- Upload file to s3 browser through batch script
- Consume data from wsdl and expose the data as Rest or soap through Informatica cloud to be consumed by Salesforce application
- Informatica relational connection password change
- How to process salesforce error files in informatica cloud
- What will happen if one column mentioned as primary key in DB and other column as primary key in mapping structure in infomratica
- Need to convert the double data type precision of scale 1 to 2 in informatica cloud expression transformation
- make source and target to be sync in informatica
- How to I execute part of a daily workflow only on Sundays
- Databricks and Informatica Delta Lake connector spark configuration
- SQL Works in SQL Developer but not in Informatica Cloud (IICS)
- I want to convert json format data in java object in Java transformation
- Remove leading space in time stamp in Windows
Related Questions in IICS
- Impact of PRE-SQL and POST -SQL on Push Down Optmisation in IICS
- Scheduling Informatica IICS taskflow
- Subtaskflow is getting suspended instead of failed in IICS
- IICS, Unable to unpublish the TaskFlow using Rest API in POSTMAN
- IICS Mapping task
- Redshift Staging Bucket name in IICS
- Getting Extra escape character while loading the data from Onprem to Redshift DB using Informatica Cloud
- Char(39) equivalent in iics taskflow
- I want to migrate Tables from one server to another server using IICS in a single shot ( Multiple Table migration at Same time), Any solution?
- Informatica cloud (IICS)
- Reading multiple source files from IICS internal server
- Can we created an API that accepts multipart/mixed type requests and store the request data in CSV on IICS
- Informatica new column data loading into existing target table
- Running a .bat script in IICS informatica using Command task
- How to capture the fname of file in the IICS Infromatica mass ingestion?
Related Questions in INFORMATICA-DATA-INTEGRATION-HUB
- IICS, Unable to unpublish the TaskFlow using Rest API in POSTMAN
- Unable to read the JSON array element data from event based kafka topic message connection in IICS/IDMC
- Informatica Incremental Load using greenplum writer
- Running a .bat script in IICS informatica using Command task
- Looping in Informatica Cloud
- Aggregator transformation
- Informatica like operator
- XML Read in Informatica BDM 10.5.3
- How to create a rest web service in informatica cloud (IICS)?
- IICS: How to deal with API which returns first character as a number but not letter?
- Informatica Incremental extract and load process
- Informatica: dealing with double quotes using expression tranformation
- IICS: How to increase string precision in business services response fields
- IICS TO_DATE() function formatting question
- IICS Error: "Concatenation disallowed on transformation Joiner. "
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You can not run .bat file in linux. So you either have to modify the script to shell or you can install "wine" package in Linux to use it. You have to do this in IICS secure agent server.
Option 1 - modify the bat script in shell script.
Option 2 - Install wine in Linux. You can download wine package from https://www.winehq.org/ and install in linux.
Once installed, change user's bashrc file (~/.bashrc). Add
Type below script to run your bat_script file in Informatica cmd task.