Search found 6797 matches
- Mon Jul 10, 2006 8:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL query on Universe Stage
- Replies: 5
- Views: 1362
- Mon Jul 10, 2006 8:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL query on Universe Stage
- Replies: 5
- Views: 1362
I think it would be best to load the data into two temp tables to run "Real" sql on them.
I believe vsi wants to accomplish this. And that is pretty heavy sql. And if the number of records are large then it will really eat up lot of your time. As Ken mentioned, go with the temp table approach.
I believe vsi wants to accomplish this. And that is pretty heavy sql. And if the number of records are large then it will really eat up lot of your time. As Ken mentioned, go with the temp table approach.
- Sun Jul 09, 2006 3:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Optional feature not implemented
- Replies: 9
- Views: 4798
- Sun Jul 09, 2006 9:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error calling subroutine (Ascential DS Server Version 7.1)
- Replies: 14
- Views: 7224
- Sun Jul 09, 2006 9:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Optional feature not implemented
- Replies: 9
- Views: 4798
- Sun Jul 09, 2006 12:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error view data
- Replies: 6
- Views: 4866
- Sun Jul 09, 2006 12:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error calling subroutine (Ascential DS Server Version 7.1)
- Replies: 14
- Views: 7224
Welcome aboard
What database are you accessing?
Are you getting this error message with only this job? Or is it in all the jobs in which you are using an odbc stage and trying to view the data ?
Look at this post and read Ray's comment on "Internal error (81021)"
What database are you accessing?
Are you getting this error message with only this job? Or is it in all the jobs in which you are using an odbc stage and trying to view the data ?
Look at this post and read Ray's comment on "Internal error (81021)"
- Sat Jul 08, 2006 7:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: newline in command stage
- Replies: 8
- Views: 3413
- Sat Jul 08, 2006 7:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Warning message while job compilation
- Replies: 6
- Views: 1150
- Sat Jul 08, 2006 7:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Warning message while job compilation
- Replies: 6
- Views: 1150
- Sat Jul 08, 2006 7:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: newline in command stage
- Replies: 8
- Views: 3413
- Sat Jul 08, 2006 1:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stored Procedures in ODBC stage aceept Timestamp data as i/p
- Replies: 8
- Views: 2336
- Sat Jul 08, 2006 11:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stored Procedures in ODBC stage aceept Timestamp data as i/p
- Replies: 8
- Views: 2336
- Sat Jul 08, 2006 10:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Start Loop in DS7.1
- Replies: 38
- Views: 9090
- Sat Jul 08, 2006 10:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stored Procedures in ODBC stage aceept Timestamp data as i/p
- Replies: 8
- Views: 2336
It depends. Look at the length and precision of datetime in sql server. If it is 23 that means it will accept timestamp as input. If it is 10 then it will not as it will only accept date part. In sql server there is no data type "date". For both date and timestamp, usually datetime is used. The leng...