what is the max value in key management next value

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
deva
Participant
Posts: 104
Joined: Fri Dec 29, 2006 1:54 pm

what is the max value in key management next value

Post by deva »

HI ,
Please let me know what is the max value in key management next value in sdk function. (builtin functions),

when this sequence number will reset. what is the max value.

in which case this sequence number will reset.

Because of some times I am getting duplicate sequence number in my job.

Please advise me, I am using data stage 7.1 server
kduke
Charter Member
Charter Member
Posts: 5227
Joined: Thu May 29, 2003 9:47 am
Location: Dallas, TX
Contact:

Post by kduke »

I am not sure what the maximum value is but I bet you are getting duplicates because your SDKSequeces hashed file is out of sync with the database. I think you should always reseed these values from the target database. I included a job to do this in EtlStats.

Select max(#jpColumnName#) from #jpTableName#;

So this code will work on any table and any database. The assumption is this is the primary key of the table so this is very fast to do for every table.
Mamu Kim
DSguru2B
Charter Member
Charter Member
Posts: 6854
Joined: Wed Feb 09, 2005 3:44 pm
Location: Houston, TX

Post by DSguru2B »

That is one of the reasons I dont like to use SDKSequences. By doing a select max(id) from your table and incrementing it, you can never go wrong.
Never the less, you can reset its value. Search on "SDKSequences" to find out how to reset the value.
Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
G SHIVARANJANI
Participant
Posts: 137
Joined: Sun Jan 07, 2007 11:17 pm
Location: VISAKHAPATNAM

i have a querie in parallel datastage:

Post by G SHIVARANJANI »

wat does this error indicate if

32:52(000) <STG_AML_01,0> Delimiter for field "Change_status" not found; input: {U 0d}, at offset: 126
##W TOIX 000154 14:32:52(001) <STG_AML_01,0> Import warning at record 0.
##W TOIX 000018 14:32:52(002) <STG_AML_01,0> Import unsuccessful at record 0.
##W TOIX 000000 14:32:52(003) <STG_AML_01,0> Delimiter for field "Change_status" not found; input: {U 0d}, at offset: 146
##W TOIX 000154 14:32:52(004) <STG_AML_01,0> Import warning at record 1.
##W TOIX 000018 14:32:52(005) <STG_AML_01,0> Import unsuccessful at record 1.
##W TOIX 000000 14:32:52(006) <STG_AML_01,0> Delimiter for field "Change_status" not found; input: {U 0d}, at offset: 143
##W TOIX 000154 14:32:52(007) <STG_AML_01,0> Import warning at record 2.
##W TOIX 000018 14:32:52(008) <STG_AML_01,0> Import unsuccessful at record 2.
##W TOIX 000000 14:32:52(009) <STG_AML_01,0> Delimiter for field "Change_status" not found; input: {U 0d}, at offset: 124
##W TOIX 000154 14:32:52(010) <STG_AML_01,0> Import warning at record 3.
##W TOIX 000018 14:32:52(011) <STG_AML_01,0> Import unsuccessful at record 3.
##W TOIX 000000 14:32:52(012) <STG_AML_01,0> Delimiter for field "Change_status" not found; input: {U 0d}, at offset: 131
##W TOIX 000154 14:32:52(013) <STG_AML_01,0> Import warning at record 4.
##W TOIX 000018 14:32:52(014) <STG_AML_01,0> Import unsuccessful at record 4.
##I TOIX 000193 14:32:52(015) <STG_AML_01,0> No further reports will be generated from this partition until a successful import.
##I TOIX 000163 14:32:52(016) <STG_AML_01,0> Import complete; 0 records imported successfully, 6 rejected.
Shivaranjani
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

First it means you're in the wrong forum. This is a question about a parallel job.

Second it means that you've hijacked someone else's thread, with a totally unrelated question. That behaviour is severely frowned upon here.

Third, you don't seem to realize that a wat is a Buddhist temple.

Fourth, it suggests that you need to take a training class. The error message contains everything you need to deduce the cause.

On those bases, Shivaranjani's question will not be answered here. It needs to be posted as a new thread in the parallel jobs forum.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
G SHIVARANJANI
Participant
Posts: 137
Joined: Sun Jan 07, 2007 11:17 pm
Location: VISAKHAPATNAM

NEW TO DSXchange

Post by G SHIVARANJANI »

sorry i am new to this ..
Shivaranjani
Post Reply