0% found this document useful (0 votes)
110 views

PMCMD Commands

The document contains instructions for connecting to an Informatica repository and managing workflows, tasks, and other objects using pmcmd and pmrep commands. It includes starting, scheduling, and stopping workflows and tasks, listing and exporting objects from the repository, and connecting to and querying the repository.

Uploaded by

babjeereddy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
110 views

PMCMD Commands

The document contains instructions for connecting to an Informatica repository and managing workflows, tasks, and other objects using pmcmd and pmrep commands. It includes starting, scheduling, and stopping workflows and tasks, listing and exporting objects from the repository, and connecting to and querying the repository.

Uploaded by

babjeereddy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

pmcmd startworkflow -service informatica-integration-Service -d domain-name -u

user-name -p password -f folder-name -w workflow-name

pmcmd scheduleworkflow -service informatica-integration-Service -d domain-name -u


user-name -p password -f folder-name -w workflow-name

pmcmd stopworkflow -service informatica-integration-Service -d domain-name -u user-


name -p password -f folder-name -w workflow-name

pmcmd startask -service informatica-integration-Service -d domain-name -u user-name


-p password -f folder-name -w workflow-name -startfrom task-name

pmcmd stoptask -service informatica-integration-Service -d domain-name -u user-name


-p password -f folder-name -w workflow-name task-name

pmcmd abortworkflow -service informatica-integration-Service -d domain-name -u


user-name -p password -f folder-name -w workflow-name

pmcmd aborttask -service informatica-integration-Service -d domain-name -u user-


name -p password -f folder-name -w workflow-name task-name

1.1 Connect to Repository


pmrep connect -r <REPO NAME> -d <DOMAIN NAME> -n <USER> -x <PWD>

1.2 ListObjects

1.2.1 Workflow
pmrep listobjects -o workflow -f <FOLDER> | sed '1,8d;/successfully/,$d'
> wf_list_import.txt

1.2.2 Source

pmrep listobjects -o Source -f <FOLDER> | sed '1,8d;/successfully/,$d' >


wf_list_import.txt

1.2.3 Target

pmrep listobjects -o Target -f <FOLDER> | sed '1,8d;/successfully/,$d' >


wf_list_import.txt

1.2.4 Mapplet

pmrep listobjects -o Mapplet -f <FOLDER> | sed '1,8d;/successfully/,$d' >


wf_list_import_mpplt.txt

1.2.5 Transformation
pmrep listobjects -o Transformation -f <FOLDER> | sed
'1,8d;/successfully/,$d' > wf_list_import_mpplt.txt

1.2.6 Worklet

pmrep listobjects -o Worklet -f <FOLDER> | sed '1,8d;/successfully/,$d'


> /wf_list_import_wrklt.txt

1.2.7 Stored Procedures


pmrep listobjects -o transformation -t stored_procedure -f <FOLDER> | sed
'1,8d;/successfully/,$d' > wf_list_import_stproc.txt

1.2.8 Reusable Sessions

pmrep listobjects -o session -f <FOLDER> | sed '1,8d;/successfully/,


$d' > wf_list_import_sess.txt

1.2.9 All Folders

pmrep listobjects -o folder > listfolders.txt;

1.2.10 List User Connections

pmrep listuserconnections sed '1,8d;/successfully/,$d' >


wf_list_cnxs.txt

1.2.11 Listing Tables by Session (Listtablesbysess)

pmrep listtablesbysess -f INFA -s <SESSION NAME> -t target


pmrep listtablesbysess -f INFA -s <SESSION NAME> -t source

1.2.12 Listing Dependencies

pmrep ListObjectDependencies -n <SESSION NAME> -o session -f


<FOLDER> -p both

1.3 Export Object 1.3.1 Source pmrep objectexport -n


<DB.SourceName> -o Source -f <Folder Name> -m -s -b -r u <xml file name>;

1.3.2 Target

pmrep objectexport -n <TargetName> -o Target -f <Folder Name> -m -s


-b -r u <xml file name>;

1.3.3 Transformation

pmrep objectexport -n <LKP Name> -o Transformation -t


lookup_procedure -f <folder> -m -s -b -r -u LKP_LOAN_PARTY.xml;

1.3.4 Task
pmrep objectexport -n <Task Name> -o Task -t Command -f <FOLDER>-m
-s -b -r -u tsk_icr_dly_delete_persistent_files.xml;

1.3.5 Mapplet

pmrep objectexport -n <Mapplet name> -o Mapplet -f <Folder Name> -m -s


-b -r u <xml file name>;

1.3.6 Mapping
pmrep objectexport -n <Mapping name> -o Mapping -f <Folder Name> -m -s
-b -r u <xml file name>;

1.3.7 Session

pmrep objectexport -n <Session name> -o Session -f <Folder Name> -m -s


-b -r u <xml file name>;

1.3.8 Worklet

pmrep objectexport -n <Worklet name> -o Worklet -f <Folder Name> -m


-s -b -r u <xml file name>;

1.3.9 Workflow

pmrep objectexport -n <Workflow name> -o Workflow -f <Folder Name> -m


-s -b -r u <xml file name>;

You might also like