Search found 53125 matches

by ray.wurlod
Tue Nov 18, 2008 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Array never Dimensioned
Replies: 2
Views: 1366

The reason is that the DEFFUN declaration is required, and there's no mechanism for providing that directly from a trigger expression. For Routine activities compiling the job sequence adds the DEFFUN declarations for those, so that one level of indirection is required.
by ray.wurlod
Tue Nov 18, 2008 2:50 pm
Forum: General
Topic: date function
Replies: 2
Views: 1061

... with appropriate date format string, for example "%yyyy%mm%dd"
by ray.wurlod
Tue Nov 18, 2008 2:49 pm
Forum: General
Topic: stages
Replies: 5
Views: 1419

The Pivot stage also has its own manual, with very clear examples.
by ray.wurlod
Tue Nov 18, 2008 2:45 pm
Forum: General
Topic: Import data into MSAccess
Replies: 8
Views: 2143

You should simply be able to name the Query as the "table name" in your ODBC stage.
by ray.wurlod
Tue Nov 18, 2008 2:44 pm
Forum: General
Topic: Need some basic Information
Replies: 6
Views: 2745

You do NOT edit posts to remove the original questions to try to make those helping you look foolish.

YELLOW CARD
:evil:
by ray.wurlod
Tue Nov 18, 2008 2:41 pm
Forum: General
Topic: How to call environment variable in DB2-Stage
Replies: 9
Views: 2804

Introduce the environment variables into your job as job parameters (or in a parameter set), then use job parameter references within your DB2 Enterprise stage or DB2 API stage.
by ray.wurlod
Tue Nov 18, 2008 2:36 pm
Forum:
Topic: Data lineage request within job
Replies: 5
Views: 1858

Right click on a database stage, or find it with quick or advanced search and right click, and you should get data lineage available on the pop-up menu. There's also a data lineage tool on the toolbar - hover your mouse pointer over the tools to get tool tips explaining what each is.
by ray.wurlod
Tue Nov 18, 2008 2:35 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: How to create a new Information analyzer project
Replies: 3
Views: 3309

None without extra information. For example, during the upgrade were there any messages about indexes? It may be relevant to reindex the project using DS.REINDEX. (This is only an example, you might also like to run DS.CHECKER to verify that the local repository is intact.) One good piece of news; t...
by ray.wurlod
Tue Nov 18, 2008 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: could u please tell me What is the Output?
Replies: 1
Views: 653

Welcome aboard. When you mark a thread as resolved at DSXchange it is customary to make a short post explaining how it was resolved. Please do so.
by ray.wurlod
Tue Nov 18, 2008 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fetching first few records
Replies: 9
Views: 1870

mdbatra wrote:the formatting dint came correct.
Wrap it in Code tags.
by ray.wurlod
Tue Nov 18, 2008 1:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: at offset 12
Replies: 1
Views: 834

One line in the file contains " Erico & Co CPA's " Each 20 in the raw string is a hexadecimal representation of a non-printing character - in this case the space character. It is this line that is generating the error - compare it with the record schema (which you did not include in yo...
by ray.wurlod
Tue Nov 18, 2008 1:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can i use FTP Enterprise Stage
Replies: 2
Views: 1206

No. The FTP stages do not transfer files. They transfer byte streams; they read the file on the remote server and stream the bytes directly into your DataStage job. Better approach is to create a script to effect the file transfer, and use the exit status of that script to trigger appropriate action.
by ray.wurlod
Tue Nov 18, 2008 1:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Network buffer underflow issue
Replies: 5
Views: 6331

Worry about
of PRIMARY KEY constraint 'PK__F4201__382F5661'. Cannot insert duplicate key in object 'dbo.F4201'.
first. This may have caused the statement truncation and consequent network buffer underflow.
by ray.wurlod
Tue Nov 18, 2008 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to improve performance
Replies: 11
Views: 3832

No idea. What is your user-defined SQL doing? Are any constraints, joins, groupings or sorts supported by indexes in the database? Could this be faster using bulk unload and processing in DataStage?
by ray.wurlod
Tue Nov 18, 2008 1:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File problem
Replies: 3
Views: 4347

Note that there are two separate properties. Record Delimiter is used when you have one character (or none) to mark the end of a line. Record Delimiter String is used when you have more than one character to mark the end of a line. Record Delimiter String offers "DOS style" as a preconfigured select...