<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Actian Community Forums</title>
		<link>http://community.actian.com/forum/</link>
		<description><![CDATA[Actian Corporation is a leading provider of open source database management software and support services. [Toll Free] +1 (888) 446-4737]]></description>
		<language>en</language>
		<lastBuildDate>Fri, 18 May 2012 08:52:27 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://community.actian.com/forum/ingres4/misc/rss.jpg</url>
			<title>Actian Community Forums</title>
			<link>http://community.actian.com/forum/</link>
		</image>
		<item>
			<title>Sun Solaris 10 /dev/kmem is not readable by ingres</title>
			<link>http://community.actian.com/forum/database-general/14437-sun-solaris-10-dev-kmem-not-readable-ingres.html</link>
			<pubDate>Fri, 18 May 2012 07:27:49 GMT</pubDate>
			<description><![CDATA[My system administrator has "upgraded" our sun solaris OS from 8 to 10 but now when I start Ingres Database by "ingstart" command it shows the...]]></description>
			<content:encoded><![CDATA[<div>My system administrator has &quot;upgraded&quot; our sun solaris OS from 8 to 10 but now when I start Ingres Database by &quot;ingstart&quot; command it shows the warning:<br />
<br />
/dev/kmem is not readable by ingres.<br />
<br />
ingres must have read permission on /dev/kmem in order to check system resources. To change permission on /dev/kmem, you must be logged on as root.<br />
<br />
Any hint...?</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/database-general/">Database General</category>
			<dc:creator>aemme</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/database-general/14437-sun-solaris-10-dev-kmem-not-readable-ingres.html</guid>
		</item>
		<item>
			<title>Deadlock puzzle!</title>
			<link>http://community.actian.com/forum/database-general/14436-deadlock-puzzle.html</link>
			<pubDate>Fri, 18 May 2012 04:58:27 GMT</pubDate>
			<description><![CDATA[Hi, 
 
     I got a deadlock with following:  
 
    JIONG-PC          ::[II\INGRES\2354   , 9044      ,  1b8c0100, uleformat.c:957       ]: Wed May...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
     I got a deadlock with following: <br />
<br />
    JIONG-PC          ::[II\INGRES\2354   , 9044      ,  1b8c0100, uleformat.c:957       ]: Wed May 16 05:21:32 2012 E_DM9042_PAGE_DEADLOCK	Deadlock encountered locking page 2 for table rbt00005sha in database demodb with mode 6. Resource held by session [9044 1c4c4400] Mode 0.<br />
<br />
    Mode 0 is LK_N, and mode 6 is LK_X. It looks like request X lock blocked by No lock, Would it happen?<br />
<br />
<br />
Jiong</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/database-general/">Database General</category>
			<dc:creator>xie_jiong</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/database-general/14436-deadlock-puzzle.html</guid>
		</item>
		<item>
			<title>View from views: Bad query tree</title>
			<link>http://community.actian.com/forum/vectorwise-discussion/14435-view-views-bad-query-tree.html</link>
			<pubDate>Thu, 17 May 2012 11:48:38 GMT</pubDate>
			<description>Hi there! 
Take a look at this: 
 
 
Code: 
--------- 
drop table if exists x1; 
drop table if exists  x2; 
drop view if exists  v1; 
drop view if...</description>
			<content:encoded><![CDATA[<div>Hi there!<br />
Take a look at this:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">drop table if exists x1;<br />
drop table if exists&nbsp; x2;<br />
drop view if exists&nbsp; v1;<br />
drop view if exists&nbsp; v2;<br />
drop view if exists&nbsp; v12;<br />
<br />
create table x1(user_sk int);<br />
create table x2(user_sk int);<br />
create table x3(user_sk int);<br />
<br />
create view v1 as select distinct user_sk from (select user_sk from x1 union all select user_sk from x2) x;<br />
create view v2 as select distinct user_sk from (select user_sk from x2 union all select user_sk from x3) x;<br />
<br />
create view v12 as select distinct user_sk from (select user_sk from v1 union all select user_sk from v2) x;<br />
\g<br />
<br />
select * from v12;<br />
\g</code><hr />
</div>I get ugly message <br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">E_SC0206 An internal error prevents further processing of this query.<br />
&nbsp; &nbsp; Associated error messages which provide more detailed information about<br />
&nbsp; &nbsp; the problem can be found in the error log, II_LOG:errlog.log<br />
&nbsp; &nbsp; (Thu May 17 04:41:29 2012)<br />
<br />
E_SC0206 An internal error prevents further processing of this query.<br />
&nbsp; &nbsp; Associated error messages which provide more detailed information about<br />
&nbsp; &nbsp; the problem can be found in the error log, II_LOG:errlog.log<br />
&nbsp; &nbsp; (Thu May 17 04:41:29 2012)<br />
<br />
Exiting session because of communications failure.</code><hr />
</div>and the session dies. In the errlog.log file i have lines like:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">HD-SM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ::[18731&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  , 9968&nbsp; &nbsp; &nbsp; ,&nbsp; 0000000003e14200, psyview.c:3840&nbsp; &nbsp; &nbsp; &nbsp; ]: Thu May 17 04:41:29 2012 E_PS0C04_BAD_TREE&nbsp; &nbsp;  Bad query tree.<br />
HD-SM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ::[18731&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  , 9968&nbsp; &nbsp; &nbsp; ,&nbsp; 0000000003e14200, scsqncr.c:4304&nbsp; &nbsp; &nbsp; &nbsp; ]: Thu May 17 04:41:29 2012 E_PS0002_INTERNAL_ERROR&nbsp; &nbsp; &nbsp;  Internal error in PSF<br />
HD-SM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ::[18731&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  , 9968&nbsp; &nbsp; &nbsp; ,&nbsp; 0000000003e14200, scsqncr.c:4305&nbsp; &nbsp; &nbsp; &nbsp; ]: Thu May 17 04:41:29 2012 E_SC0215_PSF_ERROR&nbsp; &nbsp; Error returned by PSF.<br />
HD-SM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ::[18731&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  , 9968&nbsp; &nbsp; &nbsp; ,&nbsp; 0000000003e14200, scdnote.c:161&nbsp; &nbsp; &nbsp; &nbsp;  ]: Thu May 17 04:41:29 2012 E_SC0220_SESSION_ERROR_MAX&nbsp; &nbsp; Too many errors for this session.</code><hr />
</div>Is this a known issue?</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/vectorwise-discussion/">Vectorwise Discussion</category>
			<dc:creator>ania</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/vectorwise-discussion/14435-view-views-bad-query-tree.html</guid>
		</item>
		<item>
			<title>Long Byte Object</title>
			<link>http://community.actian.com/forum/comp-databases-ingres/14434-long-byte-object.html</link>
			<pubDate>Wed, 16 May 2012 13:45:41 GMT</pubDate>
			<description><![CDATA[In our system we've been using Blobs in lots of heavy stuff to replace NFS-filesystems when 
Running ABF (ESQL-routines since OpenIngres 1.2) and...]]></description>
			<content:encoded><![CDATA[<div>In our system we've been using Blobs in lots of heavy stuff to replace NFS-filesystems when<br />
Running ABF (ESQL-routines since OpenIngres 1.2) and OpenROAD-applikations (Direct).<br />
In ABF to transfer batch-output to On-line user and in OpenROAD to view this, or as well as<br />
Uploading documents through OpenROAD appservers. (Many huge PDF Manuals uploaded during Tests :-)).<br />
Later versions from 9.1 and forward has some improvements in performance.<br />
<br />
Here an extract of some of my maintainance ABF-programs (Danish comments and variables but should<br />
Be easy to understand anyway) that relocate's the blob-tables to take Usage of available locations, and<br />
at the same time makes sure the iietab-tables is on a specified Page_size, and also compressed with high fill-factor.<br />
<br />
Simply writing an SQL-file (file-write routine sps_skriv not included), which is later run by the<br />
Shell-script that calls this ABF-program.<br />
<br />
/*<br />
** PROGRAMNAVN: saet_blobs<br />
** TYPE.......: PROCEDURE<br />
** KILDETEKST.: saet_blobs.osq<br />
** AF.........: HGS 05.05.2010<br />
** FORMÅL.....: At reorganisere blob-tabeller<br />
** PARAMETRE..:<br />
** RETUR......:<br />
**<br />
** TABELLER...:             SELECT - UPDATE - INSERT - DELETE:<br />
**<br />
** KALDER.....:<br />
** INCLUDES...:<br />
*/<br />
#include &lt;def/define.h&gt;<br />
#include &lt;sps/konstant.h&gt;<br />
procedure saet_blobs() =<br />
declare<br />
pgmnavn       = varchar(24) not null,<br />
table_name    = varchar(32) not null,<br />
page_size     = integer not null,<br />
katalog       = varchar(256) not null,<br />
filnavn       = varchar(256) not null,<br />
location_name = varchar(24) not null,<br />
aktuel_list   = varchar(256) not null,<br />
location_list = varchar(256) not null,<br />
sql_tekst     = varchar(256) not null,<br />
chg_jn        = varchar(3),<br />
begin<br />
pgmnavn = 'saet_blobs'; chg_jn = NEJ;<br />
g_svar = konv_setup();<br />
if g_svar != OK then<br />
return :g_svar;<br />
endif;<br />
/* BLOBS: Spread on ALL locations Previously Used */<br />
select distinct location_name = location<br />
from iifile_info<br />
where table_name = 'b_location' and owner_name = :g_dba and<br />
squeeze(location) != '' and location != 'ii_database'<br />
order by location_name<br />
begin<br />
if location_list != '' then<br />
location_list = location_list + ',';<br />
endif;<br />
location_list = location_list + location_name;<br />
end;<br />
commit;<br />
message varchar(date('now')) + ' Blobs';<br />
katalog = sps_path(ident = 'optimize');<br />
katalog = katalog + 'chgsql/' + g_database + '/';<br />
filnavn = katalog + 'blobs.sql';<br />
g_dummy = sps_skriv(type = 'w', tekst = :filnavn);<br />
g_dummy = sps_skriv(type = 'g', tekst = 'set autocommit on;\p\g');<br />
/* BLOB Page.Size */<br />
select table_name = table_name,<br />
page_size  = table_pagesize<br />
from iitables i<br />
where i.table_type = 'T' and i.table_owner = :g_dba and<br />
i.expire_date = 0 and i.table_name like 'iietab\_%' escape '\'<br />
order by table_name<br />
begin<br />
aktuel_list = '';<br />
if page_size != 8192 then<br />
chg_jn = JA; page_size = 8192;<br />
sql_tekst = 'modify ' + :table_name + ' to reconstruct'<br />
+ '  with page_size = ' + varchar(page_size) + ';\p\g\time';<br />
g_dummy = sps_skriv(type = 'g', tekst = sql_tekst);<br />
endif;<br />
select distinct location_name = location<br />
from iifile_info<br />
where table_name = :table_name and owner_name = :g_dba and<br />
squeeze(location) != ''<br />
order by location_name<br />
begin<br />
if aktuel_list != '' then<br />
aktuel_list = aktuel_list + ',';<br />
endif;<br />
aktuel_list = aktuel_list + location_name;<br />
end;<br />
if location_list != '' and location_list != aktuel_list then<br />
chg_jn = JA;<br />
sql_tekst = 'modify ' + table_name + ' to reorganize'<br />
+ ' with location = (' + location_list + ');\p\g\time';<br />
g_dummy = sps_skriv(type = 'g', tekst = sql_tekst);<br />
endif;<br />
end;<br />
commit;<br />
select i.table_name<br />
from iitables i<br />
where i.table_owner = :g_dba and i.expire_date = 0 and<br />
i.table_name like 'iietab\_%' escape '\' and<br />
i.storage_structure = 'BTREE' and<br />
(   i.table_ifillpct != 100<br />
or i.table_dfillpct != 100<br />
or i.table_lfillpct != 100<br />
or i.is_compressed = 'N')<br />
order by table_name<br />
begin<br />
chg_jn = JA;<br />
sql_tekst = 'modify ' + :table_name + ' to reconstruct'<br />
+ ' with compression = (data),'<br />
+ ' nonleaffill = 100, leaffill = 100, fillfactor = 100;'<br />
+ '\p\g\time';<br />
g_dummy = sps_skriv(type = 'g', tekst = :sql_tekst);<br />
end;<br />
g_dummy = sps_skriv(type = 'c');<br />
if chg_jn = NEJ then<br />
/* Fjern filen igen :-) */<br />
g_dummy = sps_skriv(type  = 'd', tekst = :filnavn);<br />
endif;<br />
return OK;<br />
end<br />
<br />
/* No * More */<br />
<br />
Kind regards<br />
<br />
Henrik Georg Sørensen, Systemdeveloper and databaseadministrator<br />
-----Oprindelig meddelelse-----<br />
Fra: <a href="mailto:info-ingres-bounces@kettleriverconsulting.com">info-ingres-bounces@kettleriverconsulting.com</a> [mailto:info-ingres-bounces@kettleriverconsulting.com] På vegne af Ingres Forums<br />
Sendt: 17. maj 2012 10:00<br />
Til: <a href="mailto:info-ingres@kettleriverconsulting.com">info-ingres@kettleriverconsulting.com</a><br />
Emne: Re: [Info-Ingres] Long Byte Object<br />
<br />
<br />
=?iso-8859-1?Q?Laframboise=2C_Andr=E9?=;41723 Wrote:<font color="blue"><br />
&gt; LOBs in ingres are not slow at all.  My LOB tables are configured as<br />
&gt; 64K pages with millions of rows.<br />
&gt;<br />
&gt; But we do all data management via data handlers in ESQL.<br />
&gt;<br />
&gt; Andre<br />
&gt;<br />
&gt;</font><br />
<br />
Hi Andre,<br />
<br />
Thanks for the reply.<br />
<br />
I think there must be something else that I need to configure then as the saves are taking way too long. I expected the 'per_value' column length to increase when I increased the page size, thereby reducing the number of rows required for each blob.<br />
<br />
What other parameters I can tweak?<br />
<br />
Dave<br />
<br />
<br />
--<br />
<a href="mailto:waldred@aviagen.com">waldred@aviagen.com</a><br />
------------------------------------------------------------------------<br />
<a href="mailto:waldred@aviagen.com">waldred@aviagen.com</a>'s Profile: <a href="http://community.actian.com/forum/members/waldred-aviagen-com.html" target="_blank">http://community.actian.com/forum/me...hp?userid=2141</a><br />
View this thread: <a href="!14434!http://community.actian.com/forum/comp-databases-ingres/14434-long-byte-object.html" target="_blank">http://community.actian.com/forum/sh...ad.php?t=14434</a><br />
<br />
_______________________________________________<br />
Info-Ingres mailing list<br />
<a href="mailto:Info-Ingres@kettleriverconsulting.com">Info-Ingres@kettleriverconsulting.com</a><br />
<a href="http://ext-cando.kettleriverconsulting.com/mailman/listinfo/info-ingres" target="_blank">http://ext-cando.kettleriverconsulti...fo/info-ingres</a><br />
<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/comp-databases-ingres/">Comp.Databases.Ingres</category>
			<dc:creator>waldred@aviagen.com</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/comp-databases-ingres/14434-long-byte-object.html</guid>
		</item>
		<item>
			<title>OpenRoad Reporter</title>
			<link>http://community.actian.com/forum/application-development-using-openroad/14433-openroad-reporter.html</link>
			<pubDate>Wed, 16 May 2012 12:40:57 GMT</pubDate>
			<description><![CDATA[Hi, 
 
Does anyone know how to create Openroad reports then call them from an application? 
 
I think that the 'call report' mechansim might be for...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Does anyone know how to create Openroad reports then call them from an application?<br />
<br />
I think that the 'call report' mechansim might be for Report Writer (please correct me)<br />
<br />
I had a look at the Chapter 15 and created a few examples against the demo DB but I couldn't work out how to then invoke these from an OpenROAD application<br />
<br />
Maybe I'm having a bad day.<br />
<br />
Any one got this working?<br />
<br />
Adrian</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/application-development-using-openroad/">Application Development using OpenROAD</category>
			<dc:creator>Adrian Williamson</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/application-development-using-openroad/14433-openroad-reporter.html</guid>
		</item>
		<item>
			<title>Speedkeys not working</title>
			<link>http://community.actian.com/forum/application-development-using-openroad/14432-speedkeys-not-working.html</link>
			<pubDate>Wed, 16 May 2012 09:05:01 GMT</pubDate>
			<description>Hi, 
I run OpenROAD 5.1 (w patch 14253) on Windows XP. 
In the workbench all the speedkeys work fine, but when I run an application (via Run/F5 in...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
I run OpenROAD 5.1 (w patch 14253) on Windows XP.<br />
In the workbench all the speedkeys work fine, but when I run an application (via Run/F5 in the Workbench or using w4glrun), the speedkeys are not working.<br />
We use the default.kbd and have not changed it or set any value for II_KEYBOARD or II_KEYBOARD_FILE.<br />
Speedkeys work fine in our production environment, where OpenROAD 5.1 has not been patched (yet). [The w4glrun.rel contains &quot;OR R 5.2.0 (int.w32/00) ;BUILDNO=23033; PATCHNO=0215&quot;, but the trace window says &quot;OpenROAD OR R 5.1.0 (int.w32/00) BLD: 5.1.0/5039 p14019&quot; at startup.]<br />
<br />
Has a bug been introduced with the patch or is there some kind of config/setup missing?<br />
<br />
Rune RandÃ¸y<br />
AkerSolutions<br />
Kristiansand, Norway</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/application-development-using-openroad/">Application Development using OpenROAD</category>
			<dc:creator>randoy</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/application-development-using-openroad/14432-speedkeys-not-working.html</guid>
		</item>
		<item>
			<title>E_LC0001 GCA protocol service (GCA_REQUEST) failure</title>
			<link>http://community.actian.com/forum/database-general/14431-e_lc0001-gca-protocol-service-gca_request-failure.html</link>
			<pubDate>Wed, 16 May 2012 07:25:14 GMT</pubDate>
			<description>HI ALL, 
 
While Connecting to INGRES SERVER with command prompt on windows 7,then it will showing  the following error. 
can anybody please tellme...</description>
			<content:encoded><![CDATA[<div>HI ALL,<br />
<br />
While Connecting to INGRES SERVER with command prompt on windows 7,then it will showing  the following error.<br />
can anybody please tellme how can i resolve this error.<br />
<br />
E_LC0001 GCA protocol service (GCA_REQUEST) failure.<br />
    Internal service status E_GC0132 -- User provided a vnode as part of the<br />
    database name (vnode::dbname), but connection information for that vnode<br />
    is missing. Enter connection information for the vnode using NETUTIL..<br />
<br />
E_LQ0001 Failed to connect to DBMS session.<br />
<br />
Thanks&amp;Regards,<br />
CHANTI.</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/database-general/">Database General</category>
			<dc:creator>bollu123</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/database-general/14431-e_lc0001-gca-protocol-service-gca_request-failure.html</guid>
		</item>
		<item>
			<title><![CDATA[[Info-Ingres] Just a test message ...]]></title>
			<link>http://community.actian.com/forum/comp-databases-ingres/14430-info-ingres-just-test-message.html</link>
			<pubDate>Wed, 16 May 2012 03:06:27 GMT</pubDate>
			<description>Gang, 
 
Sorry about the clutter here.  A new email filter is causing issues. 
 
Cheers, 
 
Mike Leo 
 
 
Michael Leo</description>
			<content:encoded><![CDATA[<div>Gang,<br />
<br />
Sorry about the clutter here.  A new email filter is causing issues.<br />
<br />
Cheers,<br />
<br />
Mike Leo<br />
<br />
<br />
Michael Leo<br />
JSQL Product Manager<br />
Kettle River Consulting<br />
<br />
<a href="mailto:MLeo@KettleRiverConsulting.com">MLeo@KettleRiverConsulting.com</a><br />
<br />
<br />
<br />
<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/comp-databases-ingres/">Comp.Databases.Ingres</category>
			<dc:creator>Mike Leo</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/comp-databases-ingres/14430-info-ingres-just-test-message.html</guid>
		</item>
		<item>
			<title>IRunner?</title>
			<link>http://community.actian.com/forum/application-development-using-openroad/14429-irunner.html</link>
			<pubDate>Tue, 15 May 2012 18:58:42 GMT</pubDate>
			<description>Hi, 
 
My apologies if this info is available else where, but what state is the Irunner project at? 
 
I see that my OpenROAD 6 installation has an...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
My apologies if this info is available else where, but what state is the Irunner project at?<br />
<br />
I see that my OpenROAD 6 installation has an irunner.img file, but I can't find any of the indicated exectuables in the projects documenation.<br />
<br />
Is that something I can request?<br />
<br />
Thanks<br />
<br />
Adrian</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/application-development-using-openroad/">Application Development using OpenROAD</category>
			<dc:creator>Adrian Williamson</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/application-development-using-openroad/14429-irunner.html</guid>
		</item>
		<item>
			<title>ingres/files/english/sw4gv4.mnx</title>
			<link>http://community.actian.com/forum/application-development-using-openroad/14428-ingres-files-english-sw4gv4-mnx.html</link>
			<pubDate>Tue, 15 May 2012 16:34:46 GMT</pubDate>
			<description>Hi  
 
Anyone know of an environment variable that might allow me to specify a different location for files like the sw4gv4.mnx file? 
 
In case you...</description>
			<content:encoded><![CDATA[<div>Hi <br />
<br />
Anyone know of an environment variable that might allow me to specify a different location for files like the sw4gv4.mnx file?<br />
<br />
In case you are wondering I'm trying to separate an OR installation directory from an Ingres installation directory but have only one II_SYSTEM (pointing at the Ingres installation).<br />
<br />
Thanks<br />
<br />
Adrian</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/application-development-using-openroad/">Application Development using OpenROAD</category>
			<dc:creator>Adrian Williamson</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/application-development-using-openroad/14428-ingres-files-english-sw4gv4-mnx.html</guid>
		</item>
		<item>
			<title>Long Byte Object</title>
			<link>http://community.actian.com/forum/database-general/14427-long-byte-object.html</link>
			<pubDate>Tue, 15 May 2012 16:16:44 GMT</pubDate>
			<description><![CDATA[Hi All, 
 
I'm trying to use LBO's (for the first time) to store some documents and spreadsheets that are generated during our development lifecycle....]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
I'm trying to use LBO's (for the first time) to store some documents and spreadsheets that are generated during our development lifecycle. <br />
<br />
All seem to be going swimmingly until I tried to load an 8Mb word document into the table - it took a lot longer than I was expecting.<br />
<br />
A quick google suggested that the default 'blob_etab_page_size' of 2048 bytes would not be helping matters. I changed this to 16384 and restarted Ingres. I re-created the table that had an LBO and the new iietab table (iietab_110_111 if it helps) had a page size of 16384. However, it still took 25 seconds to perform the LBO.UpdateInDb method.<br />
<br />
The structure of the iietab_110_111 table is:<br />
<br />
Column Information:                                                   <br />
                                                                                       Key <br />
Column Name                 Type            Length Nulls Defaults Seq <br />
per_key                          TblKeyNoSM               no        no      1 <br />
per_segment0                 integer               4      no        no      2 <br />
per_segment1                 integer               4      no        no      3 <br />
per_next                         integer               4      no        no       <br />
per_value                        byte varyi      1978     no        no       <br />
                                                                      <br />
Secondary indexes:    none<br />
<br />
Is there something else I should be doing or are LBO's really that slow?<br />
<br />
Any help gratefully received!<br />
<br />
Dave Clark<br />
<br />
We're runniing:<br />
Ingres 2006 - 9.1.1 (su9.us5/103)<br />
OpenROAD 2006 - OR 5.0/0506 (int.w32/00) BuildNo 3201 PatchNo 13398</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/database-general/">Database General</category>
			<dc:creator>waldred@aviagen.com</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/database-general/14427-long-byte-object.html</guid>
		</item>
		<item>
			<title>Terminal Service with AppV - Ingres/Net as a service</title>
			<link>http://community.actian.com/forum/database-general/14426-terminal-service-appv-ingres-net-service.html</link>
			<pubDate>Mon, 14 May 2012 22:31:00 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I've got a Windows 2008 Terminal Services box which I'm [attempting to] using AppV on. 
 
I've sequenced the installation of a Ingres Client...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I've got a Windows 2008 Terminal Services box which I'm [attempting to] using AppV on.<br />
<br />
I've sequenced the installation of a Ingres Client (~9.02) installed as a service (logged in as local system).<br />
<br />
However, whenever the service stars it does not write the named pipe address into the symbol.tbl (or touch the errlog.log for that matter). It does start up (but servproc.exe seems to hand around).<br />
<br />
If I use suitable process monitor tools I can attach to the running name server and 'find' the named pipe address then manually set the II_GCNII_PORT address. It all works fine after that i.e.  netutil starts and manages the odd F5 test.<br />
<br />
I think that AppV is treating the symbol.tbl as a special case for some reason and either preventing the service processes (iigcn/iigcc) from writing to it, or it's keeping a copy in a bubble the rest of the installation can't see.<br />
<br />
Has anyone seen this problem before?<br />
<br />
Thanks<br />
<br />
Adrian<br />
PS Figuratively speaking I'm on about page 3 of the AppV manual....</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/database-general/">Database General</category>
			<dc:creator>Adrian Williamson</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/database-general/14426-terminal-service-appv-ingres-net-service.html</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Info-Ingres] Newby Java connection issue]]></title>
			<link>http://community.actian.com/forum/comp-databases-ingres/14424-re-info-ingres-newby-java-connection-issue.html</link>
			<pubDate>Mon, 14 May 2012 14:24:15 GMT</pubDate>
			<description>Ok a fresh install: yum install *jdk* and suddenly java and javac have the same version and the test program is now working! 
 
Hurrah! 
 
Marty 
...</description>
			<content:encoded><![CDATA[<div>Ok a fresh install: yum install *jdk* and suddenly java and javac have the same version and the test program is now working!<br />
<br />
Hurrah!<br />
<br />
Marty<br />
<br />
From: Martin Bowes [mailto:martin.bowes@ctsu.ox.ac.uk]<br />
Sent: 14 May 2012 13:56<br />
To: <a href="mailto:info-ingres@kettleriverconsulting.com">info-ingres@kettleriverconsulting.com</a><br />
Subject: [Info-Ingres] Newby Java connection issue<br />
<br />
Hi All,<br />
<br />
I'm starting some experiments writing java code to connect to an Ingres database.<br />
<br />
I'm using a Linux box to develop.<br />
<br />
I've set CLASSPATH to $II_SYSTEM/ingres/lib/iijdbc.jar:.<br />
<br />
The initial code compiles OK with javac, but when I attempt to execute the class I get:<br />
Exception in thread &quot;main&quot; java.lang.ClassFormatError: com.ingres.jdbc.IngresDriver (unrecognized class file version)<br />
<br />
Any ideas what I'm missing?<br />
<br />
Marty<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/comp-databases-ingres/">Comp.Databases.Ingres</category>
			<dc:creator>Martin Bowes</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/comp-databases-ingres/14424-re-info-ingres-newby-java-connection-issue.html</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Info-Ingres] Newby Java connection issue]]></title>
			<link>http://community.actian.com/forum/comp-databases-ingres/14422-re-info-ingres-newby-java-connection-issue.html</link>
			<pubDate>Mon, 14 May 2012 13:39:48 GMT</pubDate>
			<description><![CDATA[Martin Bowes wrote: 
 
> Hi Roy, 
> 
> java --version 
> java version "1.4.2" 
> gij (GNU libgcj) version 4.1.1 20070105 (Red Hat 4.1.1-52) 
> 
>...]]></description>
			<content:encoded><![CDATA[<div>Martin Bowes wrote:<br />
<font color="blue"><br />
&gt; Hi Roy,<br />
&gt;<br />
&gt; java --version<br />
&gt; java version &quot;1.4.2&quot;<br />
&gt; gij (GNU libgcj) version 4.1.1 20070105 (Red Hat 4.1.1-52)<br />
&gt;<br />
&gt; Copyright (C) 2006 Free Software Foundation, Inc.<br />
&gt; This is free software; see the source for copying conditions.  There is NO<br />
&gt; warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.<br />
&gt;<br />
&gt; javac -version<br />
&gt; Eclipse Java Compiler v_677_R32x, 3.2.1 release, Copyright IBM Corp 2000, 2006. All rights reserved.</font><br />
<br />
I have no idea if those are compatible.<br />
<br />
My java dev system shows:<br />
<br />
c:\temp&gt;javac -version<br />
javac 1.6.0_22<br />
<br />
c:\temp&gt;java -version<br />
java version &quot;1.6.0_22&quot;<br />
Java(TM) SE Runtime Environment (build 1.6.0_22-b04)<br />
Java HotSpot(TM) Client VM (build 17.1-b03, mixed mode, sharing)<br />
<br />
--<br />
Roy<br />
<br />
UK Actian User Association Conference 2012 will be on Tuesday June 19 2012.<br />
Register now at <a href="https://www.regonline.co.uk/ukiua2012" target="_blank">https://www.regonline.co.uk/ukiua2012</a><br />
The latest information is available from <a href="http://www.uk-iua.org.uk" target="_blank">www.uk-iua.org.uk</a>.<br />
<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/comp-databases-ingres/">Comp.Databases.Ingres</category>
			<dc:creator>Martin Bowes</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/comp-databases-ingres/14422-re-info-ingres-newby-java-connection-issue.html</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Info-Ingres] Newby Java connection issue]]></title>
			<link>http://community.actian.com/forum/comp-databases-ingres/14423-re-info-ingres-newby-java-connection-issue.html</link>
			<pubDate>Mon, 14 May 2012 13:29:56 GMT</pubDate>
			<description><![CDATA[What version of Java are you using? Is it possible you're picking up 
javac from a later version than java itself? 
 
  
 
Java -version 
 
Javac...]]></description>
			<content:encoded><![CDATA[<div>What version of Java are you using? Is it possible you're picking up<br />
javac from a later version than java itself?<br />
<br />
 <br />
<br />
Java -version<br />
<br />
Javac -version<br />
<br />
 <br />
<br />
From: <a href="mailto:info-ingres-bounces@kettleriverconsulting.com">info-ingres-bounces@kettleriverconsulting.com</a><br />
[mailto:info-ingres-bounces@kettleriverconsulting.com] On Behalf Of<br />
Martin Bowes<br />
Sent: 14 May 2012 13:56<br />
To: <a href="mailto:info-ingres@kettleriverconsulting.com">info-ingres@kettleriverconsulting.com</a><br />
Subject: [Info-Ingres] Newby Java connection issue<br />
<br />
 <br />
<br />
Hi All,<br />
<br />
 <br />
<br />
I'm starting some experiments writing java code to connect to an Ingres<br />
database.<br />
<br />
 <br />
<br />
I'm using a Linux box to develop.<br />
<br />
 <br />
<br />
I've set CLASSPATH to $II_SYSTEM/ingres/lib/iijdbc.jar:.<br />
<br />
 <br />
<br />
The initial code compiles OK with javac, but when I attempt to execute<br />
the class I get:<br />
<br />
Exception in thread &quot;main&quot; java.lang.ClassFormatError:<br />
com.ingres.jdbc.IngresDriver (unrecognized class file version)<br />
<br />
 <br />
<br />
Any ideas what I'm missing?<br />
<br />
 <br />
<br />
Marty<br />
<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://community.actian.com/forum/comp-databases-ingres/">Comp.Databases.Ingres</category>
			<dc:creator>Paul Mason</dc:creator>
			<guid isPermaLink="true">http://community.actian.com/forum/comp-databases-ingres/14423-re-info-ingres-newby-java-connection-issue.html</guid>
		</item>
	</channel>
</rss>

