That 'SYS_' prefix just means whomever modeled the database didn't give the constraint a name. But you're right, the most common constraint is a 'not null' constraint.
In the Schema Browser - select the table you are loading and it should be listed under the Constraints tab (on the right hand side) for that table. Either that or find it in the Constraints tab on the left hand side.
The substring operator will work from the 'end' of a string. YourField[1] Tells it to take the first character from the end of the string. You could then compare that to "-" and if equal, swap it around to the front. Hmm... you posted in the Server forum but marked your job type as Parallel. Are you...
meorz wrote:is there a book, online manual or anything about DataStage?
Book? No. Only 'official' things are the online help available from each Client tool and the .pdf documents automatically installed onto your pc with the client.
You can (and must) use a single ODBC stage. The only time you would need to use multiple stages is if the target tables are in different databases. Each link can point to a different table, the only 'restriction' when using a single stage is they all must reside in the same database / instance and b...