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

Re: delimiter

$
0
0
The documentation is only fixed in 12.10. The ESCAPE ON|OFF default was changed. In 12.1+ it's "ON". In versions before 12.10 it's OFF. This is (was) messy. And now that you mention it, I think I was asked before by a customer, but I'd say both of us forgot the issue :/ Thanks! On Thu, Sep 5, 2013 at 7:04 PM, Fernando Nunes <domusonline@gmail.com>wrote: > There is a bug in the documentation... Please check this: > > cheetah@pacman.onlinedomus.net:fnunes-> cat test.sql;echo > "########################";dbaccess stores test.sql > DROP TABLE test_unl; > DROP TABLE test_unl_ext; > CREATE TABLE test_unl > ( > col1 INTEGER, > col2 CHAR(10) > ); > > INSERT INTO test_unl VALUES (1,'|'); > INSERT INTO test_unl VALUES (2,'a|'); > INSERT INTO test_unl VALUES (3,'|a'); > > SELECT * FROM test_unl; > CREATE EXTERNAL TABLE test_unl_ext SAMEAS test_unl > USING ( DATAFILES ("DISK:/tmp/test_unl.unl"), > FORMAT 'DELIMITED', > ESCAPE > ); > INSERT INTO test_unl_ext SELECT * FROM test_unl; > TRUNCATE TABLE test_unl; > INSERT INTO test_unl SELECT * FROM test_unl_ext; > !echo "######################################"> !cat /tmp/test_unl.unl > !echo "######################################"> > SELECT * FROM test_unl; > ######################## > > Database selected. > > > Table dropped. > > > Table dropped. > > > Table created. > > > 1 row(s) inserted. > > > 1 row(s) inserted. > > > 1 row(s) inserted. > > > > col1 col2 > > 1 | > 2 a| > 3 |a > > 3 row(s) retrieved. > > > Table created. > > > 3 row(s) inserted. > > > Table truncated. > > > 3 row(s) inserted. > > ###################################### > 1|\|| > 2|a\|| > 3|\|a| > ###################################### > > > col1 col2 > > 1 | > 2 a| > 3 |a > > 3 row(s) retrieved. > > > Database closed. > > Regards > > > > On Thu, Sep 5, 2013 at 5:01 PM, Peter_Logan@spartanstores.com < > Peter_Logan@spartanstores.com> wrote: > >> IDS 11.70.fc3xc >> aix 6.1 >> >> I know a question very similar was asked about this the other day .. but I >> don't recall seeing the answer .. Here is my situation .. using external >> tables to unload a bunch of data via a pipe to the 'nzload' utility of >> Netezza. The issue is that I have the delimiter set to '|' .. yet I got a >> '|' in some of the data. Can't update it because it's from another system >> and valid. So, trying to get the data out of informix and over to Netezza >> .... Is there a way to somehow escape the '|' in the data ... Netezza can >> handle that . Our development team is attempting to use the external >> tables via pipes .. without haveing to do stuff in the middle .. obviously >> we could fix it at the os level .. >> >> Thanks .... >> >> Peter Logan >> Senior Database Administrator >> Phone: 616/878-8309 >> >> >> >> >> >> >> > > > -- > Fernando Nunes > Portugal > > http://informix-technology.blogspot.com > My email works... but I don't check it frequently... > -- Fernando Nunes Portugal http://informix-technology.blogspot.com My email works... but I don't check it frequently... --047d7b624cbee4843604e5a6d08f ******************************************************************************* 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: [31371] *******************************************************************************

Re: sysdistrib question

$
0
0
We have a lot of queue tables staging tables and snapshot tables that do change often but could get stats run at inopportune times like when the count is low and they will no longer utilize indexes in that case...I believe that's right anyway. So if I use Auto Stats and it sees the changes on those tables it will still run stats even though that's not desired. ******************************************************************************* 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: [31372] *******************************************************************************

Re: RE: logical logs not being read by ontape ....

$
0
0
Wouldn't it just be tossing the logs in the bit bucket then? You're not sending it directly to /dev/null but through the symbolic link to /dev/null. ******************************************************************************* 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: [31373] *******************************************************************************

Re: delimiter

$
0
0
Perfect ... thank you .... Peter Logan Senior Database Administrator Phone: 616/878-8309 From: "Fernando Nunes"<domusonline@gmail.com> To: ids@iiug.org, Date: 09/05/2013 02:06 PM Subject: Re: delimiter [31370] Sent by: ids-bounces@iiug.org There is a bug in the documentation... Please check this: cheetah@pacman.onlinedomus.net:fnunes-> cat test.sql;echo "########################";dbaccess stores test.sql DROP TABLE test_unl; DROP TABLE test_unl_ext; CREATE TABLE test_unl ( col1 INTEGER, col2 CHAR(10) ); INSERT INTO test_unl VALUES (1,'|'); INSERT INTO test_unl VALUES (2,'a|'); INSERT INTO test_unl VALUES (3,'|a'); SELECT * FROM test_unl; CREATE EXTERNAL TABLE test_unl_ext SAMEAS test_unl USING ( DATAFILES ("DISK:/tmp/test_unl.unl"), FORMAT 'DELIMITED', ESCAPE ); INSERT INTO test_unl_ext SELECT * FROM test_unl; TRUNCATE TABLE test_unl; INSERT INTO test_unl SELECT * FROM test_unl_ext; !echo "######################################" !cat /tmp/test_unl.unl !echo "######################################" SELECT * FROM test_unl; ######################## Database selected. Table dropped. Table dropped. Table created. 1 row(s) inserted. 1 row(s) inserted. 1 row(s) inserted. col1 col2 1 | 2 a| 3 |a 3 row(s) retrieved. Table created. 3 row(s) inserted. Table truncated. 3 row(s) inserted. ###################################### 1|\|| 2|a\|| 3|\|a| ###################################### col1 col2 1 | 2 a| 3 |a 3 row(s) retrieved. Database closed. Regards On Thu, Sep 5, 2013 at 5:01 PM, Peter_Logan@spartanstores.com < Peter_Logan@spartanstores.com> wrote: > IDS 11.70.fc3xc > aix 6.1 > > I know a question very similar was asked about this the other day .. but I > don't recall seeing the answer .. Here is my situation .. using external > tables to unload a bunch of data via a pipe to the 'nzload' utility of > Netezza. The issue is that I have the delimiter set to '|' .. yet I got a > '|' in some of the data. Can't update it because it's from another system > and valid. So, trying to get the data out of informix and over to Netezza > .... Is there a way to somehow escape the '|' in the data ... Netezza can > handle that . Our development team is attempting to use the external > tables via pipes .. without haveing to do stuff in the middle .. obviously > we could fix it at the os level .. > > Thanks .... > > Peter Logan > Senior Database Administrator > Phone: 616/878-8309 > > > > > > > -- Fernando Nunes Portugal http://informix-technology.blogspot.com My email works... but I don't check it frequently... --047d7b6d7aaed1b0bb04e5a6c09d ******************************************************************************* 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: [31374] *******************************************************************************

Re: logical logs not being read by ontape ....

$
0
0
Hi Nate, no, anything that is not "/dev/null" will be treated as not being /dev/null and requires a log backup (either by onbar or ontape). Informix has no knowledge, that your device node is a synonym to /dev/null. And /dev/null has to be set as LTAPEDEV when the instance is started. Modifying the value in onconfig with an editor when the instance is running will not result in a state that requires no log backup. If set to /dev/null in the moment of startup, that entry will be treated internally so that any full log will be immediately marked as backed up. Haven't tried to set the value using onmode -wf LTAPEDEV=/dev/null. This might have the effect on a running instance. Best regards, Marcus Haarmann ----- Ursprüngliche Mail ----- Von: "NATE HICKS"<nathaniel.hicks@trnswrks.com> An: ids@iiug.org Gesendet: Donnerstag, 5. September 2013 20:42:48 Betreff: Re: RE: logical logs not being read by ontape .... [31373] Wouldn't it just be tossing the logs in the bit bucket then? You're not sending it directly to /dev/null but through the symbolic link to /dev/null. ******************************************************************************* 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: [31375] *******************************************************************************

RE: ODBC Driver for a Win32 App on a Windows7 ....

$
0
0
On a related side-note, if you have the 64 bit version of the ODBC manager open (c:\windows\system32\odbcad32.exe) and you try to then open the 32 bit version (c:\windows\syswow64\odbcad32.exe), it won't actually open a 32 bit version, but rather give focus to the existing 64 bit instance. Also, I've had mixed results with the 'ODBC (32-bit)' control panel option - it doesn't always open the 32-bit version. My best advice is to open task manager and check to see that the odbcad32.exe process is listed as "odbcad32.exe *32", so as to verify it's running the 32 bit version. -Justin -----Original Message----- From: ids-bounces@iiug.org [mailto:ids-bounces@iiug.org] On Behalf Of Juan Francisco González Navarro Sent: Wednesday, September 04, 2013 12:42 PM To: ids@iiug.org Subject: Re: ODBC Driver for a Win32 App on a Windows7 .... [31365] Hello We have and old 32 bits application as you so to get work your software you have to install 32 bit informix connect or sdk and setup odbc by windows odbc manager 32 bits version by syswow. Regards El 04/09/2013 20:57, "HERNANDO DUQUE"<hduquec@hotmail.com> escribió: > Hi to all, > > I Have an old legacy win32 application than uses ODBC driver for conecting > to > informix server. Now I have several Windows7 64 bit workstations and I have > not been able to configure the connection for my old application. > > I tried with clientsdk.4.10.TC1IDE, clientsdk.3.50.TC9DE for 32 bits OS. My > questions are: > > For an old application tha uses ODBC should I install a 32 or a 64 bits > driver?. > If I install a 64 bits driver, it includes the 32 bit ODBC conection? > > Thank you for any help. > > Hernando. > > > > > > > --047d7bdcab580e347a04e5940123 ******************************************************************************* 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: [31376] *******************************************************************************

client process arguments

$
0
0
Hi everybody, Do you know how to get client process's arguments from any sysmaster table? sysmaster:syssessions.peprogram only tells the client process name, but not its arguements. Here you have an example: In this case client process name is /.../.../fglgo. (Does not show its arguments) Select * from syssessions: sid 107980 username jlrbcnpr uid 3314 pid 28298 hostname crtdesa tty /dev/pts/140 connected 1378449288 feprogram /home1/informix11.70/bin/fglgo whereas ps does(jlr020913): ps –ef: jlrbcnpr 28298 28295 0 08:34:49 pts/140 0:00 fglgo jlr020913 Thanks 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: [31377] *******************************************************************************

Re: RE: Update Statistics Problem

$
0
0
Hi, Yes, you will have to insert the rows manually into the sysdistrib table as user 'informix'. There should be an entry giving permissions to 'public' for every column except 'encdat'. Afterwards you will need to do 'update statistics for table sysdistrib'. If you're not sure what you need, initialise a new 11.50 instance somewhere else and look at what is in the 'syscolauth' table. Ben. ******************************************************************************* 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: [31378] *******************************************************************************

Re: ODBC Driver for a Win32 App on a Windows7 64 B

$
0
0
Thank you for posting. You gave me the clue to find a solution. By the way, I got this link that it might be interesting: http://blogs.msdn.com/b/farukcelik/archive/2008/10/17/why-my-32-bit-applications-cannot-see-the-odbc-dsns-that-i-created-on-my-64-bit-machine.aspx ******************************************************************************* 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: [31379] *******************************************************************************

Re: delimiter

$
0
0
In v12.10 you would just add the "ESCAPE ON" table option to the USING() clause in the external table definition. In 11.70 and earlier, "ESCAPE" takes an argument of a character to use as the escape character, so try "ESCAPE '\'" Art Art S. Kagel 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 5, 2013 at 12:01 PM, Peter_Logan@spartanstores.com < Peter_Logan@spartanstores.com> wrote: > IDS 11.70.fc3xc > aix 6.1 > > I know a question very similar was asked about this the other day .. but I > don't recall seeing the answer .. Here is my situation .. using external > tables to unload a bunch of data via a pipe to the 'nzload' utility of > Netezza. The issue is that I have the delimiter set to '|' .. yet I got a > '|' in some of the data. Can't update it because it's from another system > and valid. So, trying to get the data out of informix and over to Netezza > .... Is there a way to somehow escape the '|' in the data ... Netezza can > handle that . Our development team is attempting to use the external > tables via pipes .. without haveing to do stuff in the middle .. obviously > we could fix it at the os level .. > > Thanks .... > > Peter Logan > Senior Database Administrator > Phone: 616/878-8309 > > > > > > > --001a113366bcc5af3104e5d50fb8 ******************************************************************************* 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: [31380] *******************************************************************************

Re: sysdistrib question

$
0
0
Yes it will. Art Art S. Kagel 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 5, 2013 at 2:22 PM, NATE HICKS <nathaniel.hicks@trnswrks.com>wrote: > We have a lot of queue tables staging tables and snapshot tables that do > change often but could get stats run at inopportune times like when the > count > is low and they will no longer utilize indexes in that case...I believe > that's > right anyway. So if I use Auto Stats and it sees the changes on those > tables > it will still run stats even though that's not desired. > > > > > > > --089e0160bab03a7df604e5d51ed7 ******************************************************************************* 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: [31381] *******************************************************************************

Re: client process arguments

$
0
0
You'll have to go to the OS to get that command line arguments, Informix never sees them. Art Art S. Kagel 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 6, 2013 at 2:49 AM, JUAN ROCA <jluis.roca@hotmail.com> wrote: > Hi everybody, > > Do you know how to get client process's arguments from any sysmaster table? > > sysmaster:syssessions.peprogram only tells the client process name, but not > its arguements. > > Here you have an example: > > In this case client process name is /.../.../fglgo. > (Does not show its arguments) > > Select * from syssessions: > sid 107980 > username jlrbcnpr > uid 3314 > pid 28298 > hostname crtdesa > tty /dev/pts/140 > connected 1378449288 > feprogram /home1/informix11.70/bin/fglgo > > whereas ps does(jlr020913): > > ps –ef: > jlrbcnpr 28298 28295 0 08:34:49 pts/140 0:00 fglgo jlr020913 > > Thanks in advance, > > > > > > > --001a11c2672a6db52c04e5d52820 ******************************************************************************* 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: [31382] *******************************************************************************

table being reported as not present by application

$
0
0
achine Configuration.... OS Name Linux OS Release 2.6.32-358.6.2.el6.x86_64 OS Node Name wldbp654 OS Version #1 SMP Tue May 14 15:48:21 EDT 2013 OS Machine x86_64 IBM Informix Dynamic Server Version 11.50.FC9 S The probem Since Migrating from Unix to Linux we are getting lots of errors Onestrange one is table being reported as misssing when it is in fact present. Does locking cause the type of message . We are using row locking number of row in table 7436 the mesage from apache web server log. Does any one have any ideas what causes the error message. [Mon Sep 9 07:24:38 2013] -e: A Critical error occured Unknown Error DBD::Informix::db prepare failed: SQL: -206: The specified table (ec_user_request) is not in the database. [Mon Sep 9 07:24:38 2013] -e: ISAM: -111: ISAM error: no record found. at /var/ecert/eclive/application/lib/APEcert/Control/HTTP/Switch.pm line 209 [Mon Sep 9 07:24:38 2013] -e: APEcert::Control::HTTP::Switch::__ANON__('DBD::Informix::db prepare failed: SQL: -206: The specified ta...', 'DBI::db=HASH(0x7fee508b4600)', undef) called at /var/ecert/eclive/ap plication/taf/drivers/informix/TAF/Database.pm line 260[Mon Sep 9 07:24:38 2013] -e: TAF::Database::prepare(undef, '-query', 'SELECT login, request_count, start_timestamp FROM ec_user_req...') called at /var/ecert/eclive/application/taf/drivers/informix/TAF/DataS ource.pm line 805 [Mon Sep 9 07:24:38 2013] -e: TAF::DataSource::_execute_single(undef, '-query', 'SELECT login, request_count, start_timestamp FROM ec_user_req...', '-lock', 'EXCLUSIVE', '-columns', 'ARRAY(0x7fee509a8b48)') called at /var/ecert/eclive/application/taf/drivers/informix/TAF/DataSource.pm line 247 [Mon Sep 9 07:24:38 2013] -e: TAF::DataSource::load(undef, '-lock', 'EXCLUSIVE', '-keys', 'HASH(0x7fee451aa240)') called at /var/ecert/eclive/application/lib/APEcert/Model/UserRequest.pm line 43 [Mon Sep 9 07:24:38 2013] -e: APEcert::Model::UserRequest::get_user_request(undef, '-login', 'hallc') called at /var/ecert/eclive/application/lib/APEcert/Control/HTTP/Switch.pm line 162 [Mon Sep 9 07:24:38 2013] -e: APEcert::Control::HTTP::Switch::switch(undef, '-input', 'TAF::ApacheInputStream=HASH(0x7fee509a8f68)', '-output', 'TAF::ApacheOutputStream=HASH(0x7fee5099c758)') called at /var/ecert/eclive/application/lib/TAF/Switch.pm line 52 [Mon Sep 9 07:24:38 2013] -e: eval {...} called at /var/ecert/eclive/application/lib/TAF/Switch.pm line 51 ******************************************************************************* 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: [31383] *******************************************************************************

Re: table being reported as not present by app....

$
0
0
Is it an ANSI mode logged database? If so it could be that the table isn't owned by the user that is running Apache and table is not qualified with an owner name. Art Art S. Kagel 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 Sun, Sep 8, 2013 at 4:55 PM, KARL OLIVER <karl.oliver@maf.govt.nz> wrote: > achine Configuration.... > OS Name Linux > OS Release 2.6.32-358.6.2.el6.x86_64 > OS Node Name wldbp654 > OS Version #1 SMP Tue May 14 15:48:21 EDT 2013 > OS Machine x86_64 > > IBM Informix Dynamic Server Version 11.50.FC9 S > The probem > Since Migrating from Unix to Linux we are getting lots of errors > Onestrange one is table being reported as misssing when it is in fact > present. > Does locking cause the type of message . > We are using row locking number of row in table 7436 > > the mesage from apache web server log. Does any one have any ideas what > causes > the error message. > > [Mon Sep 9 07:24:38 2013] -e: A Critical error occured Unknown Error > DBD::Informix::db prepare failed: SQL: -206: The specified table > (ec_user_request) is not in the database. > [Mon Sep 9 07:24:38 2013] -e: ISAM: -111: ISAM error: no record found. at > /var/ecert/eclive/application/lib/APEcert/Control/HTTP/Switch.pm line 209 > [Mon Sep 9 07:24:38 2013] -e: > APEcert::Control::HTTP::Switch::__ANON__('DBD::Informix::db prepare failed: > SQL: -206: The specified ta...', 'DBI::db=HASH(0x7fee508b4600)', undef) > called > at /var/ecert/eclive/ap > plication/taf/drivers/informix/TAF/Database.pm line 260[Mon Sep 9 07:24:38 > 2013] -e: TAF::Database::prepare(undef, '-query', 'SELECT login, > request_count, start_timestamp FROM ec_user_req...') called at > /var/ecert/eclive/application/taf/drivers/informix/TAF/DataS > ource.pm line 805 > [Mon Sep 9 07:24:38 2013] -e: TAF::DataSource::_execute_single(undef, > '-query', 'SELECT login, request_count, start_timestamp FROM > ec_user_req...', > '-lock', 'EXCLUSIVE', '-columns', 'ARRAY(0x7fee509a8b48)') called at > /var/ecert/eclive/application/taf/drivers/informix/TAF/DataSource.pm line > 247 > [Mon Sep 9 07:24:38 2013] -e: TAF::DataSource::load(undef, '-lock', > 'EXCLUSIVE', '-keys', 'HASH(0x7fee451aa240)') called at > /var/ecert/eclive/application/lib/APEcert/Model/UserRequest.pm line 43 > [Mon Sep 9 07:24:38 2013] -e: > APEcert::Model::UserRequest::get_user_request(undef, '-login', 'hallc') > called > at /var/ecert/eclive/application/lib/APEcert/Control/HTTP/Switch.pm line > 162 > [Mon Sep 9 07:24:38 2013] -e: APEcert::Control::HTTP::Switch::switch(undef, > '-input', 'TAF::ApacheInputStream=HASH(0x7fee509a8f68)', '-output', > 'TAF::ApacheOutputStream=HASH(0x7fee5099c758)') called at > /var/ecert/eclive/application/lib/TAF/Switch.pm line 52 > [Mon Sep 9 07:24:38 2013] -e: eval {...} called at > /var/ecert/eclive/application/lib/TAF/Switch.pm line 51 > > > > > > > --089e01227ca40473ec04e5e6056a ******************************************************************************* 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: [31384] *******************************************************************************

Re: table being reported as not present by applica

$
0
0
No its not all the table contains is information about las request by user as such hallc 1 2013-09-09 08:10:35 schema 26 } create table "paqis".ec_user_request ( login varchar(20) not null , request_count integer not null , start_timestamp datetime year to second not null ); revoke all on "paqis".ec_user_request from "public" as "paqis"; create unique cluster index "paqis".ixun_ec_user_request_login on "paqis".ec_user_request (login) using btree ; alter table "paqis".ec_user_request add constraint primary key (login) constraint "paqis".pk_ec_user_request ; ******************************************************************************* 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: [31385] *******************************************************************************

Re: table being reported as not present by applica

$
0
0
Karl What user is running the query? The syntax you have given only allows paqis to access this table (being the owner). You would need to grant specific access to specific users (or public). The revoke is stopping this general access. Keith On 8 Sep 2013 22:37, "KARL OLIVER"<karl.oliver@maf.govt.nz> wrote: > No its not > > all the table contains is information about las request by user > as such > hallc 1 2013-09-09 08:10:35 > > schema > > 26 } > create table "paqis".ec_user_request > ( > > login varchar(20) not null , > > request_count integer not null , > > start_timestamp datetime year to second not null > ); > > revoke all on "paqis".ec_user_request from "public" as "paqis"; > > create unique cluster index "paqis".ixun_ec_user_request_login > > on "paqis".ec_user_request (login) using btree ; > alter table "paqis".ec_user_request add constraint primary key > > (login) constraint "paqis".pk_ec_user_request ; > > > > > > > --047d7b6776783c74bc04e5e676b9 ******************************************************************************* 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: [31386] *******************************************************************************

Re: table being reported as not present by applica

$
0
0
most of the time users can write to table sometime they cant due to lock / permissions as follows User Select Update Insert Delete Index Alter JBoss All None No No No No jboss All None No No No No public All All Yes Yes Yes No ******************************************************************************* 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: [31387] *******************************************************************************

Re: table being reported as not present by applica

$
0
0
Well the problem is being query is accessing the wrong database. Apparently being caused by thread safe issue in apache according to our developers. Not something I know anything about ******************************************************************************* 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: [31388] *******************************************************************************

Re: Unicode database

$
0
0
Yes, you are right. The Locale of the Database should be en_us.utf8 if it stores the unicode data. But when we want to use the informix tools like: dbexport/dbimport to change the non-unicode database, we should consider the target locale and the locale conversion table available on the system or not. Furthermore, we should pay more to the case that the characters we create by ourselves since some character set has area for the end users to add the new characters, i.e. Chinese characters. ******************************************************************************* 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: [31389] *******************************************************************************

locked mutexes!

$
0
0
Hi, I had some user sessions in locked mutexes onstat -g lmx Locked mutexes: 8777 c00000019a5c0f30 uselock0 2708810 0 8778 c00000019a619f30 uselock1 1683484 0 8779 c00000019a620f30 uselock2 2708811 0 I was able to trace those sessions using holder thread id and they were doing nothing just like hung sessions. onstat -u c0000001c7b78960 Y--P--- 1908207 xxx tR c0000001a20a9c50 0 1 0 0 c0000001c7b80e60 Y--P--- 1878654 xxx tq c00000019c3a7860 0 1 0 0 c0000001c7b95ae0 Y--P--- 1908957 xxx tR c0000001ec7edf90 0 1 0 0 I don't see any performance issues so far but wanted to know if it can impact anything before users starts complaining.. IDS:11.50 FC5 OS:HP-UX 11.23 ia64 Thanks!! ******************************************************************************* 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: [31390] *******************************************************************************
Viewing all 9843 articles
Browse latest View live