Just in case you can't figure it out, you clear a sort assertion in the Aggregator stage by setting the sort order to 0. (You can't just delete it.)
Search found 53125 matches
- Tue Jul 20, 2004 6:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data through Aggregator - not passed immediately
- Replies: 3
- Views: 1148
- Tue Jul 20, 2004 5:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Range Lookup
- Replies: 5
- Views: 1245
- Mon Jul 19, 2004 2:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Source System showing vachar2 as Nvarchar in Manager
- Replies: 9
- Views: 3938
Metadata rule: is the smiley with sunglasses.
So your got converted by the metadata rule! 
Code: Select all
8)So your
Code: Select all
decimal(38)- Mon Jul 19, 2004 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error while renaming
- Replies: 8
- Views: 1670
If you'd like your own name, like sp_help or describe , all you need to do is load up the actual command (use LIST.DICT rather than LIST DICT ) in the Administrator client's command window, then save it using your preferred name. LIST.DICT has the ability to prompt for the hashed file name if it doe...
- Mon Jul 19, 2004 2:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Forcing a job to abort
- Replies: 6
- Views: 2679
I always advocate never allowing jobs to abort. That way the controlling job can remain in control. If there are problems these can be recorded, in the job log or elsewhere, and detected by the controlling job. Because the controlling job is still in control, it can take any required remedial action...
- Mon Jul 19, 2004 5:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Assigning output of a query to a JOB parameter
- Replies: 5
- Views: 1181
You need to know the key value for the row in the hashed file, and the field number in which the desired value resides. Let me take a shortcut by assigning these directly to variables. In the code example I'm going to read a variable from a hashed file and load that value into a parameter in an atta...
- Mon Jul 19, 2004 4:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Migrating Datastage Jobs to Production
- Replies: 4
- Views: 2004
- Mon Jul 19, 2004 4:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Two input lookup parameters within a query and subquery
- Replies: 1
- Views: 916
Yes, you can do this legally. You need to specify that the A.CASE_KEY and FD_RATES.TR_CD as "key" columns (even if this is a lie) so that you can supply reference key expressions to them. In turn, this means that A.CASE_KEY must appear somehow in the outer query. Why not load the inner query into a ...
- Mon Jul 19, 2004 4:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Strange data in a manually-created hash file
- Replies: 4
- Views: 925
You're not doing anything "wrong", per se. It's just that what you're looking at with the text editor is the file header, which contains management information, not data. The data starts later in the hashed file (exactly how much later depends on its tuning parameters). @ID is the default name for t...
- Sun Jul 18, 2004 5:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what does this warining mean??
- Replies: 5
- Views: 1494
- Sun Jul 18, 2004 5:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Migrating Datastage Jobs to Production
- Replies: 4
- Views: 2004
The vital piece is to make sure that you've got everything you need. If you've been diligent about recording dependencies (this is why the Dependencies tab is there), then Version Control can pick up the dependent objects. There may be certain things external to DataStage that you also need to promo...
- Sun Jul 18, 2004 5:30 am
- Forum:
- Topic: MetaStage Benchmarking
- Replies: 4
- Views: 2309
- Sat Jul 17, 2004 5:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what does this warining mean??
- Replies: 5
- Views: 1494
Line 186 does not refer to the data. It refers to the subroutine called JOB.1623522433.DT.1334767455.TRANS1 (which you can view in the RT_BPnnn directory, where nnn is the job number reported in the error message). This message usually arises from attempting to perform an arithmetic function or oper...
- Sat Jul 17, 2004 5:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing parameters for columns
- Replies: 14
- Views: 6835
- Sat Jul 17, 2004 4:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Accessing Sybase Through ODBC
- Replies: 7
- Views: 2955
You wouldn't have a "create table" possibility if doing a SELECT. I suspect it's how the Sybase parser is treating a query with an unqualified table name, either checking to see whether it's in the temporary tables space, or preparing the SQL "in case" it's of the form SELECT ... to temptable; Find ...