Search found 7201 matches
- Fri Oct 11, 2002 3:40 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Load a project into Data stage repository
- Replies: 2
- Views: 1585
Charles This can be done with some experimentation. The ServerEngine is the main account for Universe. Universe is the database that runs DataStage. This account is called the UV account. If you telnet into UV and LOGTO ProjectName or LOGTO F:ProjectPath then just run UPDATE.ACCOUNT. This will fix t...
- Fri Oct 11, 2002 12:35 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: XML Files
- Replies: 2
- Views: 719
Jennifer, Without knowing your XML schema I can just tell you that you need a Sequential File stage going to a transform stage going to an XML Writer stage. In the XML writer stage in the column definition screen, besides defining the field itself in the description column you have to enter where in...
- Thu Oct 10, 2002 10:54 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Load a project into Data stage repository
- Replies: 2
- Views: 1585
Its doable, but very tricky. I would strongly suggest getting expert help, perhaps from Ascential. Your main problem is that the system tables that describe what is in the projects were in the Engine (or ServerEngine) directory on drive C, which you have removed. Therefore the system tables will nee...
- Thu Oct 10, 2002 10:32 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Load a project into Data stage repository
- Replies: 2
- Views: 1585
Load a project into Data stage repository
Hi, Data stage has been uninstalled from a server machine c: drive , however the projects are in different f:. As you know when open Data stage Admin the projects are not listed in the drop down box in the first logon screen . Is I any way I can load the project into data stage repository (there is ...
- Thu Oct 10, 2002 8:08 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: XML Files
- Replies: 2
- Views: 719
XML Files
Does anyone know how to convert a delimited output file into XML format in Datastage 5.2?
Thanks.
Thanks.
- Thu Oct 10, 2002 10:58 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Multi Keyed Hash Lookup in Basic
- Replies: 0
- Views: 713
Multi Keyed Hash Lookup in Basic
Hi, Does anyone know how to do a multi keyed hash file lookup in basic? I can use something like this to look up from a single key column: OPEN "xrec_hash" TO H else call DSLogInfo(cant open ascii_hash_lookup,) abort END READ REC FROM H,LookupKey ELSE CALL DSLogInfo(CANT READ REC :LookupKey,) RETURN...
- Thu Oct 10, 2002 8:29 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: ExecuteCommand stage in Job Sequencer
- Replies: 2
- Views: 581
Hello If you need to pass parameters down to UNIX or even create a complex UNIX command, its best to build up the string in basic and then call DSExecute with the string. e.g. S = ls -ail|grep xml call DSExecute(unix,S,o1,o2) call DSLogInfo(o1,o2) Here, o1 will contain the UNIX return code, i.e. 0 i...
- Wed Oct 09, 2002 7:28 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Importing SQL Server table definition in Manager
- Replies: 2
- Views: 948
Hi, while importing table definitions, click on plug-in meta data definitions, then after entering the server name, UserID and Password, click on next, then there is a option fully qualified name, un-check that out, then it will import only the Table name, not any prefix on it. thanks Reddy -----Ori...
- Wed Oct 09, 2002 7:01 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Importing SQL Server table definition in Manager
- Replies: 2
- Views: 948
You can always try renaming it once its inside Manager. That may work for you. ----- Original Message ----- From: "Pelletier, Christian" To: Sent: Wednesday, October 09, 2002 2:01 PM Subject: Importing SQL Server table definition in Manager > Hi All! > > Is there a way to tell DataStage not to impor...
- Wed Oct 09, 2002 6:01 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Importing SQL Server table definition in Manager
- Replies: 2
- Views: 948
Importing SQL Server table definition in Manager
Hi All! Is there a way to tell DataStage not to import the full qualifed name for a table? I would like to import only the name of the table -> person_job.trans_date , not the full string-> C_RAD_CAD_001.dbo.person_job.trans_date Thanks Christian Pelletier Sr. Engineer Probusiness Phone: 1-925-737-7...
- Wed Oct 09, 2002 3:55 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: HashFile Creation-Speed Up
- Replies: 4
- Views: 892
Hi This in correct definitely use static hash tables, also when connecting to a database source use the native connectivity over ODBC where possible. It is also a good idea to trim varchar fields and depending on the file system used cached writes can sometimes improve performance. Simon. >From: Rui...
- Wed Oct 09, 2002 3:21 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: HashFile Creation-Speed Up
- Replies: 4
- Views: 892
Hi Nuno, you can optimize the hash-file, to get a better performance, you must defined your hash as dynamic/static, size of groups, splits, etc. This way you get the better definition of your hash, getting a better time to load your data. Rui Soares Rui Miguel Soares NOVABASE - Business Intelligence...
- Wed Oct 09, 2002 3:08 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: HashFile Creation-Speed Up
- Replies: 4
- Views: 892
HashFile Creation-Speed Up
Hi all, I have a job that creates a hashfileA based on a select statement on TableA: TableA ---------------------------------->HashFileA (the keys columns are key1, key2, key3) select key1,key2,key3,sum(value1), sum(valu2) from TableA group by key1, key2, key3; The HasfileA creation takes 1h30m to l...
- Wed Oct 09, 2002 1:40 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: ExecuteCommand stage in Job Sequencer
- Replies: 2
- Views: 581
Known bug. DS 5.1 command stage cannot use parameters in the command area, only parameters. If youre parameterizing the directory path to a command, youll have to hard code it for now. The alternative is to use a symbolic link but hard code that link. It will at least give you the flexibility to poi...
- Wed Oct 09, 2002 10:55 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: ExecuteCommand stage in Job Sequencer
- Replies: 2
- Views: 581
ExecuteCommand stage in Job Sequencer
Hi all,
How can I pass job parameter through ExecuteCommand stage in Job Sequencer? For example, EXAMPLE.sh need 2 parameters then Im setting up the stage like this.
Command: EXAMPLE.sh
Parameters: #YEAR# #MONTH#
How can I pass job parameter through ExecuteCommand stage in Job Sequencer? For example, EXAMPLE.sh need 2 parameters then Im setting up the stage like this.
Command: EXAMPLE.sh
Parameters: #YEAR# #MONTH#