GDG's on AIX


 
Thread Tools Search this Thread
Operating Systems AIX GDG's on AIX
# 1  
Old 08-04-2005
GDG's on AIX

Hi,

Does anyone have a solution they can share that will emulate Mainframe Generation Data Groups (GDG) on AIX?

Thank You in Advance for Your Help,

Lou
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Will it affect my AIX LPAR security, when i set up email alerts on AIX server.

Hello, I've set up email alerts on AIX Servers. so that i can get email notifications (via mail relay server) when ever there is abnormal behavior. for example 1) my script monitors CPU/disk/memory etc... when it reaches high water ark, it will send an email alert. 2) disk usage alerts 3)... (5 Replies)
Discussion started by: System Admin 77
5 Replies

2. AIX

Nim on AIX 7.1 used to migrate AIX 5.3 to AIX 6.1...is possible?

Using nimadm: nimadm -j nimadmvg -c sap024 -s spot_6100 -l lpp_6100 -d "hdisk1" -Y Initializing the NIM master. Initializing NIM client sap024. 0505-205 nimadm: The level of bos.alt_disk_install.rte installed in SPOT spot_6100 (6.1.3.4) does not match the NIM master's level (7.1.1.2).... (2 Replies)
Discussion started by: sciacca75
2 Replies

3. UNIX for Advanced & Expert Users

Use of GDG files in UNIX using MBM (Mainframe Batch Manager).

Use of GDG files in UNIX using MBM (Mainframe Batch Manager). Is any one working with GDG files in UNIX (AIX) using the MBM wrapper? I need some help to refer the GDG files in the scripts. (0 Replies)
Discussion started by: deeceeds
0 Replies

4. Shell Programming and Scripting

SSH command for new GDG genration

Hi, I am trying to SSH to a GDG file from UNIX to Mainframe and it is not transferring it and giving error. I gave the following command and as can be seen I am using the relative number i.e +1 here: ssh -v username@remote.host "mv -P RECFM=FB,LRECL=150 /homedir/username/test.dat... (0 Replies)
Discussion started by: pravle
0 Replies

5. UNIX for Dummies Questions & Answers

To check if the latest version of given GDG base has data

Hi All , I am trying to run a shell script through a JCL . The requirement is I have a gdg base name and I need to create a script that will just check if the latest version of that gdg has data or not . If it doesnt have data RC 4 need to be returned . One more thing which is bothering me is i... (1 Reply)
Discussion started by: mavesum
1 Replies

6. Shell Programming and Scripting

To check if the latest version of given GDG base has data

Hi All , I am trying to run a shell script through a JCL . The requirement is I have a gdg base name and I need to create a script that will just check if the latest version of that gdg has data or not . If it doesnt have data RC 4 need to be returned . One more thing which is bothering me is i... (3 Replies)
Discussion started by: mavesum
3 Replies

7. UNIX for Dummies Questions & Answers

Script for FTPing files to mainframe GDG

Hi, Request Unix gurus to kindly share a script which FTPs multiple files from Unix to a Mainframe GDG. The script should check for oldest file named as 'abc*.txt' in a directory '/dir/child'. FTP that file to MF, then remove the file from unix and then look for the next oldest file to be... (1 Reply)
Discussion started by: dsrookie
1 Replies

8. UNIX for Dummies Questions & Answers

GDG in AIX?

Does anyone know how to emulate Mainframe's GDG (Generation Data Group) in AIX? (0 Replies)
Discussion started by: vidhya
0 Replies

9. UNIX for Dummies Questions & Answers

File Versions (GDG)

Hi There, This is more a question for the 'mainframers' of old. I need a control structure (AIX) very similar to "GDG" files (Generation data group) as found on OS/390 to control versions of files. Specific files have specific needs, some need to be kept for 5 versions, some for 30 and... (0 Replies)
Discussion started by: Bizcut
0 Replies
Login or Register to Ask a Question
pods::SDL::Mixer::Groups(3pm)				User Contributed Perl Documentation			     pods::SDL::Mixer::Groups(3pm)

NAME
SDL::Mixer::Groups - Audio channel group functions CATEGORY
Mixer METHODS
reserve_channels my $reserved = SDL::Mixer::Groups::reserve_channels( $num ); $num is the number of channels to reserve from default mixing. Zero removes all reservations. Reserve $num channels from being used when playing samples when passing in "-1" as a channel number to playback functions. The channels are reserved starting from channel 0 to "$num-1". Passing in zero will unreserve all channels. Normally SDL_mixer starts without any channels reserved. The following functions are affected by this setting: o SDL::Mixer::Channels::play_channel o SDL::Mixer::Channels::play_channel_timed o SDL::Mixer::Channels::fade_in_channel o SDL::Mixer::Channels::fade_in_channel_timed Returns: The number of channels reserved. Never fails, but may return less channels than you ask for, depending on the number of channels previously allocated (see SDL::Mixer::Channels::allocate_channels). group_channel my $grouped = SDL::Mixer::Groups::group_channel( $channel, $group ); Add a channel to group id (any positive integer), or reset it's group to the default group by passing (-1). Returns: True(1) on success. False(0) is returned when the channel specified is invalid. group_channels my $grouped = SDL::Mixer::Groups::group_channels( $from_channel, $to_channel, $group ); Add a range of channels to group id (any positive integer), or reset their group to the default group by passing (-1). Returns: The number of affected channels. group_available my $channel = SDL::Mixer::Groups::group_count( $group ); "group_newer" returns the first available channel of this group. group_count my $channels = SDL::Mixer::Groups::group_count( $group ); "group_newer" returns the number of channels in this group. group_oldest my $channel = SDL::Mixer::Groups::group_oldest( $group ); "group_newer" returns the channel number which started to play at first. group_newer my $channel = SDL::Mixer::Groups::group_newer( $group ); "group_newer" returns the channel number which started to play at last. fade_out_group SDL::Mixer::Groups::fade_out_group( $group, $ms ); Fades out the channels by the given group id. The fade-out-time is specified by $ms. Returns the number of affected channels. halt_group SDL::Mixer::Groups::hals_group( $group ); Halts the channels by the given group id. Returns 0. AUTHORS
See "AUTHORS" in SDL. perl v5.14.2 2012-05-28 pods::SDL::Mixer::Groups(3pm)