Search found 594 matches

by rameshrr3
Mon Aug 05, 2013 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read Mainframe tapes from IIS
Replies: 5
Views: 4018

You could probably call an Unix Program in an External Source stage, if you can mount it and read it in Unix line as ArndW says. EBCDIC to ASCII may create problem , but there sure will be some workarounds. See an article on the dd command and verify if its applicable on your flavor of Unix . Conver...
by rameshrr3
Wed Jul 31, 2013 11:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert Picture into Oracle BLOB
Replies: 6
Views: 4621

I guess it will work , provided the column bfile operates on contains a valid DIRECTORY object as seen by oracle and file name.
by rameshrr3
Tue Jul 30, 2013 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Linking Routine from static library (lib*.a)
Replies: 0
Views: 2038

Linking Routine from static library (lib*.a)

These are my default compiler & linker options: APT_COMPILEOPT=-O -fPIC -Wno-deprecated -c APT_COMPILER=g++ APT_LINKER=g++ APT_LINKOPT=-shared I created a static library archive file with 2 *.o object files compiled using g++ [ -fPIC option not used because it is a static *.a file ] I defined 2 ...
by rameshrr3
Mon Jul 29, 2013 5:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup_103,1: Field "ID" has keyprep export format
Replies: 11
Views: 9177

Can you successfully view data on the source for your reference link ?
Did you specify that column as Timestamp ? Then you may have to enter microseconds in teh format property for that column.
by rameshrr3
Fri Jul 26, 2013 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: State File Demystified
Replies: 2
Views: 1788

State File Demystified

The State file is a binary data file that stores an uint32 or uint64 value depending on your operating system. in a 64 bit platform , it stores an uint64 value in each 8 byte block of data per node. To read current values of a surrogate key state file , you can use the unix command od -xc <state Fil...
by rameshrr3
Tue Jul 23, 2013 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading duplicate rows using teradata connector
Replies: 4
Views: 3027

Since you are using a Teradata Connector in 8.7 , Can you try setting the partitioning method to hash and sort by the keys with 'unique' option selected. I see that the Teradata connector doesn't allow you to specify a sequential execution method like the older stages.
by rameshrr3
Tue Jul 23, 2013 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi value used in hash file
Replies: 12
Views: 7107

@chulett - not meaning to hijack , but how will you read a hashed file as an UV table ?
by rameshrr3
Mon Jul 22, 2013 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Webservice Transformer XML output
Replies: 13
Views: 7650

Me thinks the 'encoding style' was changed in the WSDL definition or the Web service operation defn , may not have been a datastage change.
by rameshrr3
Fri Jul 19, 2013 1:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to implement join
Replies: 9
Views: 5313

Im curious - if you are using an ODBC stage , and network latency is low enough , you may be able to use the oDBC stage as a reference link input , with its reference returns multi rows property set in the transformer ( identity stage) . The file will be stream input link .
by rameshrr3
Thu Jul 18, 2013 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert Picture into Oracle BLOB
Replies: 6
Views: 4621

Should be a directory accessible from the Oracle server as a local directory . I guess it can be NFS mapped also. Otherwise FTP the *.jpg files from your datastage server path to the Oracle server Image directory path [ you may have to use Binary transfer mode for FTP] , and run the procedure in the...
by rameshrr3
Thu Jul 18, 2013 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert Picture into Oracle BLOB
Replies: 6
Views: 4621

You can create a stored procedure to do this load . Use the BFILENAME(<DirObjectName>,<PicFileName.jpg>) 1. create a directory object in oracle CREATE DIRECTORY "DIRNAME" AS '/a/b/c/images'; Use the stored proc to 2. Insert BFILE INSERT INTO YOUR_BLOB_TABLE VALUES ( v1,v2,BFILENAME('DIRNAM...
by rameshrr3
Wed Jul 17, 2013 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can we import data from RT_LOG files
Replies: 7
Views: 5275

Although not recommended by anyone[myself included :P] , you can possibly create a Q pointer in your projects VOC file to the job's log file and then import it as an UniVerse file definition to read its records - using a hashed file stage.
by rameshrr3
Mon Jul 15, 2013 12:04 pm
Forum: General
Topic: XML Output Stage to a Webservice
Replies: 2
Views: 1483

Try using LongVarChar datatype, and set teh data element property as XML
by rameshrr3
Fri Jul 12, 2013 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Web Services Transformer Fatal Error 0026
Replies: 11
Views: 14230

Do you need an SSL Keystore file ? Security tab has a place for that . By the way did you get an XML response in the job log ? Going by your prior posts , it seems like your request envelope was not received at the web service endpoint.
by rameshrr3
Fri Jul 12, 2013 12:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Web Services Transformer Fatal Error 0026
Replies: 11
Views: 14230

Just navigate to the Security and Proxy tab of the Stage page in a web service transformer ,and see if any of the settings ( tons of them) are applicable to your IT internet infrastructure. To enter proxy server name , navigate to the Proxy Tab , you will find a place to type it in.