Search found 83 matches

by ririr
Thu May 25, 2006 10:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract DS Job Logs
Replies: 2
Views: 1189

Extract DS Job Logs

I am using the ExtractLogMsgs subroutine to collect the job logs in a text file. The subroutine works fine for existing files with the JobName.log in the below call. Call DSLogInfo("Open Output Log Filename ", "ExtractLogMsgs") OutputLogFname = LogFileDirectory:"\dsEtl_"...
by ririr
Wed May 24, 2006 10:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Environment Variable Error
Replies: 7
Views: 1384

You are right. Is there a ptach available that you know to fix this issue?
by ririr
Wed May 24, 2006 10:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Environment Variable Error
Replies: 7
Views: 1384

Environment Variable Error

I have Environment Variables created in a project. When reference in a job I have the default value set to $PROJDEF under job parameters. The "View Data" in the stage is throwing "TNS ERROR". But when I take off $PROJDEF as default value and reload the environment variable it tag...
by ririr
Mon May 22, 2006 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Before SQL in Oracle Stage
Replies: 2
Views: 1577

Before SQL in Oracle Stage

When I am trying to execute oracle package to refresh Materialized view from "Before SQL" in Oracle OCI. exec dbms_mview.REFRESH( 'ABC'); It is throwing the folowing Oracle error "ORA-00900: invalid SQL statement". It works fine when I call the same in a batch script. Just wonder...
by ririr
Wed May 17, 2006 9:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query in Adnministrator Command prompt
Replies: 2
Views: 861

Thanks, Ray.

I appreciate your quick response. That helped!
by ririr
Wed May 17, 2006 8:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query in Adnministrator Command prompt
Replies: 2
Views: 861

Query in Adnministrator Command prompt

Hey Guys, I am sure that there might be tons of threads on this topic. Specifically, I am looking for queries that pull the referenced uv objects in a project from Command in Administrator. Example: Query to get the objects (Links, Jobs) that a Hashed File is referenced to. Any help is appreciated! ...
by ririr
Thu Jul 28, 2005 12:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-defined SQL for LookUp
Replies: 4
Views: 1954

SELECT A.COL1, B.COL1, A.COL2, B.COL2, C.COL1 from TAB1 A, TAB2 B, TAB3 C WHERE A.KEY = B.KEY(+) AND B.KEY=C.KEY or can use a sub-query in the user defined sql in DRS stage, if you are using DS7 and higher. The A.COL1, B.COL1, A.COL2, B.COL2, C.COL1 will be the columns in the DRS/Oracle/ODBC stage.....
by ririr
Thu Jul 28, 2005 12:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure in Oracle
Replies: 2
Views: 1149

I think you need to use the ODBC stage to call stored procedures. The out parameters of the stored procedure would be the input columns in the stage and map them to the target stage...
by ririr
Thu Jul 28, 2005 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No output from ExecSH routine
Replies: 4
Views: 2314

Try to execute the shell on the server by logging into the box. If it is returning the the "No command output", it means the code in the shell script is not returning any output..
by ririr
Thu Feb 17, 2005 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Encrypted Password
Replies: 5
Views: 2907

Encrypted Password

In the logs of the server jobs under the "Starting Job" and "Environment variable settings:" messages the Source and Target Passwords are not encrypted though we had set them to as encrypted at the Project level. How can I make the PWD's encrypted in the job logs? Any help is app...
by ririr
Tue Dec 07, 2004 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Error - OCI_INVALID_HANDLE
Replies: 6
Views: 13540

try viewing data from Source Stage using "VIEW DATA". That would help to troubleshoot if the error is because of the incorrect login, SID(database name) or the SQL itself.
by ririr
Fri Dec 03, 2004 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Urgent !! Oracle -end-of-file on communication channel
Replies: 2
Views: 1393

Try increasing the performance parameters. Increase the buffersize to some reasonable number. It defaults 128kb. Also, check the stage commitpoint parameter. If this doesn't help use the bulk stage. Tweak the indexes on the source database. Just restrict your query by "WHERE ROW NUM < 1000"...
by ririr
Fri Nov 12, 2004 2:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Defining Constraints in Transformer Stage
Replies: 13
Views: 15994

Try wrapping the TrimB(TrimF(LINK.COLUMNNAME))="SUN"..
by ririr
Fri Nov 12, 2004 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job parameter question
Replies: 1
Views: 689

Job parameter question

I have the following DS job design. DRS stage type is used for reading and writing data between the Source and the Target Source--------->Transformer-------------Target Parameter BUSINESS_DATE (DATE) is passed as date to the job and is being used in the transformer to map to a target column EFFECTIV...
by ririr
Thu Nov 11, 2004 1:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to split single row into multiple rows in datastage
Replies: 3
Views: 3472

Use the Cats function.

Here is the Syntax of concatenatiing 5 fields(Columns)

Cats(Cats(Cats(Cats(ColA,ColB),ColC),ColD),ColE)