<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>InterSystems Archives - Tools for InterSystems Caché and Intersystems IRIS</title>
	<atom:link href="https://www.cachemonitor.de/category/intersystems/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.cachemonitor.de/category/intersystems/</link>
	<description>A powerful sql database tool for InterSystems Caché, IRIS, MS SQL Server and more</description>
	<lastBuildDate>Sun, 22 Jun 2014 15:08:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.0.3</generator>

<image>
	<url>https://www.cachemonitor.de/wp-content/uploads/2014/06/cropped-logo64-32x32.png</url>
	<title>InterSystems Archives - Tools for InterSystems Caché and Intersystems IRIS</title>
	<link>https://www.cachemonitor.de/category/intersystems/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Caché Globals</title>
		<link>https://www.cachemonitor.de/cache-globals/</link>
		
		<dc:creator><![CDATA[andreas]]></dc:creator>
		<pubDate>Wed, 21 Aug 2013 09:26:50 +0000</pubDate>
				<category><![CDATA[InterSystems]]></category>
		<guid isPermaLink="false">http://www.cachemonitor.de/?p=325</guid>

					<description><![CDATA[<p>Caché’s multidimensional arrays are called globals. Data can be stored in a global with any number of subscripts. What&#8217;s more, subscripts are typeless and can hold any sort of data. One subscript might be an integer, such as 34, while another could be a meaningful name, like “LineItems” – even [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.cachemonitor.de/cache-globals/">Caché Globals</a> appeared first on <a rel="nofollow" href="https://www.cachemonitor.de">Tools for InterSystems Caché and Intersystems IRIS</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Caché’s multidimensional arrays are called <strong>globals</strong>. Data can be stored in a global with any number of subscripts. What&#8217;s more, subscripts are typeless and can hold any sort of data. One subscript might be an integer, such as 34, while another could be a meaningful name, like “LineItems” – even at the same subscript level.</p>
<p>For example, a stock inventory application that provides information about item, size, color, and pattern might have a structure like this:</p>
<pre>^Stock(item,size,color,pattern) = quantity</pre>
<p>Here’s some sample data:</p>
<pre>^Stock(“slip dress”,4,”blue”,”floral”) = 3</pre>
<p>The post <a rel="nofollow" href="https://www.cachemonitor.de/cache-globals/">Caché Globals</a> appeared first on <a rel="nofollow" href="https://www.cachemonitor.de">Tools for InterSystems Caché and Intersystems IRIS</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Bitmap Index</title>
		<link>https://www.cachemonitor.de/bitmap-index/</link>
		
		<dc:creator><![CDATA[andreas]]></dc:creator>
		<pubDate>Fri, 16 Aug 2013 08:03:30 +0000</pubDate>
				<category><![CDATA[InterSystems]]></category>
		<guid isPermaLink="false">http://www.cachemonitor.de/?p=287</guid>

					<description><![CDATA[<p>Bitmap indexes consist of a bitmap (bit vector) for each distinct column value. Each bitmap has one bit for every row in the table. The bit is on if the related row has the value represented by the bitmap. The advantage of bit map indexes is that complex queries can [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.cachemonitor.de/bitmap-index/">Bitmap Index</a> appeared first on <a rel="nofollow" href="https://www.cachemonitor.de">Tools for InterSystems Caché and Intersystems IRIS</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Bitmap indexes consist of a bitmap (bit vector) for each distinct column value. Each bitmap has one bit for every row in the table. The bit is on if the related row has the value represented by the bitmap.</p>
<p>The advantage of bit map indexes is that complex queries can be processed by performing Boolean operations (AND, OR) on the indexes – efficiently determining exactly which instances (rows) fit the query conditions, without searching through the entire database. For complex queries, bit-map indexes can boost response times by more than a factor of 100.</p>
<p>&nbsp;</p>
<p>From Wikipedia: <a title="Bitmap Index" href="http://en.wikipedia.org/wiki/Bitmap_index">Bitmap indexes</a> have traditionally been considered to work well for data such as <a title="Boolean data type" href="http://en.wikipedia.org/wiki/Boolean_data_type">Boolean values</a>, which have a modest number of distinct values – in this case, boolean True and False &#8211; but many occurrences of those values. This would happen if, for example, you had data on whether or not each resident in a city has internet access.</p>
<p>The post <a rel="nofollow" href="https://www.cachemonitor.de/bitmap-index/">Bitmap Index</a> appeared first on <a rel="nofollow" href="https://www.cachemonitor.de">Tools for InterSystems Caché and Intersystems IRIS</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>JDBC Driver versions for InterSystems Caché</title>
		<link>https://www.cachemonitor.de/intersystems-documentation-cache-jdbc-driver/</link>
		
		<dc:creator><![CDATA[andreas]]></dc:creator>
		<pubDate>Sun, 11 Aug 2013 18:13:56 +0000</pubDate>
				<category><![CDATA[InterSystems]]></category>
		<guid isPermaLink="false">http://wp.cachemonitor.de/?p=74</guid>

					<description><![CDATA[<p>The InterSystems Caché JDBC driver are an type 4 JDBC driver. Here are some information about the different JDBC driver versions that ships with the InterSystems Caché database. First some basic information about the Caché JDBC URL: Driver Class = com.intersys.jdbc.CacheDriver The URL syntax is jdbc:Cache://machine:port/namespace The URL specifies the machine address, port [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.cachemonitor.de/intersystems-documentation-cache-jdbc-driver/">JDBC Driver versions for InterSystems Caché</a> appeared first on <a rel="nofollow" href="https://www.cachemonitor.de">Tools for InterSystems Caché and Intersystems IRIS</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The InterSystems Caché JDBC driver are an <a href="http://java.sun.com/products/jdbc/overview.html">type 4 JDBC</a> driver. Here are some information about the different JDBC driver versions that ships with the InterSystems Caché database.</p>
<p>First some basic information about the Caché JDBC URL:</p>
<pre>Driver Class = com.intersys.jdbc.CacheDriver</pre>
<p>The URL syntax is</p>
<pre>jdbc:Cache://machine:port/namespace</pre>
<p>The URL specifies the machine address, port number, and namespace to be accessed.<br />
machine IP address or host name. For example, both localhost and 127.0.0.1 indicate the local machine.<br />
port TCP/IP port number for the connection. For example, 56772 is the standard Caché superserver port.<br />
namespace Namespace to connect to. For example, Samples is the namespace containing Caché sample programs.</p>
<p>For example</p>
<pre>jdbc:Cache://127.0.0.1:56772/Samples</pre>
<h2>Caché driver versions</h2>
<table border="1">
<tbody>
<tr>
<td>JDBC Driver Version</td>
<td>JDK Version</td>
<td>Size of CacheDB.jar file</td>
<td>Caché Version</td>
<td>Details</td>
</tr>
<tr>
<td>5.0.5504.0</td>
<td></td>
<td>679kb</td>
<td>5.0.12</td>
<td></td>
</tr>
<tr>
<td>5.0.5902.0</td>
<td></td>
<td>977kb</td>
<td>5.0.16</td>
<td>JDBC preparser: allow extrinsic functions<br />
This change corrects a regression in functionality that prevented the JDBC parser from recognizing intrinsic functions. It now allows the first character of an identifier to be &#8216;$&#8217;, and accepts &#8216;$&#8217; and &#8216;^&#8217; as possible values for subsequent characters</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>5.1.0.826</td>
<td></td>
<td>1.466kb</td>
<td>5.1</td>
<td>JDBC 3.0 Support</p>
<div>Cache 5.1 supports JDK 1.4 and JDBC 3.0. All required features and most optional features are supported.</div>
</td>
</tr>
<tr>
<td>5.2.0.290</td>
<td></td>
<td>1.913kb</td>
<td>5.2.0.290</td>
<td>Driver from 5.2 field test</td>
</tr>
<tr>
<td>5.2.0.329</td>
<td>1.5</td>
<td>1.872kb</td>
<td>5.2.0.329</td>
<td></td>
</tr>
<tr>
<td>5.2.0.329</td>
<td>1.4</td>
<td>1.871kb</td>
<td>5.2.0.329</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2007.1.0.254</td>
<td>1.5</td>
<td>1.940kb</td>
<td>2007.1.0.254</td>
<td>Driver from 2007.1 Field Test 1</td>
</tr>
<tr>
<td>2007.1.0.254</td>
<td>1.5</td>
<td>1.947kb</td>
<td>2007.1.0.267</td>
<td>Driver from 2007.1 Field Test 2If you try to connect with this driver to a Caché Database with a version smaller 5.0.13, you get a SQLExeption like this: Protocol mismatch; only protocols &gt;= 39 supportedYou have to use a older driver for Caché &lt; 5.0.13!</td>
</tr>
<tr>
<td>2007.1.0.306</td>
<td>1.4</td>
<td>1.915kb</td>
<td>2007.1.0.306</td>
<td>Driver from 2007.1 Release Candidate (RC1)</td>
</tr>
<tr>
<td>2007.1.0.306</td>
<td>1.5</td>
<td>1.952kb</td>
<td>2007.1.0.306</td>
<td>Driver from 2007.1 Release Candidate (RC1)</td>
</tr>
<tr>
<td>2007.1.0.348</td>
<td></td>
<td>1.915kb</td>
<td>2007.1.0.348</td>
<td>Driver from 2007.1 RC2</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2008.1.0.171</td>
<td>1.4</td>
<td>1.842kb</td>
<td></td>
<td>[Fri 06/01/2007 0:01:54.22]</td>
</tr>
<tr>
<td>2008.1.0.171</td>
<td>1.5</td>
<td>1.867kb</td>
<td></td>
<td>[Fri 06/01/2007 0:01:54.22]</td>
</tr>
<tr>
<td>2008.1.0.171</td>
<td>1.6</td>
<td>1.937kb</td>
<td></td>
<td>[Fri 06/01/2007 0:01:54.22]</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2012.2.0.638</td>
<td>1.6\1.7</td>
<td>2.018kb cachedb.jar298kb cachejdbc.jar</td>
<td>2012.2.0.638</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p>If you have more information or found a mistake in the JDBC table, please mail to: <a href="mailto: &lt;script language='JavaScript' type='text/javascript'&gt; &lt;!-- var prefix = 'mailto:'; var suffix = ''; var attribs = ''; var path = 'hr' + 'ef' + '='; var addy57 = 'andreas' + '@'; addy57 = addy57 + 'cachemonitor' + '.' + 'de'; document.write( '&lt;a ' + path + '\'' + prefix + addy57 + suffix + '\'' + attribs + '&gt;' ); document.write( addy57 ); document.write( '&lt;\/a&gt;' ); //--&gt; &lt;/script&gt;&lt;script language='JavaScript' type='text/javascript'&gt; &lt;!-- document.write( '&lt;span style=\'display: none;\'&gt;' ); //--&gt; &lt;/script&gt;This e-mail address is being protected from spambots. You need JavaScript enabled to view it &lt;script language='JavaScript' type='text/javascript'&gt; &lt;!-- document.write( '&lt;/' ); document.write( 'span&gt;' ); //--&gt; &lt;/script&gt;?subject=Cache%20JDBC%20Driver%20Version">andreas</a>.</p>
<p>The post <a rel="nofollow" href="https://www.cachemonitor.de/intersystems-documentation-cache-jdbc-driver/">JDBC Driver versions for InterSystems Caché</a> appeared first on <a rel="nofollow" href="https://www.cachemonitor.de">Tools for InterSystems Caché and Intersystems IRIS</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
