If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Connect to multiple instances of DB2 from a single C Application

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-09-08, 17:08
mouse99 mouse99 is offline
Registered User
 
Join Date: Oct 2008
Posts: 8
Connect to multiple instances of DB2 from a single C Application

Environment: AIX 5.1, language C, DB2 7.1
This is what I am trying to do.

I have more than one instance of DB2 on the server. Need to get the
list of databases for each instance. The other instances(Nodes) are
not cataloged in any instance, So I need to connect only through the
env. variable DB2INSTANCE.

This is how I am trying to do.
1. Set environment variable DB2INSTANCE to the first instance.
2. Attach to the first DB2 instance.
3. Get the list of databases.
4. Detach from Instance.
5. Set environment variable DB2INSTANCE to the Second instance.
2. Attach to the second DB2 instance.
3. Get the list of databases.
4. Detach from Instance.

The code

/*Set the environment variables which are used by sqlgetdbs() call to
* connect to the server to fetch the datbases
*/
env_value = (char *)malloc(strlen(server)+16);
strcpy(env_value, "DB2INSTANCE=");
strcat(env_value, server);

env_const = (char *)malloc(strlen(env_value)+1);
strcpy(env_const,env_value);

if (putenv(env_const) != 0) {
if (DEBUG) {
printf("Error setting environment varible DB2INSTANCE\n");
}
}
free(env_value);
env_var = getenv("DB2INSTANCE");
printf("env Var set value after: %s\n", env_var);

/* Attach to the INSTANCE */
nodename=server;
sqleatin(nodename, NULL, NULL, &sqlca);
printf("attach sqlcode %d\n",sqlca.sqlcode);

instName[SQL_INSTNAME_SZ] = '\0';
sqlegins (instName, &sqlca);
printf("ins name sqlcode %d \n", sqlca.sqlcode);
printf("ins name from sqlegins: %s \n", instName);

/* open database directory scan */
sqledosd(dbDirPath, &dbDirHandle, &nbDbEntries, &sqlca);
/* printf("OPen sqlcode %d\n",sqlca.sqlcode);*/

/* read the database entries */
for (dbEntryNb = 0; dbEntryNb < nbDbEntries; dbEntryNb++)
{
/* get next database directory entry */
sqledgne(dbDirHandle, &dbEntry, &sqlca);
printf("get sqlcode %d\n", sqlca.sqlcode);

/* printing out the database information on to the screen */
printf(" database name : %.8s\n", dbEntry->dbname);

} /* end for */

/* close database directory */
sqledcls(dbDirHandle, &sqlca);
printf("sqlcode close %d \n", sqlca.sqlcode);

/* Detach from the instance */
sqledtin(&sqlca);
printf("sqlcode detach %d \n", sqlca.sqlcode);

I loop the above peice with a diferrent INSTANCE name.

THE PROBLEM:
This works fine for the first INSTANCE but it is fails to connect to
the second instance and remains connected to the first one.

Have tried alternate methods using multiple contexts, threads, etc.
but have not been able to find a solution. This has troubled me for a
while.
Any useful information or piece of code that accomplishes this would
be greatly appreciated.
Reply With Quote
  #2 (permalink)  
Old 10-14-08, 09:13
mouse99 mouse99 is offline
Registered User
 
Join Date: Oct 2008
Posts: 8
Anybody knows how to do this? I've been struggling to have it done. In my program, I'd like to collect information for each instance, programtically. Thank you.
Reply With Quote
  #3 (permalink)  
Old 10-15-08, 15:24
mouse99 mouse99 is offline
Registered User
 
Join Date: Oct 2008
Posts: 8
I saw somewhere says it's because DB2 is caching the DB2INSTANCE variable, that's why the second one will not work. Using multi context may solve the problem. I tried it and still not working.
Reply With Quote
  #4 (permalink)  
Old 10-15-08, 15:55
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
See if this helps:

"If directory caching is enabled, database, node, and DCS directory files are cached in memory. An application's directory cache is created during its first directory lookup. Since the cache is only refreshed when the application modifies any of the directory files, directory changes made by other applications may not be effective until the application has restarted. "
Reply With Quote
  #5 (permalink)  
Old 10-15-08, 16:50
mouse99 mouse99 is offline
Registered User
 
Join Date: Oct 2008
Posts: 8
Thanks.
Disabled directory cache and still doesn't work.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On