Re: ADR309E Message during Restore

2016-05-04 Thread Ward, Mike S
Larger number in fewer bytes.

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of John McKown
Sent: Wednesday, May 04, 2016 1:17 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: ADR309E Message during Restore

On Wed, May 4, 2016 at 1:01 PM, J R <jayare...@hotmail.com> wrote:

> In light of this confusion, one wonders why the developer opted to 
> format the message in hexadecimal.
>

​At the very least, he should have either done a x'' like HLASM or a 0x 
like C.​



>
> Sent from my iPhone
>
> > On May 4, 2016, at 13:56, Greg Dyck <gregd...@pobox.com> wrote:
> >
> >> On 5/4/2016 10:41 AM, Carlos Bodra wrote:
> >> SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY 
> >> OF SOURCE VOLUME 2721, TARGET VOLUME 0D0B.
> >>
> >> This tells me that source volume has 2721 cylinders and target 
> >> volume has 3339 cylinders (0d0b).
> >
> > No, the source volume has 10017 cylinders (x'2727).
> >
> > You need to pick a different target volume to use for the restore.
> > Greg
> >
>



--
The unfacts, did we have them, are too imprecisely few to warrant our certitude.

Maranatha! <><
John McKown

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

==
This email, and any files transmitted with it, is confidential and intended 
solely for the use of the individual or entity to which it is addressed. If you 
have received this email in error, please notify the system manager. This 
message contains confidential information and is intended only for the 
individual named. If you are not the named addressee, you should not 
disseminate, distribute or copy this e-mail. Please notify the sender 
immediately by e-mail if you have received this message by mistake and delete 
this e-mail from your system. If you are not the intended recipient, you are 
notified that disclosing, copying, distributing or taking any action in 
reliance on the contents of this information is strictly prohibited.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread Carlos Bodra
Thanks very much for this. Really I don´t guess about to read 2721 as 
hexa number but a normal number since it isn´t in x'' or 0x.


0d0b  is clear that is hexa number but 2721 isn´t. Any way thanks again.

CARLOS BODRA
IBM Certified zSystem
São Paulo - SP - BRAZIL

Em 04/05/2016 15:16, John McKown escreveu:

On Wed, May 4, 2016 at 1:01 PM, J R  wrote:


In light of this confusion, one wonders why the developer opted to format
the message in hexadecimal.


​At the very least, he should have either done a x'' like HLASM or a
0x like C.​




Sent from my iPhone


On May 4, 2016, at 13:56, Greg Dyck  wrote:


On 5/4/2016 10:41 AM, Carlos Bodra wrote:
SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY OF
SOURCE VOLUME 2721, TARGET VOLUME 0D0B.

This tells me that source volume has 2721 cylinders and target volume
has 3339 cylinders (0d0b).

No, the source volume has 10017 cylinders (x'2727).

You need to pick a different target volume to use for the restore.
Greg







--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread Paul Gilmartin
On Wed, 4 May 2016 13:16:38 -0500, John McKown wrote:

>On Wed, May 4, 2016 at 1:01 PM, J R wrote:
>> In light of this confusion, one wonders why the developer opted to format
>> the message in hexadecimal.
>
>​At the very least, he should have either done a x'' like HLASM or a
>0x like C.​
> 
Some Rexx component takes system messages which are documented
in hex in M and displays them as decimal.  Some were truncated on
the left to 8 decimal digits.  I went to SR.  IBM (FSVO) fixed the problem
by making the field variable width, extending to 10 digits as needed.
Still not very useful for decoding the code where M explains the
structure in bytes.

-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread John McKown
On Wed, May 4, 2016 at 1:01 PM, J R  wrote:

> In light of this confusion, one wonders why the developer opted to format
> the message in hexadecimal.
>

​At the very least, he should have either done a x'' like HLASM or a
0x like C.​



>
> Sent from my iPhone
>
> > On May 4, 2016, at 13:56, Greg Dyck  wrote:
> >
> >> On 5/4/2016 10:41 AM, Carlos Bodra wrote:
> >> SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY OF
> >> SOURCE VOLUME 2721, TARGET VOLUME 0D0B.
> >>
> >> This tells me that source volume has 2721 cylinders and target volume
> >> has 3339 cylinders (0d0b).
> >
> > No, the source volume has 10017 cylinders (x'2727).
> >
> > You need to pick a different target volume to use for the restore.
> > Greg
> >
>



-- 
The unfacts, did we have them, are too imprecisely few to warrant our
certitude.

Maranatha! <><
John McKown

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread Greg Dyck

On 5/4/2016 10:41 AM, Carlos Bodra wrote:

SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY OF
SOURCE VOLUME 2721, TARGET VOLUME 0D0B.

This tells me that source volume has 2721 cylinders and target volume
has 3339 cylinders (0d0b).


No, the source volume has 10017 cylinders (x'2727).

You need to pick a different target volume to use for the restore.
Greg

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread J R
In light of this confusion, one wonders why the developer opted to format the 
message in hexadecimal. 

Sent from my iPhone

> On May 4, 2016, at 13:56, Greg Dyck  wrote:
> 
>> On 5/4/2016 10:41 AM, Carlos Bodra wrote:
>> SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY OF
>> SOURCE VOLUME 2721, TARGET VOLUME 0D0B.
>> 
>> This tells me that source volume has 2721 cylinders and target volume
>> has 3339 cylinders (0d0b).
> 
> No, the source volume has 10017 cylinders (x'2727).
> 
> You need to pick a different target volume to use for the restore.
> Greg
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread Roach, Dennis
You cannot do a full volume restore, so stated in the messages manual.

What you can safely do is a selective data set restore.

If you want to live dangerously, you could restore by track address.

Dennis Roach, CISSP, PMP
IAM Access Administration – Consumer – Senior Analyst 
2929 Allen Parkway, America Building, 3rd Floor, Houston, TX 77019
Work:  713-831-8799
Cell:  713-591-1059
Email:  dennis.ro...@aig.com 

All opinions expressed by me are mine and may not agree with my employer or any 
person, company, or thing, living or dead, on or near this or any other planet, 
moon, asteroid, or other spatial object, natural or manufactured, since the 
beginning of time.


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Warren, Cliff
Sent: Wednesday, May 04, 2016 12:54 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: ADR309E Message during Restore

It appears you are trying to restore a 3390 mod 9 to a 3390 mod 3. The 2721 you 
have listed below is hex for 10,017 which is the number of cylinders in a mod 
9. In order to do a full volume restore your target volume will also need to be 
a 3390 mod 9

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Carlos Bodra
Sent: Wednesday, May 04, 2016 1:41 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: ADR309E Message during Restore

Hello

I´m trying to restore a full volume backed up with ADRDSSU utility and during 
restore I´m getting following message:

SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY OF SOURCE 
VOLUME 2721, TARGET VOLUME 0D0B.

This tells me that source volume has 2721 cylinders and target volume has 3339 
cylinders (0d0b).

My question is how to bypass this condition checking and restore from tape 
source volume in a new target volume.

Thanks

--
CARLOS BODRA
IBM Certified zSystem
São Paulo - SP - BRAZIL


--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread Staller, Allan
If this was a logical dump, you could restore the individual datasets. Execute 
the restore job with PARM='TYPRUN=NORUN' to get a list of the individual 
datasets.
If this is a physical dump, you have no choice. You *MUST* provide at least 
a 3390-9 to restore successfully.

X'2721' is 10017 cylinders i.e. 3390-9
X'0D0B' is 3339 cylinders   i.e. 3390-3.


HTH,


I´m trying to restore a full volume backed up with ADRDSSU utility and during 
restore I´m getting following message:

SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY OF SOURCE 
VOLUME 2721, TARGET VOLUME 0D0B.

This tells me that source volume has 2721 cylinders and target volume has 3339 
cylinders (0d0b).

My question is how to bypass this condition checking and restore from tape 
source volume in a new target volume.


This email � including attachments � may contain confidential information. If 
you are not the intended recipient, do not copy, distribute or act on it. 
Instead, notify the sender immediately and delete the message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ADR309E Message during Restore

2016-05-04 Thread Warren, Cliff
It appears you are trying to restore a 3390 mod 9 to a 3390 mod 3. The 2721 you 
have listed below is hex for 10,017 which is the number of cylinders in a mod 
9. In order to do a full volume restore your target volume will also need to be 
a 3390 mod 9

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Carlos Bodra
Sent: Wednesday, May 04, 2016 1:41 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: ADR309E Message during Restore

Hello

I´m trying to restore a full volume backed up with ADRDSSU utility and during 
restore I´m getting following message:

SOURCE AND TARGET DEVICE CAPACITIES DO NOT MATCH. CYLINDER CAPACITY OF SOURCE 
VOLUME 2721, TARGET VOLUME 0D0B.

This tells me that source volume has 2721 cylinders and target volume has 3339 
cylinders (0d0b).

My question is how to bypass this condition checking and restore from tape 
source volume in a new target volume.

Thanks

--
CARLOS BODRA
IBM Certified zSystem
São Paulo - SP - BRAZIL


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN