Search found 4992 matches

by kcbland
Thu May 04, 2006 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date problem
Replies: 4
Views: 776

You must use TO_DATE(...) functions on all columns that are DATE or TIMESTAMP datatypes. DS passes text strings that look like dates to Oracle, but your SQL must include this. If you use GENERATED SQL, you'll see that DS automatically adds TO_DATE when writing and TO_CHAR when reading using the ORAO...
by kcbland
Thu May 04, 2006 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Quick way of copying parameter set from one job to another?
Replies: 8
Views: 3252

I have such a utility job in my website members area if you're interested:

SetDefaultParams - A batch utility that selectively can copy job parameters from one job to a wildcard list of other jobs.
by kcbland
Thu May 04, 2006 8:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsexport / dscmdexport never seem to finish..
Replies: 6
Views: 1564

:shock: 600+ MB :shock:


You really should be exporting by category and use multiple concurrent exports on your machine to expedite the process.
by kcbland
Thu May 04, 2006 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Attempt to convert String value
Replies: 8
Views: 3001

What is the target stage you are using? It matters.
by kcbland
Thu May 04, 2006 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UVTEMP Directory files
Replies: 2
Views: 471

Manual (Explorer or command line) as long as the files aren't in use.
by kcbland
Wed May 03, 2006 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Sequence from DataStage
Replies: 3
Views: 1504

Follow Kim's advice, but the general idea is that you will use a reference lookup to the OCI stage and custom SQL that does the select of the next value from the sequence.
by kcbland
Wed May 03, 2006 11:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: in what circumstances do we use Checksum function
Replies: 1
Views: 596

Sometimes customers send data files to other applications or offsite to other business associates. To insure data integrity, you could build a delimited file with an extra column on each row of data that contains the checksum of the data in the row. The receiver can validate each row when parsing th...
by kcbland
Wed May 03, 2006 11:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time stamp
Replies: 5
Views: 2508

What is your source, and what is your target? Different stages do different things.
by kcbland
Tue May 02, 2006 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00942: table or view does not exist
Replies: 10
Views: 3330

Methinks you need to look at the SQL after following Craig's advice. Your SQL may/may not contain the schema owner, plus the column derivations in the ODBC/OCI stage contain fully qualified names. Even if you have your table name correct, if the derivations contain another table name you need to cle...
by kcbland
Tue May 02, 2006 1:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running a job from a different project...
Replies: 8
Views: 1256

Sure, dsjob takes as parameters the server, userid, password, project, and jobname. The Sequencer and Batch job control API's only work with the current project. Awhile back I considered writing a universal job control that included the project name with the job, but the functionality of dsjob is no...
by kcbland
Tue May 02, 2006 1:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance differences in Operating Systems
Replies: 4
Views: 978

Sure, Unix machines scale into monster sizes with hundreds of CPUs and GBs of RAM with lightning fast disk darms.
by kcbland
Tue May 02, 2006 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSLogInfo Call from Job Sequence
Replies: 2
Views: 2940

Re: DSLogInfo Call from Job Sequence

clarcombe wrote:Is my only alternative to encapsulate DSLogInfo in a routine and pass the variables as parameters.


Yes. Think of it as an opportunity for a custom fit solution that handles all of your needs, written by you. :lol:
by kcbland
Mon May 01, 2006 6:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unexpected results from ORAOCI9
Replies: 8
Views: 1231

The query must be indicating something like a DECIMAL(30) as the datatype for the computed column. If you do a CREATE TABLE AS (your select query), what is the data type of the computed column? Unless you do an explicit TO_CHAR() on the column, my guess is that the datatype is being supplied as a DE...
by kcbland
Mon May 01, 2006 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unexpected results from ORAOCI9
Replies: 8
Views: 1231

Ahh, so your "computed" column is done via custom SQL (sorry I didn't understand your terminology) and you had to create custom metadata to support the returning values. Yes, the metadata does matter. The SQL query is a cursor, and all columns have to be data typed. By choosing CHAR, you automatical...
by kcbland
Mon May 01, 2006 2:12 pm
Forum: Site/Forum
Topic: Problem with search functionality
Replies: 1
Views: 1630

The Search facility has a threshold for indexing common words. Once something hits that magic number, it doesn't get included in global searches. Sometimes that causes heartache for new members who aren't used to using it. Yeah yeah yeah, given enough time and money your Webmaster will probably enha...