Search found 4 matches

by psbans
Fri Apr 30, 2010 10:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit frequency when using Oracle Load/Append
Replies: 15
Views: 11786

For newcomers: to Suppress "Commit point reached" log add SILENT=FEEDBACK option

like this:

APT_ORACLE_LOAD_OPTIONS = OPTIONS(DIRECT=FALSE,PARALLEL=TRUE,SILENT=FEEDBACK)
by psbans
Sun Oct 01, 2006 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute comand statistics
Replies: 2
Views: 1353

Re: Execute comand statistics

you can write start and end times inside your shell script eg: #!/usr/bin/ksh ####################################### # yourshellscript.sh ###################################### sqlplus -s <<EOF test/test@test PROMPT Insert start time into audit table INSERT INTO AUDIT_TABLE (STAR_TIME) SELET SYSDAT...
by psbans
Sun May 07, 2006 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Function to find get Next Date
Replies: 3
Views: 2124

it worked great.

thanks guys
by psbans
Sun May 07, 2006 1:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Function to find get Next Date
Replies: 3
Views: 2124

Function to find get Next Date

Hi Iam new to DataStage, can anyone help me how to get the Next avialable Date using DataStage's builtin functions,..etx. Example: Iam using Date format as YYYYMMDD (integer) as a parameter. So if my current parameter is 20060507, then I want next available date as 20060508 like wise for 20060531, i...