Quantcast
Channel: IIUG Forum: IDS Forum
Viewing all 9843 articles
Browse latest View live

Parsing XML in IDS

$
0
0
We are using IDS 11.50 on AIX and have a table that is defined as follows: CREATE TABLE xpath_test ( id SMALLINT NOT NULL, xml_string clob ); The id column is the PK. The other column contains the xml document. id 1 xml_string <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="myfile.xsl" ?> <bookstore specialty="novel"> <book style="autobiography"> <author> <first-name>Joe</first-name> <last-name>Bob</last-name> <award>Trenton Literary Review Honorable Mention</award> </author> <price>12</price> </book> <book style="textbook"> <author> <first-name>Mary</first-name> <last-name>Bob</last-name> <publication>Selected Short Stories of <first-name>Mary</first-name> <last-name>Bob</last-name> </publication> </author> <editor> <first-name>Britney</first-name> <last-name>Bob</last-name> </editor> <price>55</price> </book> <magazine style="glossy" frequency="monthly"> <price>2.50</price> <subscription price="24" per="year"/> </magazine> <book style="novel" id="myfave"> <author> <first-name>Toni</first-name> <last-name>Bob</last-name> <degree from="Trenton U">B.A.</degree> <degree from="Harvard">Ph.D.</degree> <award>Pulitzer</award> <publication>Still in Trenton</publication> <publication>Trenton Forever</publication> </author> <price intl="Canada" exchange="0.7">6.50</price> <excerpt> <p>It was a dark and stormy night.</p> <p>But then all nights in Trenton seem dark and stormy to someone who has gone through what <emph>I</emph> have.</p> <definition-list> <term>Trenton</term> <definition>misery</definition> </definition-list> </excerpt> </book> <my:book xmlns:my="uri:mynamespace" style="leather" price="29.50"> <my:title>Who's Who in Trenton</my:title> <my:author>Robert Bob</my:author> </my:book> </bookstore> So for example, what we want to be able to do is return all values for a particular tag/node and trying to use the extractvalue function to return the value of the XML node, but it does not seem to work. Has anybody else had luck with doing this? If so, can you provide an example of what you did tailored to this XML listed above so that I may try to duplicate it? I currently have a PMR open with IBM for assistance and clarification but thought I would throw it out on the user group. Example query - select extractvalue(xml_string,'//author/first-name') from xpath_test where id=1; Thanks, Joe Plugge ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31411] *******************************************************************************

RE: standalone dbaccess

$
0
0
Hi Art and Marco Because we had a meeting here yesterday to discuss a tool that meet the following demands...: - Runs from commandline or better within a batch script (windows) - connects to the databaseserver - runs the queries and receives the resulting data - allows to send the output in a csv-file with a certain format my question: Are some of the free options are able to achieve what we need. Background is: We need to start queries from a jobscheduler software and have to store the results in a certain format for further processing. TIA Reinhard > -----Original Message----- > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of Art > Kagel > Sent: Thursday, September 12, 2013 8:37 PM > To: ids@iiug.org > Subject: Re: standalone dbaccess [31410] > > Oh darn, I meant to mention both! My excuse? Antihistimine fog - and I sticking to > that! > > Art > > Art S. Kagel, Principal Consultant > > Advanced DataTools (www.advancedatatools.com) > Blog: http://informix-myview.blogspot.com/ > > Disclaimer: Please keep in mind that my own opinions are my own opinions and > do not reflect on my employer, Advanced DataTools, the IIUG, nor any other > organization with which I am associated either explicitly, implicitly, or by > inference. Neither do those opinions reflect those of other individuals affiliated with > any entity with which I am affiliated nor those of the entities themselves. > > On Thu, Sep 12, 2013 at 2:00 PM, Marco Greco <marco@4glworks.com> wrote: > > > On 12/09/13 16:44, Art Kagel wrote: > > > If you are running one of the later releases of 11.50 or later, you > > > can install the Client SDK version 3.50 or later on your clients > > > which now contains a copy of dbaccess. Also note that if you just > > > need SQL command execution, there are several other free options: > > > > > > - Jonathan Leffler's sqlcmd utility in the IIUG Software Repository > > > > > > - OAT - www.openadmintool.org (but also included with the CSDK) > > > > > > - SquirrelSQL - http://squirrel-sql.sourceforge.net/ > > > > > > - Informix SQL Editor - https://code.google.com/p/ifmx-sql-editor/ > > > > > > - DtSQL - http://dtsql.com/ > > > > > > - SQL Explorer - http://eclipsesql.sourceforge.net/ > > > > > > Art > > > > > > Art S. Kagel, Principal Consultant > > > > > > > And let's not forget Aubit adbaccess or SQSL > > > > -- > > Ciao, > > Marco > > > > > ____________________________________________________________________ > __________ > > Marco Greco /UK /IBM Standard disclaimers apply! > > > > Structured Query Scripting Language http://www.4glworks.com/sqsl.htm > > 4glworks http://www.4glworks.com > > Informix on Linux http://www.4glworks.com/ifmxlinux.htm > > > > > > > > > ************************************************************************ ******* > > > > > > > > --001a11c34b48130d0804e633efdc > > > ************************************************************************ ******* > ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31412] *******************************************************************************

Re: standalone dbaccess

$
0
0
On 13/09/13 08:21, Habichtsberg, Reinhard wrote: > Hi Art and Marco > > Because we had a meeting here yesterday to discuss a tool that meet the > following demands...: > > - Runs from commandline or better within a batch script (windows) > - connects to the databaseserver > - runs the queries and receives the resulting data > - allows to send the output in a csv-file with a certain format > > my question: Are some of the free options are able to achieve what we > need. > > Background is: We need to start queries from a jobscheduler software and > have to store the results in a certain format for further processing. > > TIA > Reinhard > SQSL definitely runs from the a batch file on windows and the whole point of it is that you can do complex SQL scripts. And formats, csv or otherwise, are another of it's strong points. Me thinks you should give it a try - see my sig -- Ciao, Marco ______________________________________________________________________________ Marco Greco /UK /IBM Standard disclaimers apply! Structured Query Scripting Language http://www.4glworks.com/sqsl.htm 4glworks http://www.4glworks.com Informix on Linux http://www.4glworks.com/ifmxlinux.htm ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31413] *******************************************************************************

Re: standalone dbaccess

$
0
0
Jonathan's sqlcmd is ideal for this. It even has a "server" mode that sets it into memory reading SQL from a pipe so that scripts can send multiple commands without the overhead of repeatedly starting up the app and connecting to the database. It implements .csv format output as well as traditional Informix delimited, fixed format, and XML output. Art Art S. Kagel, Principal Consultant Advanced DataTools (www.advancedatatools.com) Blog: http://informix-myview.blogspot.com/ Disclaimer: Please keep in mind that my own opinions are my own opinions and do not reflect on my employer, Advanced DataTools, the IIUG, nor any other organization with which I am associated either explicitly, implicitly, or by inference. Neither do those opinions reflect those of other individuals affiliated with any entity with which I am affiliated nor those of the entities themselves. On Fri, Sep 13, 2013 at 3:21 AM, Habichtsberg, Reinhard < RHabichtsberg@arz-emmendingen.de> wrote: > Hi Art and Marco > > Because we had a meeting here yesterday to discuss a tool that meet the > following demands...: > > - Runs from commandline or better within a batch script (windows) > - connects to the databaseserver > - runs the queries and receives the resulting data > - allows to send the output in a csv-file with a certain format > > my question: Are some of the free options are able to achieve what we > need. > > Background is: We need to start queries from a jobscheduler software and > have to store the results in a certain format for further processing. > > TIA > Reinhard > > > -----Original Message----- > > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of > Art > > Kagel > > Sent: Thursday, September 12, 2013 8:37 PM > > To: ids@iiug.org > > Subject: Re: standalone dbaccess [31410] > > > > Oh darn, I meant to mention both! My excuse? Antihistimine fog - and I > sticking to > > that! > > > > Art > > > > Art S. Kagel, Principal Consultant > > > > Advanced DataTools (www.advancedatatools.com) > > Blog: http://informix-myview.blogspot.com/ > > > > Disclaimer: Please keep in mind that my own opinions are my own > opinions and > > do not reflect on my employer, Advanced DataTools, the IIUG, nor any > other > > organization with which I am associated either explicitly, implicitly, > or by > > inference. Neither do those opinions reflect those of other > individuals affiliated with > > any entity with which I am affiliated nor those of the entities > themselves. > > > > On Thu, Sep 12, 2013 at 2:00 PM, Marco Greco <marco@4glworks.com> > wrote: > > > > > On 12/09/13 16:44, Art Kagel wrote: > > > > If you are running one of the later releases of 11.50 or later, > you > > > > can install the Client SDK version 3.50 or later on your clients > > > > which now contains a copy of dbaccess. Also note that if you just > > > > need SQL command execution, there are several other free options: > > > > > > > > - Jonathan Leffler's sqlcmd utility in the IIUG Software > Repository > > > > > > > > - OAT - www.openadmintool.org (but also included with the CSDK) > > > > > > > > - SquirrelSQL - http://squirrel-sql.sourceforge.net/ > > > > > > > > - Informix SQL Editor - https://code.google.com/p/ifmx-sql-editor/ > > > > > > > > - DtSQL - http://dtsql.com/ > > > > > > > > - SQL Explorer - http://eclipsesql.sourceforge.net/ > > > > > > > > Art > > > > > > > > Art S. Kagel, Principal Consultant > > > > > > > > > > And let's not forget Aubit adbaccess or SQSL > > > > > > -- > > > Ciao, > > > Marco > > > > > > > > ____________________________________________________________________ > > __________ > > > Marco Greco /UK /IBM Standard disclaimers apply! > > > > > > Structured Query Scripting Language http://www.4glworks.com/sqsl.htm > > > 4glworks http://www.4glworks.com > > > Informix on Linux http://www.4glworks.com/ifmxlinux.htm > > > > > > > > > > > > > > > ************************************************************************ > ******* > > > > > > > > > > > > > --001a11c34b48130d0804e633efdc > > > > > > > ************************************************************************ > ******* > > > > > > > > > --001a11c23c884b0ab804e6426f8e ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31414] *******************************************************************************

RE: standalone dbaccess

$
0
0
Does sqlcmd run on Windows Server 2008 or 2012 and what are the software requirements to run sqlcmd? Has Informix CSDK and Visual C or another SDK to be installed on the Windows Server? Reinhard. > -----Original Message----- > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of Art > Kagel > Sent: Friday, September 13, 2013 1:49 PM > To: ids@iiug.org > Subject: Re: standalone dbaccess [31414] > > Jonathan's sqlcmd is ideal for this. It even has a "server" mode that sets it into > memory reading SQL from a pipe so that scripts can send multiple commands > without the overhead of repeatedly starting up the app and connecting to the > database. It implements .csv format output as well as traditional Informix > delimited, fixed format, and XML output. > > Art > > Art S. Kagel, Principal Consultant > > Advanced DataTools (www.advancedatatools.com) > Blog: http://informix-myview.blogspot.com/ > > Disclaimer: Please keep in mind that my own opinions are my own opinions and > do not reflect on my employer, Advanced DataTools, the IIUG, nor any other > organization with which I am associated either explicitly, implicitly, or by > inference. Neither do those opinions reflect those of other individuals affiliated with > any entity with which I am affiliated nor those of the entities themselves. > > On Fri, Sep 13, 2013 at 3:21 AM, Habichtsberg, Reinhard < RHabichtsberg@arz- > emmendingen.de> wrote: > > > Hi Art and Marco > > > > Because we had a meeting here yesterday to discuss a tool that meet > > the following demands...: > > > > - Runs from commandline or better within a batch script (windows) > > - connects to the databaseserver > > - runs the queries and receives the resulting data > > - allows to send the output in a csv-file with a certain format > > > > my question: Are some of the free options are able to achieve what we > > need. > > > > Background is: We need to start queries from a jobscheduler software > > and have to store the results in a certain format for further processing. > > > > TIA > > Reinhard > > > > > -----Original Message----- > > > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf > > > Of > > Art > > > Kagel > > > Sent: Thursday, September 12, 2013 8:37 PM > > > To: ids@iiug.org > > > Subject: Re: standalone dbaccess [31410] > > > > > > Oh darn, I meant to mention both! My excuse? Antihistimine fog - and > > > I > > sticking to > > > that! > > > > > > Art > > > > > > Art S. Kagel, Principal Consultant > > > > > > Advanced DataTools (www.advancedatatools.com) > > > Blog: http://informix-myview.blogspot.com/ > > > > > > Disclaimer: Please keep in mind that my own opinions are my own > > opinions and > > > do not reflect on my employer, Advanced DataTools, the IIUG, nor any > > other > > > organization with which I am associated either explicitly, > > > implicitly, > > or by > > > inference. Neither do those opinions reflect those of other > > individuals affiliated with > > > any entity with which I am affiliated nor those of the entities > > themselves. > > > > > > On Thu, Sep 12, 2013 at 2:00 PM, Marco Greco <marco@4glworks.com> > > wrote: > > > > > > > On 12/09/13 16:44, Art Kagel wrote: > > > > > If you are running one of the later releases of 11.50 or later, > > you > > > > > can install the Client SDK version 3.50 or later on your clients > > > > > which now contains a copy of dbaccess. Also note that if you > > > > > just need SQL command execution, there are several other free options: > > > > > > > > > > - Jonathan Leffler's sqlcmd utility in the IIUG Software > > Repository > > > > > > > > > > - OAT - www.openadmintool.org (but also included with the CSDK) > > > > > > > > > > - SquirrelSQL - http://squirrel-sql.sourceforge.net/ > > > > > > > > > > - Informix SQL Editor - > > > > > https://code.google.com/p/ifmx-sql-editor/ > > > > > > > > > > - DtSQL - http://dtsql.com/ > > > > > > > > > > - SQL Explorer - http://eclipsesql.sourceforge.net/ > > > > > > > > > > Art > > > > > > > > > > Art S. Kagel, Principal Consultant > > > > > > > > > > > > > And let's not forget Aubit adbaccess or SQSL > > > > > > > > -- > > > > Ciao, > > > > Marco > > > > > > > > > > > > ____________________________________________________________________ > > > __________ > > > > Marco Greco /UK /IBM Standard disclaimers apply! > > > > > > > > Structured Query Scripting Language > > > > http://www.4glworks.com/sqsl.htm 4glworks http://www.4glworks.com > > > > Informix on Linux http://www.4glworks.com/ifmxlinux.htm > > > > > > > > > > > > > > > > > > > > > ********************************************************************** > > ** > > ******* > > > > Forum Note: Use "Reply" to post a response in the discussion forum. > > > > > > > > > > > > > > --001a11c34b48130d0804e633efdc > > > > > > > > > > > ********************************************************************** > > ** > > ******* > > > Forum Note: Use "Reply" to post a response in the discussion forum. > > > > > > > > > ************************************************************************ ******* > > > > > > > > --001a11c23c884b0ab804e6426f8e > > > ************************************************************************ ******* > ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31415] *******************************************************************************

Re: standalone dbaccess

$
0
0
Hmm, I haven't tried to compile sqlcmd on windows, honestly. I would require the CSDK and a C compiler, yes. Download the package, Jonathan is very thorough, so I'm sure the readme file will tell you if it will work on Windows. Or perhaps Jonathan will pipe in. Art Art S. Kagel, Principal Consultant Advanced DataTools (www.advancedatatools.com) Blog: http://informix-myview.blogspot.com/ Disclaimer: Please keep in mind that my own opinions are my own opinions and do not reflect on my employer, Advanced DataTools, the IIUG, nor any other organization with which I am associated either explicitly, implicitly, or by inference. Neither do those opinions reflect those of other individuals affiliated with any entity with which I am affiliated nor those of the entities themselves. On Fri, Sep 13, 2013 at 8:42 AM, Habichtsberg, Reinhard < RHabichtsberg@arz-emmendingen.de> wrote: > Does sqlcmd run on Windows Server 2008 or 2012 and what are the software > requirements to run sqlcmd? Has Informix CSDK and Visual C or another > SDK to be installed on the Windows Server? > > Reinhard. > > > -----Original Message----- > > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of > Art > > Kagel > > Sent: Friday, September 13, 2013 1:49 PM > > To: ids@iiug.org > > Subject: Re: standalone dbaccess [31414] > > > > Jonathan's sqlcmd is ideal for this. It even has a "server" mode that > sets it into > > memory reading SQL from a pipe so that scripts can send multiple > commands > > without the overhead of repeatedly starting up the app and connecting > to the > > database. It implements .csv format output as well as traditional > Informix > > delimited, fixed format, and XML output. > > > > Art > > > > Art S. Kagel, Principal Consultant > > > > Advanced DataTools (www.advancedatatools.com) > > Blog: http://informix-myview.blogspot.com/ > > > > Disclaimer: Please keep in mind that my own opinions are my own > opinions and > > do not reflect on my employer, Advanced DataTools, the IIUG, nor any > other > > organization with which I am associated either explicitly, implicitly, > or by > > inference. Neither do those opinions reflect those of other > individuals affiliated with > > any entity with which I am affiliated nor those of the entities > themselves. > > > > On Fri, Sep 13, 2013 at 3:21 AM, Habichtsberg, Reinhard < > RHabichtsberg@arz- > > emmendingen.de> wrote: > > > > > Hi Art and Marco > > > > > > Because we had a meeting here yesterday to discuss a tool that meet > > > the following demands...: > > > > > > - Runs from commandline or better within a batch script (windows) > > > - connects to the databaseserver > > > - runs the queries and receives the resulting data > > > - allows to send the output in a csv-file with a certain format > > > > > > my question: Are some of the free options are able to achieve what > we > > > need. > > > > > > Background is: We need to start queries from a jobscheduler software > > > and have to store the results in a certain format for further > processing. > > > > > > TIA > > > Reinhard > > > > > > > -----Original Message----- > > > > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf > > > > Of > > > Art > > > > Kagel > > > > Sent: Thursday, September 12, 2013 8:37 PM > > > > To: ids@iiug.org > > > > Subject: Re: standalone dbaccess [31410] > > > > > > > > Oh darn, I meant to mention both! My excuse? Antihistimine fog - > and > > > > I > > > sticking to > > > > that! > > > > > > > > Art > > > > > > > > Art S. Kagel, Principal Consultant > > > > > > > > Advanced DataTools (www.advancedatatools.com) > > > > Blog: http://informix-myview.blogspot.com/ > > > > > > > > Disclaimer: Please keep in mind that my own opinions are my own > > > opinions and > > > > do not reflect on my employer, Advanced DataTools, the IIUG, nor > any > > > other > > > > organization with which I am associated either explicitly, > > > > implicitly, > > > or by > > > > inference. Neither do those opinions reflect those of other > > > individuals affiliated with > > > > any entity with which I am affiliated nor those of the entities > > > themselves. > > > > > > > > On Thu, Sep 12, 2013 at 2:00 PM, Marco Greco <marco@4glworks.com> > > > wrote: > > > > > > > > > On 12/09/13 16:44, Art Kagel wrote: > > > > > > If you are running one of the later releases of 11.50 or > later, > > > you > > > > > > can install the Client SDK version 3.50 or later on your > clients > > > > > > which now contains a copy of dbaccess. Also note that if you > > > > > > just need SQL command execution, there are several other free > options: > > > > > > > > > > > > - Jonathan Leffler's sqlcmd utility in the IIUG Software > > > Repository > > > > > > > > > > > > - OAT - www.openadmintool.org (but also included with the > CSDK) > > > > > > > > > > > > - SquirrelSQL - http://squirrel-sql.sourceforge.net/ > > > > > > > > > > > > - Informix SQL Editor - > > > > > > https://code.google.com/p/ifmx-sql-editor/ > > > > > > > > > > > > - DtSQL - http://dtsql.com/ > > > > > > > > > > > > - SQL Explorer - http://eclipsesql.sourceforge.net/ > > > > > > > > > > > > Art > > > > > > > > > > > > Art S. Kagel, Principal Consultant > > > > > > > > > > > > > > > > And let's not forget Aubit adbaccess or SQSL > > > > > > > > > > -- > > > > > Ciao, > > > > > Marco > > > > > > > > > > > > > > > > ____________________________________________________________________ > > > > __________ > > > > > Marco Greco /UK /IBM Standard disclaimers apply! > > > > > > > > > > Structured Query Scripting Language > > > > > http://www.4glworks.com/sqsl.htm 4glworks > http://www.4glworks.com > > > > > Informix on Linux http://www.4glworks.com/ifmxlinux.htm > > > > > > > > > > > > > > > > > > > > > > > > > > > > ********************************************************************** > > > ** > > > ******* > > > > > Forum Note: Use "Reply" to post a response in the discussion > forum. > > > > > > > > > > > > > > > > > > --001a11c34b48130d0804e633efdc > > > > > > > > > > > > > > > > ********************************************************************** > > > ** > > > ******* > > > > Forum Note: Use "Reply" to post a response in the discussion > forum. > > > > > > > > > > > > > > > ************************************************************************ > ******* > > > > > > > > > > > > > --001a11c23c884b0ab804e6426f8e > > > > > > > ************************************************************************ > ******* > > > > > > > > > --001a11c3327a71ac4804e643cbea ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31416] *******************************************************************************

Re: standalone dbaccess

$
0
0
SQLCMD compiled on Windows about a decade ago. Then Microsoft got grumpy about safe function like strcpy() etc — safe if used properly, that is; unsafe when misused — and generally made life hell for someone who's not really interested in investing in their weird infrastructure. There's the ISO TR 24731-1 (now Annex K of ISO/IEC 9899:2011) Technical Report that documents the C 'safer' functions, with names like strcpy_s(), but Microsoft doesn't conform to the standard so the only point of using those functions is defeated by Microsoft. (See http://stackoverflow.com/questions/372980/do-you-use-the-tr-24731-safe-functionsfor more details.) I don't have a Windows machine any more (hooray!). SQLCMD has some Win32 support, but it hasn't been actively maintained for quite some time. AFAICR, I've not done anything to deliberately make it impossible to compile on Windows, but it is unlikely to be smooth sailing. If you can persuade ESQL/C to use GCC in a Cygwin environment, it should be straight-forward. I never found a way to make ESQL/C work nicely at the Windows command line (it was a complete and utter PITA as far as I was concerned), let alone work sanely with GCC. On Fri, Sep 13, 2013 at 6:26 AM, Art Kagel <art.kagel@gmail.com> wrote: > Hmm, I haven't tried to compile sqlcmd on windows, honestly. I would > require the CSDK and a C compiler, yes. Download the package, Jonathan is > very thorough, so I'm sure the readme file will tell you if it will work on > Windows. Or perhaps Jonathan will pipe in. > > Art > > Art S. Kagel, Principal Consultant > > Advanced DataTools (www.advancedatatools.com) > Blog: http://informix-myview.blogspot.com/ > > Disclaimer: Please keep in mind that my own opinions are my own opinions > and do not reflect on my employer, Advanced DataTools, the IIUG, nor any > other organization with which I am associated either explicitly, > implicitly, or by inference. Neither do those opinions reflect those of > other individuals affiliated with any entity with which I am affiliated nor > those of the entities themselves. > > On Fri, Sep 13, 2013 at 8:42 AM, Habichtsberg, Reinhard < > RHabichtsberg@arz-emmendingen.de> wrote: > > > Does sqlcmd run on Windows Server 2008 or 2012 and what are the software > > requirements to run sqlcmd? Has Informix CSDK and Visual C or another > > SDK to be installed on the Windows Server? > > > > Reinhard. > > > > > -----Original Message----- > > > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of > > Art > > > Kagel > > > Sent: Friday, September 13, 2013 1:49 PM > > > To: ids@iiug.org > > > Subject: Re: standalone dbaccess [31414] > > > > > > Jonathan's sqlcmd is ideal for this. It even has a "server" mode that > > sets it into > > > memory reading SQL from a pipe so that scripts can send multiple > > commands > > > without the overhead of repeatedly starting up the app and connecting > > to the > > > database. It implements .csv format output as well as traditional > > Informix > > > delimited, fixed format, and XML output. > > > > > > Art > > > > > > Art S. Kagel, Principal Consultant > > > > > > Advanced DataTools (www.advancedatatools.com) > > > Blog: http://informix-myview.blogspot.com/ > > > > > > Disclaimer: Please keep in mind that my own opinions are my own > > opinions and > > > do not reflect on my employer, Advanced DataTools, the IIUG, nor any > > other > > > organization with which I am associated either explicitly, implicitly, > > or by > > > inference. Neither do those opinions reflect those of other > > individuals affiliated with > > > any entity with which I am affiliated nor those of the entities > > themselves. > > > > > > On Fri, Sep 13, 2013 at 3:21 AM, Habichtsberg, Reinhard < > > RHabichtsberg@arz- > > > emmendingen.de> wrote: > > > > > > > Hi Art and Marco > > > > > > > > Because we had a meeting here yesterday to discuss a tool that meet > > > > the following demands...: > > > > > > > > - Runs from commandline or better within a batch script (windows) > > > > - connects to the databaseserver > > > > - runs the queries and receives the resulting data > > > > - allows to send the output in a csv-file with a certain format > > > > > > > > my question: Are some of the free options are able to achieve what > > we > > > > need. > > > > > > > > Background is: We need to start queries from a jobscheduler software > > > > and have to store the results in a certain format for further > > processing. > > > > > > > > TIA > > > > Reinhard > > > > > > > > > -----Original Message----- > > > > > From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf > > > > > Of > > > > Art > > > > > Kagel > > > > > Sent: Thursday, September 12, 2013 8:37 PM > > > > > To: ids@iiug.org > > > > > Subject: Re: standalone dbaccess [31410] > > > > > > > > > > Oh darn, I meant to mention both! My excuse? Antihistimine fog - > > and > > > > > I > > > > sticking to > > > > > that! > > > > > > > > > > Art > > > > > > > > > > Art S. Kagel, Principal Consultant > > > > > > > > > > Advanced DataTools (www.advancedatatools.com) > > > > > Blog: http://informix-myview.blogspot.com/ > > > > > > > > > > Disclaimer: Please keep in mind that my own opinions are my own > > > > opinions and > > > > > do not reflect on my employer, Advanced DataTools, the IIUG, nor > > any > > > > other > > > > > organization with which I am associated either explicitly, > > > > > implicitly, > > > > or by > > > > > inference. Neither do those opinions reflect those of other > > > > individuals affiliated with > > > > > any entity with which I am affiliated nor those of the entities > > > > themselves. > > > > > > > > > > On Thu, Sep 12, 2013 at 2:00 PM, Marco Greco <marco@4glworks.com> > > > > wrote: > > > > > > > > > > > On 12/09/13 16:44, Art Kagel wrote: > > > > > > > If you are running one of the later releases of 11.50 or > > later, > > > > you > > > > > > > can install the Client SDK version 3.50 or later on your > > clients > > > > > > > which now contains a copy of dbaccess. Also note that if you > > > > > > > just need SQL command execution, there are several other free > > options: > > > > > > > > > > > > > > - Jonathan Leffler's sqlcmd utility in the IIUG Software > > > > Repository > > > > > > > > > > > > > > - OAT - www.openadmintool.org (but also included with the > > CSDK) > > > > > > > > > > > > > > - SquirrelSQL - http://squirrel-sql.sourceforge.net/ > > > > > > > > > > > > > > - Informix SQL Editor - > > > > > > > https://code.google.com/p/ifmx-sql-editor/ > > > > > > > > > > > > > > - DtSQL - http://dtsql.com/ > > > > > > > > > > > > > > - SQL Explorer - http://eclipsesql.sourceforge.net/ > > > > > > > > > > > > > > Art > > > > > > > > > > > > > > Art S. Kagel, Principal Consultant > > > > > > > > > > > > > > > > > > > And let's not forget Aubit adbaccess or SQSL > > > > > > > > > > > > -- > > > > > > Ciao, > > > > > > Marco > > > > > > > > > > > > > > > > > > > > ____________________________________________________________________ > > > > > __________ > > > > > > Marco Greco /UK /IBM Standard disclaimers apply! > > > > > > > > > > > > Structured Query Scripting Language > > > > > > http://www.4glworks.com/sqsl.htm 4glworks > > http://www.4glworks.com > > > > > > Informix on Linux http://www.4glworks.com/ifmxlinux.htm > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ********************************************************************** > > > > ** > > > > ******* > > > > > > Forum Note: Use "Reply" to post a response in the discussion > > forum. > > > > > > > > > > > > > > > > > > > > > > --001a11c34b48130d0804e633efdc > > > > > > > > > > > > > > > > > > > > > ********************************************************************** > > > > ** > > > > ******* > > > > > Forum Note: Use "Reply" to post a response in the discussion > > forum. > > > > > > > > > > > > > > > > > > > > > ************************************************************************ > > ******* > > > > > > > > > > > > > > > > > > --001a11c23c884b0ab804e6426f8e > > > > > > > > > > > ************************************************************************ > > ******* > > > > > > > > > > > > > > > > > > > > > --001a11c3327a71ac4804e643cbea > > > > > > > -- Jonathan Leffler <jonathan.leffler@gmail.com> #include <disclaimer.h> Guardian of DBD::Informix - v2013.0521 - http://dbi.perl.org "Blessed are we who can laugh at ourselves, for we shall never cease to be amused." --047d7b343f60ffb84304e6459781 ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31417] *******************************************************************************

Re: standalone dbaccess

$
0
0
Thanks for all the options! ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31418] *******************************************************************************

RE: Error building 'sysmaster' database

$
0
0
Seems to me like you should reference all commands using the full path instead of relying on the PATH variable to be choosing the correct one. Try /usr/informix1/oninit instead of oninit -Justin -----Original Message----- From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of Marcus Haarmann Sent: Thursday, September 12, 2013 3:39 AM To: ids@iiug.org Subject: Re: Error building 'sysmaster' database [31404] Your online.log says you are startion version 10.00 14:39:54 IBM Informix Dynamic Server Started. Thu Sep 12 14:39:54 2013 14:39:54 Warning: ONCONFIG dump directory (DUMPDIR) '/usr/informix1/instances/lvhoan/logs' has insecure permissions 14:39:54 Event alarms enabled. ALARMPROG = '/usr/informix1/etc/alarmprogram.sh' 14:39:54 Booting Language <c> from module <> 14:39:54 Loading Module <CNULL> 14:39:54 Booting Language <builtin> from module <> 14:39:54 Loading Module <BUILTINNULL> 14:39:54 Dynamically allocated new virtual shared memory segment (size 8192KB) 14:39:54 Memory sizes:resident:12288 KB, virtual:16384 KB, no SHMTOTAL limit 14:39:59 DR: DRAUTO is 0 (Off) 14:39:59 IBM Informix Dynamic Server Version 10.00.UC9 Software Serial Number AAA#B000000 14:40:07 IBM Informix Dynamic Server Initialized -- Complete Disk Initialized. 14:40:08 Checkpoint Completed: duration was 0 seconds. 14:40:08 Checkpoint loguniq 1, logpos 0xd0, timestamp: 0x51 Marcus Haarmann ----- Ursprüngliche Mail ----- Von: "HOAN LUU VAN"<hoan.luuvan@nttdata.com> An: ids@iiug.org Gesendet: Donnerstag, 12. September 2013 11:58:46 Betreff: Re: Error building 'sysmaster' database [31403] My server has already informix 10 instaled before in /usr/informix. And then I installed informix 11.5 in a different folder /usr/informix1. Afer oninit finished, here is output of onstat command: M4K2-SysAdmDev2:informix > onstat - IBM Informix Dynamic Server Version 11.50.FC9DE -- On-Line -- Up 00:00:47 -- 38912 Kbytes M4K2-SysAdmDev2:informix > ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31419] *******************************************************************************

not enough free disk to restore

$
0
0
Hi to all I don t have enoygh space to put my l0 and l1 to restore a production instance on a test machine, i can compress lo and li files, so they can fit in this space but is the a war to decompress these files and restore the instance Thans in advance ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31420] *******************************************************************************

Re: not enough free disk to restore

$
0
0
If you can hold the larger of the files then expand the L0 file, restore it, delete it, then expand the L1 and continue the restore. Art On Sep 15, 2013 7:21 PM, "SMITH JOHN"<daylight@webmails.com> wrote: > Hi to all > I don t have enoygh space to put my l0 and l1 to restore a production > instance > on a test machine, i can compress lo and li files, so they can fit in this > space but is the a war to decompress these files and restore the instance > Thans in advance > > > > > > > --001a11c3c704fba29d04e674b0df ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31421] *******************************************************************************

RE: when use IfxDataReader.GetIfxDateTime to N....

$
0
0
Hello. You should be using an old CSDK version. Please post your Informix server version, and your CSDK version, in order we can help you. Information Center 12.10 shows these methods in class IfxDataReader: http://pic.dhe.ibm.com/infocenter/informix/v121/topic/com.ibm.netpr.doc/ids_net_083.htm Regards. Alexandre Marini IBM Informix Certified Professional v10 / v11.50 / v11.70 / v12.10 IBM Information Management Informix Technical Professional IBM Infosphere DataStage Technical Professional Informix Senior DBA - Orizon Brasil BRIUG website administrator Informix independent consultant > To: ids@iiug.org > From: chingsze@hkcts.com > Subject: when use IfxDataReader.GetIfxDateTime to NULL valu [31431] > Date: Tue, 17 Sep 2013 07:36:17 -0400 > > When use IfxDataReader.GetIfxDateTime method to read a NULL value field, it > showed the error message "specified cast not valid" something like that. > > What should I do ? > > Use IfxDataReader["field name"].ToString() to check the length of the field > before, and then, if = 0, set null value ? > > > > > ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31432] *******************************************************************************

Re: when use IfxDataReader.GetIfxDateTime to N....

$
0
0
You are supposed to use the IfxDataReader.IsDBNull method to detech whether the column value for the current row is NULL or not before calling the appropriate GetIfx* method for it! Art Art S. Kagel, Principal Consultant Advanced DataTools (www.advancedatatools.com) Blog: http://informix-myview.blogspot.com/ Disclaimer: Please keep in mind that my own opinions are my own opinions and do not reflect on my employer, Advanced DataTools, the IIUG, nor any other organization with which I am associated either explicitly, implicitly, or by inference. Neither do those opinions reflect those of other individuals affiliated with any entity with which I am affiliated nor those of the entities themselves. On Tue, Sep 17, 2013 at 7:36 AM, VINCENT YEUNG <chingsze@hkcts.com> wrote: > When use IfxDataReader.GetIfxDateTime method to read a NULL value field, it > showed the error message "specified cast not valid" something like that. > > What should I do ? > > Use IfxDataReader["field name"].ToString() to check the length of the field > before, and then, if = 0, set null value ? > > > > > > > --001a11c32e88acf60604e6935436 ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31433] *******************************************************************************

alter fragment attach ...

$
0
0
ids 11.70.fc3xc aix 6.1 Looking to move some fragmented tables around .. and before figuring out exactly what we are doing I was doing a simple test with detach and attach ... So, here is my question ... I have a table fragmented over 40 periods ... Took the indexes off the table ... cause I wanted to do a simple detach .. and then attach to make sure things did what I expected them to do .. alter table ... detach ... statement works and results in the table with the expected data. alter fragment on table ... attach ... giving the exact expression ... with the before dbspace (same one it preceded before) ... In doing this I am getting a -783, Cannot attach because of incompatible schema ... Any clues .. seems to me that I should be able to reattach the fragment I just detached .... Peter Logan Senior Database Administrator Phone: 616/878-8309 ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31434] *******************************************************************************

Re: alter fragment attach ...

$
0
0
When you detach the fragment, all of the things you wanted to go along = with it - I forget which, but NOT NULL, constraints ya-di-ya go away. = You have to re-add them before attaching. j. On Sep 17, 2013, at 2:19 PM, "Peter_Logan@spartanstores.com" = <Peter_Logan@spartanstores.com> wrote: > ids 11.70.fc3xc=20 > aix 6.1=20 >=20 > Looking to move some fragmented tables around .. and before figuring = out=20 > exactly what we are doing I was doing a simple test with detach and = attach=20 > ... So, here is my question ...=20 >=20 > I have a table fragmented over 40 periods ... Took the indexes off the=20= > table ... cause I wanted to do a simple detach .. and then attach to = make=20 > sure things did what I expected them to do ..=20 >=20 > alter table ... detach ... statement works and results in the table = with=20 > the expected data.=20 >=20 > alter fragment on table ...=20 >=20 > attach ...=20 >=20 > giving the exact expression ... with the before dbspace (same one it=20= > preceded before) ...=20 >=20 > In doing this I am getting a -783, Cannot attach because of = incompatible=20 > schema ...=20 >=20 > Any clues .. seems to me that I should be able to reattach the = fragment I=20 > just detached ....=20 >=20 > Peter Logan=20 > Senior Database Administrator=20 > Phone: 616/878-8309=20 >=20 >=20 > = **************************************************************************= *****=20 > =20= >=20 ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31435] *******************************************************************************

Re: alter fragment attach ...

$
0
0
forgot about that ... Thanks ... Too bad that stuff all goes away ... other than like a serial column ... can't see why .. but that's why I don't write the DB ... Peter Logan Senior Database Administrator Phone: 616/878-8309 From: "Jack Parker"<jack.parker4@verizon.net> To: ids@iiug.org, Date: 09/17/2013 02:28 PM Subject: Re: alter fragment attach ... [31435] Sent by: ids-bounces@iiug.org When you detach the fragment, all of the things you wanted to go along = with it - I forget which, but NOT NULL, constraints ya-di-ya go away. = You have to re-add them before attaching. j. On Sep 17, 2013, at 2:19 PM, "Peter_Logan@spartanstores.com" = <Peter_Logan@spartanstores.com> wrote: > ids 11.70.fc3xc=20 > aix 6.1=20 >=20 > Looking to move some fragmented tables around .. and before figuring = out=20 > exactly what we are doing I was doing a simple test with detach and = attach=20 > ... So, here is my question ...=20 >=20 > I have a table fragmented over 40 periods ... Took the indexes off the=20= > table ... cause I wanted to do a simple detach .. and then attach to = make=20 > sure things did what I expected them to do ..=20 >=20 > alter table ... detach ... statement works and results in the table = with=20 > the expected data.=20 >=20 > alter fragment on table ...=20 >=20 > attach ...=20 >=20 > giving the exact expression ... with the before dbspace (same one it=20= > preceded before) ...=20 >=20 > In doing this I am getting a -783, Cannot attach because of = incompatible=20 > schema ...=20 >=20 > Any clues .. seems to me that I should be able to reattach the = fragment I=20 > just detached ....=20 >=20 > Peter Logan=20 > Senior Database Administrator=20 > Phone: 616/878-8309=20 >=20 >=20 > = **************************************************************************= *****=20 > =20= >=20 ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31436] *******************************************************************************

Re: not enough free disk to restore

$
0
0
As apparently Madison used to say - go to to Radio Shack and buy some more disk! David. On 16 September 2013 at 00:46 Art Kagel <art.kagel@gmail.com> wrote: > If you can hold the larger of the files then expand the L0 file, restore > it, delete it, then expand the L1 and continue the restore. > > Art > On Sep 15, 2013 7:21 PM, "SMITH JOHN"<daylight@webmails.com> wrote: > > > Hi to all > > I don t have enoygh space to put my l0 and l1 to restore a production > > instance > > on a test machine, i can compress lo and li files, so they can fit in this > > space but is the a war to decompress these files and restore the instance > > Thans in advance > > > > > > > > > > > > > > > > > --001a11c3c704fba29d04e674b0df > > > > > ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31437] *******************************************************************************

distributed query & blob

$
0
0
IDS 11.50.FC8 , IBM INFORMIX-4GL Version 7.50.FC3X4 Q. getting the following error trying to retrieve a blob data type from an external informix logged database. fglrun testnetimage.42m Program stopped at 'testnetimage.4gl', line number 29. SQL statement error number -9270. Type (informix.blob) is unsupported in distributed queries. Not sure if this is supported or not, if not then would appreciate any insight on how to retrieve a blob from an external database. We tried opening the external database and running the query , same error. ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31438] *******************************************************************************

Re: distributed query & blob

$
0
0
You have to connect directly to the remote server by using one of: - the CONNECT TO SQL Command in your 4GL app - include the @dbservername in the DATABASE command in your 4GL app - set the remote server's name into INFORMIXSERVER in the apps environment If you also have to query the local server, you can use CONNECT TO and SET CONNECTION to maintain separate connections to each server. Art Art S. Kagel, Principal Consultant Advanced DataTools (www.advancedatatools.com) Blog: http://informix-myview.blogspot.com/ Disclaimer: Please keep in mind that my own opinions are my own opinions and do not reflect on my employer, Advanced DataTools, the IIUG, nor any other organization with which I am associated either explicitly, implicitly, or by inference. Neither do those opinions reflect those of other individuals affiliated with any entity with which I am affiliated nor those of the entities themselves. On Tue, Sep 17, 2013 at 5:31 PM, MARK JALKIEWICZ < mark.jalkiewicz@verizon.net> wrote: > IDS 11.50.FC8 , IBM INFORMIX-4GL Version 7.50.FC3X4 > > Q. getting the following error trying to retrieve a blob data type from an > external informix logged database. > > fglrun testnetimage.42m > Program stopped at 'testnetimage.4gl', line number 29. > SQL statement error number -9270. > Type (informix.blob) is unsupported in distributed queries. > > Not sure if this is supported or not, if not then would appreciate any > insight > on how to retrieve a blob from an external database. We tried opening the > external database and running the query , same error. > > > > > > > --001a11c373e497321804e69b220d ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31439] *******************************************************************************

How to know if a session is hanged already?

$
0
0
Hi All, IDS9.4 OS=Solaris I just want to ask how can i know if a certain session already hanged? I'm seeing just : 7924171 sqlexec 9651b320 Y--P--- 2264 cond wait(netnorm) 7924168 sqlexec a4059ff0 Y--P--- 2264 cond wait(netnorm) 7924166 sqlexec 991169f8 Y--P--- 2264 cond wait(netnorm) 7924153 sqlexec 94af49e8 Y--P--- 2264 cond wait(netnorm) 7924107 sqlexec 9c4e2ab8 Y--P--- 2264 cond wait(netnorm) 7924106 sqlexec a40450c8 Y--P--- 2264 cond wait(netnorm) 7923965 sqlexec 99132ce8 Y--P--- 2264 cond wait(netnorm) 7923964 sqlexec 99117628 Y--P--- 2264 cond wait(netnorm) 7923955 sqlexec 94af1310 Y--P--- 2264 cond wait(netnorm) 7923954 sqlexec 96538858 Y--P--- 2264 cond wait(netnorm) 7923953 sqlexec 90298ff8 Y--P--- 2264 cond wait(netnorm) 7923927 sqlexec 9912c550 Y--P--- 2264 cond wait(netnorm) 7923926 sqlexec 90294cf0 Y--P--- 2264 cond wait(netnorm) 7923921 sqlexec 94aefab0 Y--P--- 2264 cond wait(netnorm) 7923920 sqlexec 9c4ef9e8 Y--P--- 2264 cond wait(netnorm) 7923902 sqlexec 94b08ce0 Y--P--- 2264 cond wait(netnorm) 7923901 sqlexec 9c508600 Y--P--- 2264 cond wait(netnorm) 7923838 sqlexec 96533f38 Y--P--- 2264 cond wait(netnorm) 7923837 sqlexec 902a7788 Y--P--- 2264 cond wait(netnorm) 7923685 sqlexec 9c4f4920 Y--P--- 2264 cond wait(netnorm) 7923684 sqlexec 9c4faaa0 Y--P--- 2264 cond wait(netnorm) 7923677 sqlexec 90296b68 Y--P--- 2264 cond wait(netnorm) 7923676 sqlexec 991263d0 Y--P--- 2264 cond wait(netnorm) 7923621 sqlexec 9c4ed558 Y--P--- 2264 cond wait(netnorm) 7923615 sqlexec 96525dc0 Y--P--- 2264 cond wait(netnorm) 7923608 sqlexec a405f540 Y--P--- 2264 cond wait(netnorm) 7923607 sqlexec 94b03178 Y--P--- 2264 cond wait(netnorm) 7923545 sqlexec 902a52f8 Y--P--- 2264 cond wait(netnorm) 7923544 sqlexec 94afd610 Y--P--- 2264 cond wait(netnorm) 7923541 sqlexec 9c5030b0 Y--P--- 2264 cond wait(netnorm) 7923540 sqlexec 94b01918 Y--P--- 2264 cond wait(netnorm) 7923482 sqlexec a404dcf0 Y--P--- 2264 cond wait(netnorm) 7923481 sqlexec 94ae1f50 Y--P--- 2264 cond wait(netnorm) 7923449 sqlexec 9c4e5560 Y--P--- 2264 cond wait(netnorm) 7923448 sqlexec 99110260 Y--P--- 2264 cond wait(netnorm) 7923414 sqlexec 9913ace0 Y--P--- 2264 cond wait(netnorm) 7923413 sqlexec 94b0c3b8 Y--P--- 2264 cond wait(netnorm) 7923404 sqlexec 965226e8 Y--P--- 2264 cond wait(netnorm) 7923403 sqlexec 9913e3b8 Y--P--- 2264 cond wait(netnorm) 7923294 sqlexec a4048188 Y--P--- 2264 cond wait(netnorm) 7923293 sqlexec 9652c558 Y--P--- 2264 cond wait(netnorm) 7923230 sqlexec 94b086c8 Y--P--- 2264 cond wait(netnorm) 7923229 sqlexec 9029df30 Y--P--- 2264 cond wait(netnorm) 7923164 sqlexec a404a000 Y--P--- 2264 cond wait(netnorm) 7923163 sqlexec 9911ad00 Y--P--- 2264 cond wait(netnorm) 7923080 sqlexec 96540238 Y--P--- 2264 cond wait(netnorm) 7923079 sqlexec 9653fc20 Y--P--- 2264 cond wait(netnorm) 7922437 sqlexec 9912a0c0 Y--P--- 2264 cond wait(netnorm) 7922436 sqlexec 9651e9f8 Y--P--- 2264 cond wait(netnorm) 7922366 sqlexec 99115dc8 Y--P--- 2264 cond wait(netnorm) 7922363 sqlexec 99125db8 Y--P--- 2264 cond wait(netnorm) 7922054 sqlexec 9652d7a0 Y--P--- 2264 cond wait(netnorm) 7922052 sqlexec a4052c28 Y--P--- 2264 cond wait(netnorm) 7921981 sqlexec a404d0c0 Y--P--- 2264 cond wait(netnorm) 7921980 sqlexec 99112d08 Y--P--- 2264 cond wait(netnorm) 7921650 sqlexec a404f550 Y--P--- 2264 cond wait(netnorm) 7921649 sqlexec 965432f8 Y--P--- 2264 cond wait(netnorm) 7921149 sqlexec 99138850 Y--P--- 2264 cond wait(netnorm) 7921148 sqlexec 94b00ce8 Y--P--- 2264 cond wait(netnorm) 7920862 sqlexec 99121498 Y--P--- 2264 cond wait(netnorm) 7920861 sqlexec 9653d178 Y--P--- 2264 cond wait(netnorm) 7920783 sqlexec a4051ff8 Y--P--- 2264 cond wait(netnorm) 7920779 sqlexec 9c4e0c40 Y--P--- 2264 cond wait(netnorm) 7920685 sqlexec 99128860 Y--P--- 2264 cond wait(netnorm) 7920684 sqlexec 94b02b60 Y--P--- 2264 cond wait(netnorm) 7920649 sqlexec a405ca98 Y--P--- 2264 cond wait(netnorm) 7920648 sqlexec 9c4f6798 Y--P--- 2264 cond wait(netnorm) 7920555 sqlexec 94ae37b0 Y--P--- 2264 cond wait(netnorm) 7920554 sqlexec 96541a98 Y--P--- 2264 cond wait(netnorm) 7920357 sqlexec 9911a6e8 Y--P--- 2264 cond wait(netnorm) 7920356 sqlexec 94ae9930 Y--P--- 2264 cond wait(netnorm) 7920350 sqlexec 94af1928 Y--P--- 2264 cond wait(netnorm) 7920349 sqlexec 94af1f40 Y--P--- 2264 cond wait(netnorm) 7920082 sqlexec 9c4f4308 Y--P--- 2264 cond wait(netnorm) 7920081 sqlexec 9c4fc300 Y--P--- 2264 cond wait(netnorm) 7920068 sqlexec 96517630 Y--P--- 2264 cond wait(netnorm) 7920067 sqlexec 9653c548 Y--P--- 2264 cond wait(netnorm) 7919947 sqlexec 965469d0 Y--P--- 2264 cond wait(netnorm) 7919945 sqlexec 965369e0 Y--P--- 2264 cond wait(netnorm) 7919774 sqlexec 9c4d9878 Y--P--- 2264 cond wait(netnorm) 7919773 sqlexec 9c4f6db0 Y--P--- 2264 cond wait(netnorm) 7919699 sqlexec 94b07a98 Y--P--- 2264 cond wait(netnorm) 7919694 sqlexec 9c4f3cf0 Y--P--- 2264 cond wait(netnorm) 7919232 sqlexec 9c4e3d00 Y--P--- 2264 cond wait(netnorm) 7919231 sqlexec a404a618 Y--P--- 2264 cond wait(netnorm) 7919222 sqlexec 94ae49f8 Y--P--- 2264 cond wait(netnorm) 7919221 sqlexec a404e920 Y--P--- 2264 cond wait(netnorm) 7918985 sqlexec a4053240 Y--P--- 2264 cond wait(netnorm) 7918984 sqlexec 9c4f6180 Y--P--- 2264 cond wait(netnorm) 7917690 sqlexec 9c500c20 Y--P--- 2264 cond wait(netnorm) 7917689 sqlexec 9c4f0618 Y--P--- 2264 cond wait(netnorm) 7917351 sqlexec 99134b60 Y--P--- 2264 cond wait(netnorm) 7917350 sqlexec 902a7da0 Y--P--- 2264 cond wait(netnorm) 7916911 sqlexec 9653f608 Y--P--- 2264 cond wait(netnorm) 7916910 sqlexec 9c4de198 Y--P--- 2264 cond wait(netnorm) 7916783 sqlexec 9652bf40 Y--P--- 2264 cond wait(netnorm) 7916779 sqlexec 9c4e79f0 Y--P--- 2264 cond wait(netnorm) 7916282 sqlexec 9c4feda8 Y--P--- 2264 cond wait(netnorm) 7916281 sqlexec 9913d170 Y--P--- 2264 cond wait(netnorm) 7916073 sqlexec 96537c28 Y--P--- 2264 cond wait(netnorm) 7916072 sqlexec 94ae9f48 Y--P--- 2264 cond wait(netnorm) 7916022 sqlexec 96535798 Y--P--- 2264 cond wait(netnorm) 7916021 sqlexec 9652cb70 Y--P--- 2264 cond wait(netnorm) 7915703 sqlexec 9c4f79e0 Y--P--- 2264 cond wait(netnorm) 7915700 sqlexec 965257a8 Y--P--- 2264 cond wait(netnorm) 7915615 sqlexec 902a4ce0 Y--P--- 2264 cond wait(netnorm) 7915614 sqlexec 9912ddb0 Y--P--- 2264 cond wait(netnorm) 7915584 sqlexec 9c4eb0c8 Y--P--- 2264 cond wait(netnorm) 7915518 sqlexec a4046928 Y--P--- 2264 cond wait(netnorm) 7915517 sqlexec 94af37a0 Y--P--- 2264 cond wait(netnorm) 7915447 sqlexec 94aedc38 Y--P--- 2264 cond wait(netnorm) 7915398 sqlexec 9913a0b0 Y--P--- 2264 cond wait(netnorm) 7915397 sqlexec 9c4e9e80 Y--P--- 2264 cond wait(netnorm) 7915354 sqlexec a4050db0 Y--P--- 2264 cond wait(netnorm) 7915353 sqlexec 9c4e1258 Y--P--- 2264 cond wait(netnorm) 7915345 sqlexec a405b238 Y--P--- 2264 cond wait(netnorm) 7915128 sqlexec 9913e9d0 Y--P--- 2264 cond wait(netnorm) 7915122 sqlexec 94afee70 Y--P--- 2264 cond wait(netnorm) 7914936 sqlexec 9652f618 Y--P--- 2264 cond wait(netnorm) 7914933 sqlexec 99138e68 Y--P--- 2264 cond wait(netnorm) 7914281 sqlexec 9029d300 Y--P--- 2264 cond wait(netnorm) 7914280 sqlexec 94afcff8 Y--P--- 2264 cond wait(netnorm) 7914230 sqlexec 9912e9e0 Y--P--- 2264 cond wait(netnorm) 7914224 sqlexec 96540850 Y--P--- 2264 cond wait(netnorm) 7914107 sqlexec 9912bf38 Y--P--- 2264 cond wait(netnorm) 7914106 sqlexec 9c506170 Y--P--- 2264 cond wait(netnorm) 7913922 sqlexec b68a5310 Y--P--- 2264 cond wait(netnorm) 7913921 sqlexec 94ae5010 Y--P--- 2264 cond wait(netnorm) 7913873 sqlexec 99137608 Y--P--- 2264 cond wait(netnorm) 7913872 sqlexec 9c4e67a8 Y--P--- 2264 cond wait(netnorm) 7913825 sqlexec 94ae86e8 Y--P--- 2264 cond wait(netnorm) 7913824 sqlexec 99118258 Y--P--- 2264 cond wait(netnorm) 7913418 sqlexec 9652b928 Y--P--- 2264 cond wait(netnorm) 7913417 sqlexec a4037b80 Y--P--- 2264 cond wait(netnorm) 7913232 sqlexec b6892878 Y--P--- 2264 cond wait(netnorm) 7913231 sqlexec 902a7170 Y--P--- 2264 cond wait(netnorm) 7912291 sqlexec 9029eb60 Y--P--- 2264 cond wait(netnorm) 7912238 sqlexec 9c4f8610 Y--P--- 2264 cond wait(netnorm) 7911541 sqlexec 9c4f7ff8 Y--P--- 2264 cond wait(netnorm) 7911540 sqlexec a40387b0 Y--P--- 2264 cond wait(netnorm) 7911539 sqlexec 9911f008 Y--P--- 2264 cond wait(netnorm) 7911538 sqlexec a40487a0 Y--P--- 2264 cond wait(netnorm) 7911529 sqlexec 9029ae70 Y--P--- 2264 cond wait(netnorm) 7911528 sqlexec 99125188 Y--P--- 2264 cond wait(netnorm) 7911527 sqlexec a4036320 Y--P--- 2264 cond wait(netnorm) 7911526 sqlexec 99127618 Y--P--- 2264 cond wait(netnorm) 7911525 sqlexec a4035d08 Y--P--- 2264 cond wait(netnorm) 7911524 sqlexec a40556d0 Y--P--- 2264 cond wait(netnorm) 7911523 sqlexec b68a3ab0 Y--P--- 2264 cond wait(netnorm) 7911522 sqlexec a4060170 Y--P--- 2264 cond wait(netnorm) 7868308 sqlexec 902a46c8 Y--P--- 2264 cond wait(netnorm) 7868307 sqlexec a40519e0 Y--P--- 2264 cond wait(netnorm) 7865800 sqlexec a4042c38 Y--P--- 2264 cond wait(netnorm) 7865798 sqlexec 94b06850 Y--P--- 2264 cond wait(netnorm) 7863510 sqlexec 99113320 Y--P--- 2264 cond wait(netnorm) 7863509 sqlexec b68a6558 Y--P--- 2264 cond wait(netnorm) 7861958 sqlexec 902a5910 Y--P--- 2264 cond wait(netnorm) 7861920 sqlexec 94af2558 Y--P--- 2264 cond wait(netnorm) 7861631 sqlexec 99130240 Y--P--- 2264 cond wait(netnorm) 7861627 sqlexec 94afa550 Y--P--- 2264 cond wait(netnorm) 7852809 sqlexec 96522d00 Y--P--- 2264 cond wait(netnorm) 2222037 sqlexec 9912b308 Y--P--- 2264 cond wait(netnorm) 409 sqlexec 9029c6d0 Y--P--- 2264 cond wait(netnorm) 86 dr_prsen 90292860 Y--P--D 1144 cond wait(drcb_bqf) Are sessions with "Y--P---" status hanged? Kindly let me know what are the indicators that a sessions is hanged? Is it in "suspended" mode? Thanks, Jack ******************************************************************************* To post a response via email (IIUG members only): 1. Address it to ids@iiug.org 2. Include the bracketed message number in the subject line: [31440] *******************************************************************************
Viewing all 9843 articles
Browse latest View live