Search found 139 matches

by shawn_ramsey
Wed Jul 27, 2005 1:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert/Update on SQL SERVER Database
Replies: 11
Views: 2345

It's not about the links, it's about the stages. Two links into two stages = possible locks. Two links into one stage = no locks. With SQL Server 2000 you will have the same issue going into one stage since SQL Server does not support multiple open statements against a single session. The OLEDB API...
by shawn_ramsey
Wed Jul 27, 2005 10:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert/Update on SQL SERVER Database
Replies: 11
Views: 2345

Check whether some other person / application is modifying the table. Actually it is most likely his own job that is causing the problem. When you have the stage in the job twice it is opening 2 separate sessions to SQL Server. If this is the case you can usually fix the issue by setting the commit...
by shawn_ramsey
Thu Jul 07, 2005 11:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge 240 flat-files into one and then process using DataSta
Replies: 10
Views: 4420

naveendronavalli wrote:Thanks a lot!
Ray, ds_user78, ArndW, chulett and Sainath.

Naveen.
I am not to sure if you found the actual command that you want. The correct syntax is:

Code: Select all

copy c:\merge\*.txt /a c:\temp\combofile.txt /a
by shawn_ramsey
Thu Jun 02, 2005 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing CRC values
Replies: 16
Views: 10896

Rod, With much work we finally convinced the modeler to allow us to add it to the data warehouse model as a column in the destination table. To keep the users from getting confused filter the columns out via the reporting tools metadata. This worked well for us since the relational database persists...
by shawn_ramsey
Wed May 11, 2005 10:36 am
Forum:
Topic: Anyone actively using MetaStage?
Replies: 4
Views: 2277

That is what I wanted to do but we have some free time and management has asked us to look at it now.
by shawn_ramsey
Mon May 09, 2005 11:30 am
Forum:
Topic: Anyone actively using MetaStage?
Replies: 4
Views: 2277

Anyone actively using MetaStage?

We are starting to look into using MetaStage again and was wondering if anyone is using it? If so what benefit are you seeing?
by shawn_ramsey
Wed May 04, 2005 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Job tuning for SQL server ODBC
Replies: 5
Views: 3863

This product seriously needs a bcp stage for MSSQL server especially before Microsoft bring out their ETL tool with Yukon !!. There is a BCP stage that is supposed to work with SQL Server, it is just hidden under the Sybase stage collection. I have never used this stage since Microsoft states that ...
by shawn_ramsey
Mon May 02, 2005 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS-SQL transactions from ODBC stage
Replies: 12
Views: 3424

I guess I read too much into it. I was never that good with story problems. :oops:
by shawn_ramsey
Mon May 02, 2005 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS-SQL transactions from ODBC stage
Replies: 12
Views: 3424

Craig,

Works as expected? It seems that it is not working as Amos had expected therefore the question. :D
by shawn_ramsey
Mon May 02, 2005 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS-SQL transactions from ODBC stage
Replies: 12
Views: 3424

Re: MS-SQL transactions from ODBC stage

Amos,

When you set the commit size to zero you are setting the transaction so that all rows must insert without error or all rows are rolled back. If you set the commit size to 1 then each row will be committed individually and only the errored rows will be missing.
by shawn_ramsey
Mon May 02, 2005 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Catesian Product Of Sequential files
Replies: 15
Views: 9067

I would just load them up into temporary tables on the DBMS and do the cartesian using the database.
by shawn_ramsey
Mon Apr 11, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mass Compile
Replies: 5
Views: 2557

Dont forget the command line compiler (dscc.exe) that has been shipping for a couple versions.
by shawn_ramsey
Fri Mar 25, 2005 11:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: WARNING: DataStage has found more CPU's on your system (12)
Replies: 14
Views: 5387

Personally I think the counting of 1 dual core cpu as 2 single core cpus by DataStage is kind of a rip off. If you look at optimal performance (read benchmarks) you will see that 1 dual-core (for Sun e.g.) has the performance of about 1.5 single core cpu's. Ogmios Are you talking Dual core or Hyper...
by shawn_ramsey
Thu Mar 17, 2005 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to run Designer unless Local Admin on client PC
Replies: 7
Views: 1738

We have seen the same issue here. I reported it to Ascential but I was never able to get a resolution from them. I even had them as Power user and it would not work. I finally gave up on working it out since we did not have the time. Good luck and let me know if you resolve this one since I would li...
by shawn_ramsey
Thu Dec 16, 2004 10:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server Bulk Load Error
Replies: 4
Views: 1782

Re: SQL Server Bulk Load Error

I am getting an un specified error when I use the bulk load soure. How can I determine what the actual error is. The best way to track it down is to run the Microsoft SQL Profiler and filter it to trap the actual error. I have put a ticket into Ascential on this and the OLEDB stage not returning th...