What is TimeStamp, What is TimeStamp error and What is the
Abend Code for TimeStamp Error ?
Answers were Sorted based on User's Feedback
Answer / nallapaneni bala
timestamp is to define the date and or time associated with
an treansaction
YYYY-MM-DD HH:MM:SS.NNNNNN WHERE NNNNNNN is in nanoseconds
timestamp error ==== -818
when ur trying to acess the plan first it will check the
timestamp of plan and time stamp of cobol load module if
both r not matched it results timestamp error.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / venu
by usind time stamp all the cobol an db2 stmts are divided
separately and executed simultaniously.
when the load module and plan will not be created at the
same time then time stamp wil be occured.
-818 is the ts abend
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / nasar
NNNNNNN ----- is this nano seconds or micro seconds?
I think this is micro seconds. What do you say Bala?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mdvasanth86
Yes..
YYYY-MM-DD-HH:MM:SS:NNNNNN is the timestamp format.
In cobol it is generally defined as PIC X (26)
@Nasar ,
Yes it NNNNNN is microseconds.
-818 and -805 are both Timestamp mismatch related.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the parameters that are used in creating a gdg?
Can we Execute a job without specifying Job Name in the Job Card?
How do you designate a comment in JCL?
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
What dd statement is used to supply the name of a dataset?
One dataset is creating in the step1 with LRECL of 133 and the same dataset is used in the next step in DISP=SHR mode, but while scanning the JCL the following error is thrwon. Please verify the below JCL $/SEPP030.PROVIDER DD DSN=Z1225BT.F5750PG9.F5910PRV.QC#A6868 //ERRORRPT DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, --ERRORRPT DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=&DISNCD,UNIT=&DELQ, -- DISP= (NEW,CATLG,DELETE),UNIT=DELQ, // SPACE=(TRK, (30,15),RLSE), // DCB=&DCB2 -- DCB= (PPG.METMODEL,BLKSIZE=0,LRECL=133,RECFM=FB) $/SEPP030.ERRORRPT DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT //SEPP040 EXEC PGM=FILEAID,COND= (0002,EQ,SEPP030) //SYSPRINT DD SYSOUT=* //SYSLIST DD SYSOUT=* //DD01 DD DSN=SYSCMN.PROD.CCLIB (F5910EP1),DISP=SHR $/SEPP040.DD01 DD DSN=Z1225BT.TEST.CCLIB (F5910EP1) E1 - DSS20791E - DATA SET 'Z1225BT.F5910EPP.ERRORRPT.AOUTPUT' HAS AN LRECL OF 133 COULD NOT BE OPENED BECAUSE THE CODED LRECL WAS 80. // DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, -- DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=SHR $/ DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT please find the error code in the above mentioned lines and please suggest me about the error and the solution for that.
How to find the length of variable length copybook using fileaid ??
Suppose i have 2 steps in my pgm. Step1- creates a file, Step2 - generates report from file in step1, What changes have to be made in Step2, so that if the file in Step1 is empty Step2 should not be executed? No changes to be made to Step1.
how to resolve sb37,sd37 se37 abends
Explain the function of dd disp parameter?
Explain about LMCOPY -
As PARM can supply information to a program ? Can PARM be used to supply information to a cataloged or Inline Procedure also ?