Search found 115 matches

by gsym
Sun Jan 23, 2011 11:44 pm
Forum: General
Topic: web console user creation
Replies: 9
Views: 5352

i'm using windows xp . . it didn ask for any user id i redirected the default path of command prompt to "C:\IBM\InformationServer\ASBServer\bin" path and the entered the path = " DirectoryAdmin.bat -user -userid <username> -password <password> " to create a new user . .
by gsym
Sun Jan 23, 2011 12:12 pm
Forum: General
Topic: web console user creation
Replies: 9
Views: 5352

Hi,

I used DirectoryAdmin tool command-line interface and created the user and asigned the admin rights and i got my problem fixed.

Thank A Lot!!!
by gsym
Sun Jan 23, 2011 11:55 am
Forum: General
Topic: web console user creation
Replies: 9
Views: 5352

Hi,

I used DirectoryAdmin tool command-line interface and created the user and asigned the admin rights and i got my problem fixed.

Thank A Lot!!!
by gsym
Sat Jan 22, 2011 10:31 am
Forum: General
Topic: web console user creation
Replies: 9
Views: 5352

Hi

As part of installation 'dsadmin' is the administrator userid we had, and it got deleted.

Thank You
by gsym
Sat Jan 22, 2011 5:28 am
Forum: General
Topic: web console user creation
Replies: 9
Views: 5352

web console user creation

i had two ID's namely "dsuser" & "dsadmin" in informationserver webconsole (i) dsuser - with user suite permission (ii) dsadmin - with administrator suite permission i've deleted the "dsadmin" ID unknowingly . . . using "dsuser" ID i couldn't create new us...
by gsym
Wed Oct 13, 2010 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while using DB2 EE stage
Replies: 1
Views: 2104

error while using DB2 EE stage

i got an error while running job, which has DB2 EE stage as the target following are the errors got from log step: Can not find db2node.cfg file. Please set APT_DB2INSTANCE_HOME main_program: Could not check all operators because of previous error(s) main_program: Creation of a step finished with st...
by gsym
Sun Sep 26, 2010 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error whlie creating .o file for routnie
Replies: 6
Views: 3129

i'm trying to create routine to use in a transformer stage . .
by gsym
Fri Sep 24, 2010 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error whlie creating .o file for routnie
Replies: 6
Views: 3129

is there any other way to create .O file ?? :?:


Thank you
by gsym
Fri Sep 24, 2010 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error whlie creating .o file for routnie
Replies: 6
Views: 3129

error whlie creating .o file for routnie

when i compile the c++ program using the syntax "Compiler : compiler options : {filename with extenstion} " to get the object file ".o extension " in dos prompt i'm getting an error message stating that "NuTCRACKER not properly installed. The pathname: C:/PROGRA~1/MKSTOO~1/i...
by gsym
Wed Aug 11, 2010 12:02 am
Forum: General
Topic: DataStage 8 Installation - Error configuring ASB Node
Replies: 2
Views: 4605

DataStage 8 Installation - Error configuring ASB Node

Hello All, I tried to install DataStage v8 on windows xp professional, but installation failed stating "error occured while configuring ASB node". Below are part of the asbnode_install.txt file under logs. Please provide me the reasons for this issue and possible solution. Thanks!!! Instal...
by gsym
Wed May 27, 2009 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing SQL as Parameter
Replies: 1
Views: 1566

Passing SQL as Parameter

Hey Guys, Can any one let me know why this query is not working when passed as a parameter? select cast (count(1) as number(15)) as count,cast (sum(TRANSACTIONAMT) as number(21,2)) as amount, \' 1 \' as flag from TST Error from director: PS_NW_GLTXNF_SF: GenericQuery:esqlErrorHandler Prepare failed ...
by gsym
Wed Apr 08, 2009 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IS VALID () Fatal error message
Replies: 7
Views: 6168

What is the default date format for your installation? The IsValid function is probably expecting the date in that format. From the error message it seems that your default format must be "%yyyy-%mm-%dd". Does this work for you? If IsValid("date", "9999-12-35") = 0 the...
by gsym
Wed Apr 08, 2009 1:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IS VALID () Fatal error message
Replies: 7
Views: 6168

Tried with string and still getting error

IsValid is expecting a string not a date. Take the StringToDate out of your expression. ... Did you mean to say: if IsValid('Date', '99991235' ) = 0 then setnull() else StringToDate("99991225" ,"%yyyy%mm%dd") if yes, I am still getting fatal error as Data string '99991235' does ...
by gsym
Wed Apr 08, 2009 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IS VALID () Fatal error message
Replies: 7
Views: 6168

hey ,

thanks for ur reply,

I have hard coded the value and it is 8 character.
For example:

StringToDate("99991235" ,"%yyyy%mm%dd")

I am validating the I/P value is valid date or not, if yes do conversion else setnull()
by gsym
Wed Apr 08, 2009 11:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IS VALID () Fatal error message
Replies: 7
Views: 6168

IS VALID () Fatal error message

Hey, the following code I have in transformer if IsValid('Date', StringToDate("99991235" ,"%yyyy%mm%dd"))= 0 then setnull() else StringToDate("99991225" ,"%yyyy%mm%dd") The result, its setting null correctly but I am getting a warning and a FATAL message. The ...