2012年2月8日 星期三

OBIEE Migration Between DEV and PROD

Migrating OBIEE Projects Between DEV and PROD Environments

Link: http://www.rittmanmead.com/2008/04/migration-obiee-projects-between-dev-and-prod-environments/

This is a note for further study only. Please reference to original blog Rittman Mead Blog .


2010年6月1日 星期二

Runtime IWshShell3 Failed

A troubleshooting request from the customer.
The issue is that he or she run into a VBA error when trying to run Informatica Workflow with pmcmd command.

The error is "Runtime IWshShell3 Failed".

Google for the answer, and got a possible solution as

Replace this:
Sh.Run "G:\DATA\123FILES\Special Assets Project\Monthly_Import\filemove.fxp"
By this:
Sh.Run """G:\DATA\123FILES\Special Assets Project\Monthly_Import\filemove.fxp"""
Or this:
Sh.Run Chr(34) & "G:\DATA\123FILES\Special Assets Project\Monthly_Import\filemove.fxp" & Chr(34)


Not try the solution yet, but memorize it first.