Search found 15603 matches

by ArndW
Tue Aug 01, 2006 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert the records in to the tables thruogh Routines?
Replies: 6
Views: 1235

Siva,

I have already stated that "yes, it is possible". Since you still haven't answered the question as to what database you are using nobody can help you much further. The DS/BASIC routine will contain calls to DSExecute() that will do the actual SQL setup and insert to the database.
by ArndW
Tue Aug 01, 2006 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to define the " quote character in the routine
Replies: 5
Views: 2386

Achhh, thanks for correcting me, I typed too fast and didn't check what I'd written. I won't go back and correct the post, but the line should read

"You can use single quotes, double quotes and the backslash quote character in the same job"
by ArndW
Tue Aug 01, 2006 4:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds server error
Replies: 8
Views: 2957

What tool did you use to generate that display?

Have you checked your physical and virtual memory and seen to your paging space?
SYSTEM RUNNING OUT OF PAGING SPACE
by ArndW
Tue Aug 01, 2006 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggreator Stage - to find max values of a timestamp field
Replies: 6
Views: 3564

Explicitly convert your timestamp into a numeric format using SecondsSinceFromTimestamp and some starting timestamp and then use the aggregator to get the maximum. You can then reconvert this back to a timestamp format after the aggregation.
by ArndW
Tue Aug 01, 2006 4:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to define the " quote character in the routine
Replies: 5
Views: 2386

You can use single quotes, double quotes and the ampersand quote character in the same job.

Code: Select all

DoubleQuote = '"'
SubString = TRIM(Arg1,DoubleQuote,"A")
by ArndW
Tue Aug 01, 2006 4:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to install Datastage client
Replies: 8
Views: 1531

Get a replacement CD from IBM or try one of those magical cleaner kit things (I've never had any luck with them, but did once use some very fine fiberglass polish to get a music CD working again)
by ArndW
Tue Aug 01, 2006 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Variable size
Replies: 2
Views: 846

yes, there is a limit. Check your data size using "ulimit", this will give you the upper bound. Subtract one or two Mb to be on the safe side and you have your limit. Most likely you will have no limit on data, so assume that your maximum string size is going to be around 2Gb minus a couple of megab...
by ArndW
Tue Aug 01, 2006 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to install Datastage client
Replies: 8
Views: 1531

Could it be a bad CD drive? Try to read it on another PC, if it works then copy the files to some network drive.
by ArndW
Tue Aug 01, 2006 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to install Datastage client
Replies: 8
Views: 1531

Try copying the CD to a local folder to see if you get any media errors. If not, try installing from the local copy to see if the error remains.
by ArndW
Tue Aug 01, 2006 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to Commit Data into SQL Server 2000
Replies: 1
Views: 777

Try putting in a reject link to see if there is a data problem, or try doing a manual insert into SQL Server 2000 of one of your data rows.
by ArndW
Tue Aug 01, 2006 2:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stub Job Design Technique
Replies: 1
Views: 761

Depending upon your configuration, this might start off quite a few processes on your machine in a very short period of time. Assuming a 4-way APT_CONFIG file you will have something like 38 pids starting and processing your data and all of them will be writing to the same disk locations for the dat...
by ArndW
Tue Aug 01, 2006 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert the records in to the tables thruogh Routines?
Replies: 6
Views: 1235

It is possible to do this, although it is seldom a good idea to circumvent the fast and efficient loading methods in DS. Usually the easiest method is to use your databases' command line calls for inserts and updates. The actual commands you use depend upon your OS, DataBase system and DB version. T...
by ArndW
Tue Aug 01, 2006 2:16 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: how to count number of records in source file
Replies: 13
Views: 8603

Try using the "SEARCH" facility, it is of great help in many cases when the problem is one that others might have had.

The easiest way is to use an external call, i.e. "wc -l" to get this information on UNIX or on Windows with something like MKS toolkit installed.
by ArndW
Tue Aug 01, 2006 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to install Datastage client
Replies: 8
Views: 1531

Are you installing from a network location or from the installation CD? I wonder if the error is coming from a network transfer problem, as the message "Datatransfer error" is an odd one.
by ArndW
Mon Jul 31, 2006 10:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: .net
Replies: 4
Views: 997

Jobs are initiated from the DataStage server machine using the "dsjob" command. If you can issue this command then you can run a job. The .NET doesn't come into it at all.