Search found 16 matches

by dxwwq557
Wed Apr 23, 2014 1:33 am
Forum: General
Topic: Repository Items Cannot Show In Designer
Replies: 4
Views: 1664

Sorry , late reply, the problem have been fixed. it may be caused by client. following are my fixed step.

I use multiple client manager to change version to 8.7 , then change it back to 8.5. the problem fixed.

so I think this is caused by client. :shock:
by dxwwq557
Wed Apr 16, 2014 10:21 pm
Forum: General
Topic: Repository Items Cannot Show In Designer
Replies: 4
Views: 1664

Thanks for your reply, I have checked the version of my client system, it should support the client, ever I installed the clients (including v7.x, v8.x, v9.x) on it. Do you know any other problem could cause this problem?
by dxwwq557
Wed Apr 16, 2014 8:26 pm
Forum: General
Topic: Repository Items Cannot Show In Designer
Replies: 4
Views: 1664

Repository Items Cannot Show In Designer

Hi All,

I faced a problem after installed information server 8.5.

I cannot view the any item from repository pallete in designer, but I could view the job through director. Also could view the items from the [FILE] -> [OPEN] to select the items.

Anyone have faced this problem?
by dxwwq557
Mon Sep 05, 2011 6:08 am
Forum: General
Topic: How to get the server information from service tier
Replies: 6
Views: 3695

the things which I want to do are get the server name ODS15LP05 from service tier ods15lp05.boulder.ds.com:9080 Am I missing something here? The server name service tier is ods15lp05.boulder.ds.com:9080, but this is not the server name for ODS15LP06, as you know , the PSEngine can install in anothe...
by dxwwq557
Fri Sep 02, 2011 4:23 am
Forum: General
Topic: How to get the server information from service tier
Replies: 6
Views: 3695

thanls ur response.

Actully I cannot logon to the server , I only want to create a login view as the client login view.
by dxwwq557
Fri Sep 02, 2011 3:59 am
Forum: General
Topic: How to get the server information from service tier
Replies: 6
Views: 3695

How to get the server information from service tier

Hi All, I got a trouble , How can I get the the server name from service tier? are there any command lines? maybe u cannot get my problem. I will give a example. ie. when we login the datastge from client. we must put host name of the service tier, and user/passwords, then we click the projects ,it ...
by dxwwq557
Thu Sep 01, 2011 12:44 pm
Forum: General
Topic: dsjob on v 8.5
Replies: 6
Views: 5202

I have tested in my desktop , and I also checked the document, the syntax as below: dsjob [-file <file> <domain> <server>| -domain <domain> -user <user> -password <password> -server <server>] primaryArgument otherArgument. this is the syndax for v8.5,but v7.5 is different form this, and also I want ...
by dxwwq557
Thu Sep 01, 2011 9:49 am
Forum: General
Topic: dsjob on v 8.5
Replies: 6
Views: 5202

and I also try dsadmin command but it still not work~
by dxwwq557
Thu Sep 01, 2011 9:48 am
Forum: General
Topic: dsjob on v 8.5
Replies: 6
Views: 5202

dsjob on v 8.5

hi all, 1.I face a miracle (actully a trouble) I use the dsjob to show the projects. when I use the command on v8.5 it always send a error code 81005or 80011 But when I try it on v7.5 it runs ok and I want to use dsjob on v8.5 and the statement as below dsjob -user dsadm -password dsadm -server ds_s...
by dxwwq557
Wed Aug 03, 2011 8:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error msg about section leader
Replies: 4
Views: 4388

I have solved the problem, in the /etc/hosts file the ip address set incorrect. so it cannot find the correct server.
by dxwwq557
Wed Aug 03, 2011 5:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error msg about section leader
Replies: 4
Views: 4388

ray.wurlod wrote:Have you checked that rsh has been configured to allow password-less login? ...
how to check this? thanks.
by dxwwq557
Tue Aug 02, 2011 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error msg about section leader
Replies: 4
Views: 4388

and the error msg returned by the configuration file as below: ##I TFCN 000001 12:05:00(000) <main_program> Ascential DataStage(tm) Enterprise Edition 7.5.2 Copyright (c) 2004, 1997-2004 Ascential Software Corporation. All Rights Reserved ##I TOCK 000000 12:05:00(001) <main_program> OS charset: UTF-...
by dxwwq557
Tue Aug 02, 2011 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error msg about section leader
Replies: 4
Views: 4388

error msg about section leader

Hi, In my parallel job, use Row_Generator to create new rows, and use Peak to get output stream, but when I view the data, it return an error msg, it said that cannot contract one or more section leaders. Then I compiled the job and ran it, but it aborted, the error msg is #main_program: The section...
by dxwwq557
Wed Dec 01, 2010 12:12 am
Forum: General
Topic: row count check in a file, then run job
Replies: 12
Views: 6802

there is another way to do this :

code for the command.

Code: Select all

wc -l
code for the parameter,this is the job parameter.

Code: Select all

#filename#
code for the trigger:

Code: Select all

FIELDS(CountRows.$CommandOutput," ",1)  >  0
it runs well , and u can post the file from job parameter.
by dxwwq557
Tue Nov 30, 2010 9:09 pm
Forum: General
Topic: row count check in a file, then run job
Replies: 12
Views: 6802

like ur code wc -l $filename | awk '{print $1}' maybe u want post the Filename to $filename but it can't work. if ur define the file name to filename , it will work. if u still want to post the filename,u can use the shell script. Trigger Expression code like this: CountRows.$CommandOutput <> 0