Search found 21 matches

by sureshabbisetti
Fri Mar 20, 2009 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle write mode failure
Replies: 2
Views: 1953

Oracle write mode failure

Hi, I am facing problem with oracle truncate & load. My source is coming from one database and target is another database. The tnsnames entries for two databases were stored in same directory ds_home. Eventhough I am getting error: Write mode failure. But I have tried to load the target by the s...
by sureshabbisetti
Sat Feb 07, 2009 5:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issues by using webservices
Replies: 2
Views: 1274

Performance issues by using webservices

Hi, please any one clarify me, Is there any difference between a normal Ds job and web services used Ds job means performance wise. Because my currenta scenario like to get the reference data from one main database I have to use web services. The main database contains millions of records. Previousl...
by sureshabbisetti
Tue Jan 27, 2009 3:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing metadata from views using Orcherstrate method
Replies: 1
Views: 1288

Importing metadata from views using Orcherstrate method

Hi, How to import the views metadata using Orchestrate method. After supplying all the database credentials , when I use browse option to import the meta data of a view. But it is always displaying tables only. To import view meta data should I enable any option or any another method. Advanced thank...
by sureshabbisetti
Sun Jan 04, 2009 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: close command in oracle enterprise stage
Replies: 1
Views: 1667

The Open/Close command are used to execute the Sql statements before/after loading the target tables like truncate tale etc... . To execute the stored proc use unix shell script & call that procedure in sequence by using Execute Command activity stage.

Regards
Suresh
by sureshabbisetti
Wed Oct 22, 2008 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORACLE not available
Replies: 2
Views: 1712

ORACLE not available

Hi, I am executing Job sequence, which loads the data from one staging area to another staging area. Both Source and Target are Oracle tables. The sequence aborted and I am getting the following errors ORA-01034: ORACLE not available ORA-27101: shared memory realm does no. I have run the same job in...
by sureshabbisetti
Fri Oct 17, 2008 5:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'NULL' string not replacing in Transformer.
Replies: 4
Views: 2741

Hi

Try with below logic
If Trim(ACTION_SRC_3_PAMPositionAfterExchangeJoin.BOOK_VALUE)='' Then setnull() Else StringToDecimal(ACTION_SRC_3_PAMPositionAfterExchangeJoin.BOOK_VALUE)

Otherwise use stage variable to check the column value is null or not

Please correct me If I am wrong

Thanks
Suresh
by sureshabbisetti
Tue Sep 30, 2008 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load failure
Replies: 1
Views: 1467

Load failure

Hi, My job is simple load job loading data from Soure to target. Both source and target are oracle tables. I am loading the target by using RCP. The source table having 176108 rows. After loading 169678 rows I am getting the following warnings. Oracle_Enterprise_0,0: signalHandler__Fi() at 0xd2f4ff0...
by sureshabbisetti
Fri Sep 05, 2008 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Differenct between Load and Insert in Oracle
Replies: 1
Views: 1797

Differenct between Load and Insert in Oracle

Hi I am facing problem with Load option while loading from source table(oracle 10g) to target table (oracle9i). I have selected write method as load & truncate. In this situation job got aborted and returned the error sqldr 256. But the same job tried with insert option. The job was successfully...
by sureshabbisetti
Thu Sep 04, 2008 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: issue - the Long data type column from oracle table
Replies: 4
Views: 2261

issue - the Long data type column from oracle table

Hi, How to import the oracle table having a column with long data type. The source sysem is already existing system so it could not possible to change data type now. I am getting the following error: Caught ORCHESTRATE exception in main program: APT_ParseError: Expected identifier; got: <eof> Could ...
by sureshabbisetti
Wed Jul 23, 2008 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load error into Oracle
Replies: 10
Views: 5116

Hi Mark, I am facing the same problem while loading data into oracle table. I got the solution from previous posts. Add the Environmental variable $APT_ORACLE_LOAD_OPTIONS and give the default value OPTIONS(DIRECT=FALSE,PARALLEL=TRUE). If this solution is wrong please correct me, but my job was succ...
by sureshabbisetti
Mon Jun 23, 2008 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate table import
Replies: 1
Views: 1480

Orchestrate table import

Hi, Any one clarify me, which is the best method to import meta data i.e. Orchestrate method or Plug-in method. Because I am unable to import the table using Orchestrate schema definitions, but the same table imported using plug-in meta data schema definitions method. I am getting the following erro...
by sureshabbisetti
Thu Jun 12, 2008 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DateToString function problem
Replies: 8
Views: 4034

Hi,

Instead of SetNull() function try with default value like'0001-01-01'.
Please correct me if I am wrong?

Regards
Suresh
by sureshabbisetti
Thu Jun 12, 2008 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading to oracle
Replies: 4
Views: 2270

Hi, Your DBA has to give the permissions to Datastage server. CREATE ROLE DSXE; GRANT SELECT on sys.dba_extents to DSXE; GRANT SELECT on sys.dba_data_files to DSXE; GRANT SELECT on sys.dba_tab_partitions to DSXE; GRANT SELECT on sys.dba_tab_subpartitions to DSXE; GRANT SELECT on sys.dba_objects to D...