Search found 28 matches

by Amin
Wed Dec 31, 2014 2:36 am
Forum: General
Topic: Deployment packages
Replies: 2
Views: 1067

Deployment packages

How to deploy development project to production using package mechanisam?
Kindly mention steps required for package deployment.
by Amin
Tue Dec 09, 2014 1:03 am
Forum: General
Topic: Email Notification
Replies: 4
Views: 4218

Ok I have to check with ETL Server Administrator, Also need to verify send mail commands working or not.
by Amin
Mon Dec 08, 2014 5:43 am
Forum: General
Topic: Email Notification
Replies: 4
Views: 4218

Email Notification

I Need to send Email from Datastage job, I use Notification Activity stage of Sequence Job. 1: When I pass all parameters in Notification Tab of Notification Activity stage like; SMTP server name; Sender Email address; Recipients Email address; Email Subject and Email body then it gives that message...
by Amin
Mon Dec 08, 2014 1:34 am
Forum: General
Topic: Sequence Execuation of Jobs
Replies: 3
Views: 1543

A little lost with no question mark in your post. What you've designed should allow the sequence to run each job one after the other without regard to the status of each job. If that is not happening, tell us what IS happening. Sorry for Question Mark missing in post next time we care..... :idea: Y...
by Amin
Sat Dec 06, 2014 11:46 pm
Forum: General
Topic: Sequence Execuation of Jobs
Replies: 3
Views: 1543

Sequence Execuation of Jobs

I design a sequense job like JOB1 ==> JOB2 ==> JOB3 .... ==> JOBn What conditions applied that the next job trigger without the dependence of the previous job status.Whatever the previous job stats Its Finish with OK or WARNINGs OR job ABORTED with whatever the reason, But sequencer triger next job ...
by Amin
Tue Dec 02, 2014 8:55 am
Forum: General
Topic: Shell Script Execution on Linux
Replies: 3
Views: 1693

Please can you explain in detail...
by Amin
Tue Dec 02, 2014 3:02 am
Forum: General
Topic: Shell Script Execution on Linux
Replies: 3
Views: 1693

Shell Script Execution on Linux

We have a shell script that runs on Windows and we want to run that file in Linux through DataStage. File contents are as; param( [string]$sourcepath, [string]$targetpath ) $OWlogtext = "`nStarted at " + (Get-Date).ToString() $CommandName = $MyInvocation.MyCommand.Name $OWlogfilename = $Co...
by Amin
Fri Nov 21, 2014 1:29 am
Forum: General
Topic: DataStage Routine
Replies: 6
Views: 5114

As I have a file with data and a delimeter '='. I want to read data and passes to parameters using uservariable stage in Sequence Job. But routine is not reading the data. I haven't DS Routine commands which read the file. Code with loop is giving nothing it returns the default value of 'Ans' as def...
by Amin
Thu Nov 20, 2014 4:28 am
Forum: General
Topic: DataStage Routine
Replies: 6
Views: 5114

DataStage Routine

I need to read data from a text file using DataStage routine. I have a piece of code but its not working. Filename is an Argument which have the File Path. OPENSEQ Filename TO H.FILE1 THEN CALL DSLogInfo("******************** File " : H.FILE1 : " opened successfully", "JobCo...
by Amin
Thu Nov 13, 2014 7:51 am
Forum: General
Topic: How to pass multiples file names from table to variable?
Replies: 9
Views: 3178

Here is my understanding regarding your above solutions: First solution you suggested is to use looping sequence with user variable stage and 2nd solution is to make a server job with USERSTATUS. I have couple of questions here: In your first solution, how can i access the table in user variable sta...
by Amin
Tue Nov 11, 2014 2:48 am
Forum: General
Topic: How to pass multiples file names from table to variable?
Replies: 9
Views: 3178

@chulett. I dont understand your looping sequence solution. I think, in sequential file stage we can read multiple files as mentioned below: file1.txt file2.txt file3.txt I have read that with above approach we can read multiple files but in my case flat file names are picked at run time. so we need...
by Amin
Tue Nov 11, 2014 2:33 am
Forum: General
Topic: How to pass multiples file names from table to variable?
Replies: 9
Views: 3178

I want to read all the files at a time after their file names have been fetched from the table.
by Amin
Thu Nov 06, 2014 10:18 am
Forum: General
Topic: How to pass multiples file names from table to variable?
Replies: 9
Views: 3178

How to pass multiples file names from table to variable?

We need to read multiple files in sequential file stage. File names +paths are picked from a table. After picking file names and paths from table, how can we store them in a variable so that we can use variable in other sequential stage or use in sequence job?