Sponsored Content
Operating Systems AIX Problem in ftpying the datasets containing comp values to AIX from mainframe Post 302373615 by sekhar gajjala on Saturday 21st of November 2009 04:34:12 AM
Old 11-21-2009
IBM/MVS
 

10 More Discussions You Might Find Interesting

1. OS X (Apple)

comp hardware comparing

www.insaen.nl (2 Replies)
Discussion started by: sk8parkinsaen
2 Replies

2. UNIX for Dummies Questions & Answers

Problem with comp built for Linux..

I built a PC I intended on using to run Linux. It was using a AMD XP 2000 processor, had a 80 gig hard drive, and 256 mb of ram. I got it all connected and working and installed OpenLinux (from book "Learn Linux in 24 hours" that came with a instillation CD). My intent was to take about a month... (18 Replies)
Discussion started by: Tony Empire
18 Replies

3. AIX

Problems with SSH/SFTP between AIX and Mainframe

Hi, I'm not sure if this has been solved in this forum already but please do help me out if possible. Basically, I've already setup a passwordless SSH connection between 2 AIX IDs (say ID-1 and ID-2) with a Mainframe server ID (say MVSID). I'm able to successfully do an SSH from the AIX server to... (1 Reply)
Discussion started by: sambeet
1 Replies

4. AIX

ODBC Connectivity between Oracle10g on AIX and Mainframe

Hi, I have a task of setting up connectivity between Oracle 10g (AIX) and Mainframe (1 library). Went through couple of documents, forums, blogs etc. MY understanding is ODBC Generic Connectivity is free from Oracle side. Question: (may be dumb to you) 1. Has anybody done this and would... (3 Replies)
Discussion started by: jvmani_1
3 Replies

5. Shell Programming and Scripting

Need shell script for ftpying multiple files

Hi All, I am a beginner for shell programming. I have a requirement to ftp multiple files. Here are the details. I have around thiry files in one directory, I want a shell script which selects 5 files at a time and does ftp them to another host . After the transfer for first files is... (0 Replies)
Discussion started by: srikanthn
0 Replies

6. Shell Programming and Scripting

FTPying files from one sever to another server but into specified file.

Hi Friends, My requirement is - I have to FTP a list of files from one server to another sever. I am using following code : ftp -i -n << EOF >> abc.txt open $COM_FTP_RHOST user $COM_FTP_USER $COM_FTP_PASSWORD cd $COM_FTP_PATH ( some folder ) ls -ltr filename* bye EOF After... (1 Reply)
Discussion started by: sree143reddy
1 Replies

7. Shell Programming and Scripting

shell script returning error code 2 from AIX to Mainframe

Hi, I have a shell script which is residing on AIX which is triggered by Mainframe through Connect Direct. The shell script creates several files and sends those files to mainframe using Connect Direct. The shell script is working fine, still it is returning exit code 2 to mainframe. What... (0 Replies)
Discussion started by: Yogesh Aggarwal
0 Replies

8. UNIX for Dummies Questions & Answers

Who are all opening my datasets,?

Hi, I need a command/script, who opened my dataset, consider a situation like, if a user has opened the dataset few days back then, that command/script should list his/her id. I don't want audit on my dataset, i need only list of users who are using my dataset. Thank you. (10 Replies)
Discussion started by: subbarao12
10 Replies

9. Shell Programming and Scripting

FTP from AIX to Mainframe

Hi All, This is the scenario:- I am writing a script to automate FTP files from AIX to Mainframe. ( Binary mode, passive connection) FTP the currently available files(poll a directory to find the list) and put it to mainframe in one connection instance Verify if all the files are copied... (24 Replies)
Discussion started by: TechGyaann
24 Replies

10. AIX

AIX Forum: FTP from AIX to Mainframe

This discussion thread is an extension to what was discussed in Shell scripting section. Please refer the post for the requirement: Requirement Post - Click Here The whole thread - Click Here I would like to know how I can use NDM to transfer file from AIX to Mainframe and to verify the... (3 Replies)
Discussion started by: TechGyaann
3 Replies
wsreg_set_instance(3WSREG)			    Product Install Registry Library Functions				wsreg_set_instance(3WSREG)

NAME
wsreg_set_instance, wsreg_get_instance - set or get the instance of a component SYNOPSIS
cc [flag ...] file ...-lwsreg [library ...] #include <wsreg.h> int wsreg_set_instance(Wsreg_component *comp, int instance); int wsreg_get_instance(Wsreg_component *comp); DESCRIPTION
The wsreg_set_instance() function sets the instance number specified by instance of the component specified by comp. The instance number and uuid are used to uniquely identify any component in the product install registry. The wsreg_get_instance() function determines the instance number associated with the component specified by comp. RETURN VALUES
The wsreg_set_instance() function returns a non-zero value if the instance was set correctly; otherwise 0 is returned. The wsreg_get_instance() function returns the instance number associated with the specified component. EXAMPLES
Example 1: Get the instance value of a registered component. The following example demonstrates how how to get the instance value of a registered component. #include <fcntl.h> #include <wsreg.h> int main (int argc, char **argv) { char *uuid = "d6cf2869-1dd1-11b2-9fcb-080020b69971"; Wsreg_component *comp = NULL; /* Initialize the registry */ wsreg_initialize(WSREG_INIT_NORMAL, NULL); if (!wsreg_can_access_registry(O_RDWR)) { printf("No permission to modify the registry. "); return 1; } /* Create a component */ comp = wsreg_create_component(uuid); wsreg_set_unique_name(comp, "wsreg_example_1"); wsreg_set_version(comp, "1.0"); wsreg_add_display_name(comp, "en", "Example 1 component"); wsreg_set_type(comp, WSREG_COMPONENT); wsreg_set_location(comp, "/usr/local/example1_component"); /* Register */ wsreg_register(comp); printf("Instance %d was assigned ", wsreg_get_instance(comp)); wsreg_free_component(comp); return 0; } USAGE
Upon component registration with the wsreg_register(3WSREG) function, the instance number is set automatically. The instance number of 0 (the default) indicates to the wsreg_register() function that an instance number should be looked up and assigned during registration. If a component with the same uuid and location is already registered in the product install registry, that component's instance number will be used during registration. After registration of a component, the wsreg_get_instance() function can be used to determine what instance value was assigned. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+ SEE ALSO
wsreg_create_component(3WSREG), wsreg_register(3WSREG), attributes(5) SunOS 5.10 22 Sep 2000 wsreg_set_instance(3WSREG)
All times are GMT -4. The time now is 07:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy