× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Jeff,

Try:

Create table jeff3                
  as (select * from jeff1)        
  with data                             
  including column defaults             
  including identity column attributes  
  rcdfmt jeff1                          

I left off the "column" keyword before.

It works for me at v5r4.

Jeff2 ends up with the same data as Jeff1 and the same record format ID.

HTH,

Charles Wilt
--
iSeries Systems Administrator / Developer
Mitsubishi Electric Automotive America
ph: 513-573-4343
fax: 513-398-1121
  

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx 
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Jeff Crosby
Sent: Wednesday, September 27, 2006 4:14 PM
To: 'Midrange Systems Technical Discussion'
Subject: RE: **SOLVED *** RE: How IS the Record 
FormatLevelIdentifiercalculated? 

I misspoke.  I said 'file level ID' when it's actually 
'format level ID'.

Results still fubar.

-- 
Jeff Crosby
Dilgard Frozen Foods, Inc.
P.O. Box 13369
Ft. Wayne, IN 46868-3369
260-422-7531

The opinions expressed are my own and not necessarily the 
opinion of my
company.  Unless I say so.
 

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx 
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Jeff Crosby
Sent: Wednesday, September 27, 2006 4:02 PM
To: 'Midrange Systems Technical Discussion'
Subject: RE: **SOLVED *** RE: How IS the Record Format 
LevelIdentifiercalculated? 

That did not work for me.

First off this statement (STRSQL) bombs:

create table qtemp/dmvdrmst
  as (select * from dmvdrmst)
  with data
  including column defaults
  including identity attributes
  rcdfmt mcrecord

With the error: Keyword ATTRIBUTES not expected. Valid tokens:
<END-OF-STATEMENT>.

If I remove the word 'attributes' then this runs:

create table qtemp/dmvdrmst
  as (select * from dmvdrmst)
  with data
  including column defaults
  including identity
  rcdfmt mcrecord

But 1) there is no data in the new file, and 2) the file 
level ids are different as night and day.

--
Jeff Crosby
Dilgard Frozen Foods, Inc.
P.O. Box 13369
Ft. Wayne, IN 46868-3369
260-422-7531

The opinions expressed are my own and not necessarily the 
opinion of my company.  Unless I say so.
 

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx 
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of 
Wilt, Charles
Sent: Wednesday, September 27, 2006 3:44 PM
To: Midrange Systems Technical Discussion
Subject: **SOLVED *** RE: How IS the Record Format Level 
Identifiercalculated?

I know the answer to #2

Create table jeff2
  as (select * from jeff1)
  with data
  including column defaults

For an exact duplicate, one might want to use Create table jeff2
  as (select * from jeff1)
  with data
  including column defaults
  including identity attributes
  rcdfmt jeff1


****BINGO: The record formats are the same ***

Charles Wilt
--
iSeries Systems Administrator / Developer Mitsubishi Electric 
Automotive America
ph: 513-573-4343
fax: 513-398-1121
  

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx 
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of 
rob@xxxxxxxxx
Sent: Wednesday, September 27, 2006 3:19 PM
To: Midrange Systems Technical Discussion
Subject: RE: How IS the Record Format Level Identifier 
calculated?

Good catch!

1 - I'd still like to know how they calculate the hash.
2 - How do I get the following to not change the default value?
CREATE TABLE JEFF2
  as (Select * from JEFF1)
WITH DATA
RCDFMT JEFF1

Rob Berendt
--
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com





"Chris Bipes" <chris.bipes@xxxxxxxxxxxxxxx> Sent by: 
midrange-l-bounces@xxxxxxxxxxxx
09/27/2006 03:10 PM
Please respond to
Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>


To
"Midrange Systems Technical Discussion" 
<midrange-l@xxxxxxxxxxxx> cc

Subject
RE: How IS the Record Format Level Identifier calculated?






You do have a difference, default value of none and no
default value
specified, which equals blank on a character field. So 
the field 
properties are different.


Christopher Bipes
Information Services Director
CrossCheck, Inc.


-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx 
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of 
rob@xxxxxxxxx
Sent: Wednesday, September 27, 2006 12:04 PM
To: midrange-l@xxxxxxxxxxxx
Subject: How IS the Record Format Level Identifier calculated?

Here's the great mystery to solve.  Just exactly how IS 
the Record 
Format Level Identifier calculated?

Some say it's a hash of the field properties and the 
record format 
name.

However, if that is true then I shouldn't have this:

File JEFF1
Record Format Information
  Record format . . . . . . . . . . . . . . . :  JEFF1
  Format level identifier . . . . . . . . . . :  1F394C6EFF0A2 
  Number of fields  . . . . . . . . . . . . . :      2 
  Record length . . . . . . . . . . . . . . . :     20 
Field Level Information 
             Data        Field  Buffer    Buffer        Field 
   Column 
  Field      Type       Length  Length  Position        Usage 
   Heading
  MYCHAR     CHAR           15      15         1        Both  
   MYCHAR 
    Coded Character Set Identifier  . . . . . :     37 
  MYDEC      PACKED       9  2       5        16        Both  
   MYDEC

File JEFF2
Record Format Information
  Record format . . . . . . . . . . . . . . . :  JEFF1
  Format level identifier . . . . . . . . . . :  1F394C77030E2 
  Number of fields  . . . . . . . . . . . . . :      2 
  Record length . . . . . . . . . . . . . . . :     20 
Field Level Information 
             Data        Field  Buffer    Buffer        Field 
   Column 
  Field      Type       Length  Length  Position        Usage 
   Heading
  MYCHAR     CHAR           15      15         1        Both  
   MYCHAR 
    Default value . . . . . . . . . . . . . . :  None 
    Coded Character Set Identifier  . . . . . :     37 
  MYDEC      PACKED       9  2       5        16        Both  
   MYDEC 
    Default value . . . . . . . . . . . . . . :  None

--
This is the Midrange Systems Technical Discussion
(MIDRANGE-L) mailing
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, 
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting,
please take
a moment to review the archives at
http://archive.midrange.com/midrange-l.


--
This is the Midrange Systems Technical Discussion
(MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, 
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting,
please take
a moment to review the archives at
http://archive.midrange.com/midrange-l.



--
This is the Midrange Systems Technical Discussion
(MIDRANGE-L) mailing list To post a message email: 
MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list 
options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, 
please take 
a moment to review the archives at 
http://archive.midrange.com/midrange-l.




--
This is the Midrange Systems Technical Discussion 
(MIDRANGE-L) mailing list To post a message email: 
MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change 
list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, 
please take a moment to review the archives at 
http://archive.midrange.com/midrange-l.




-- 
This is the Midrange Systems Technical Discussion 
(MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.