<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">]>
<rss version="0.92" xml:base="http://www.dbsight.net">
<channel>
 <title>DBSight - Database Search Engine - Instant Scalable Full-text database search platform/engine</title>
 <link>http://www.dbsight.net</link>
 <description></description>
 <language>en</language>
<item>
 <title>search in database</title>
 <link>http://www.dbsight.net/index.php?q=node/541</link>
 <description>&lt;p&gt;Hi&lt;br /&gt;
I need to do infinite search on sql database like following:&lt;br /&gt;
keyword1 "AND" keyword2 "OR" keyword3 "like" keyword4 so on.....&lt;/p&gt;
&lt;p&gt;is this possible in DBSight.&lt;br /&gt;
can any one confirm this.&lt;/p&gt;
&lt;p&gt;thanks in advance.&lt;br /&gt;
sush&lt;/p&gt;
</description>
 <pubDate>Mon, 22 Apr 2013 04:31:25 +0000</pubDate>
</item>
<item>
 <title>iPhone Search</title>
 <link>http://www.dbsight.net/index.php?q=node/540</link>
 <description>&lt;p&gt;I'm trying to use the iPhone template included with dbsight 4.3.17 (using tomcat 7 and mysql). Everything works with it, except when I click on Details to display the selected columns, any of the hits only show the details from the first result.&lt;br /&gt;
I haven't made any changes to the basic scaffold.&lt;br /&gt;
Any suggestions on how to get the details links to display the correct details?&lt;br /&gt;
Thanks!&lt;/p&gt;
</description>
 <pubDate>Tue, 01 Jan 2013 22:58:01 +0000</pubDate>
</item>
<item>
 <title>Virtual index and using the java api</title>
 <link>http://www.dbsight.net/index.php?q=node/539</link>
 <description>&lt;p&gt;Guys,&lt;br /&gt;
I'm try to get the virtual index working.&lt;br /&gt;
Unfortunally I'm not able to query this index.&lt;br /&gt;
To resolve my problem I'm try now to query multiple indexes using the java api.&lt;br /&gt;
However the api only returns data of the first index and not an aggregate result of the two indexes provided.&lt;br /&gt;
Please provide information on how to perform such action.&lt;br /&gt;
I'm using the dbsight version 4.3.17 (b431) free edition.&lt;br /&gt;
My code;&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
s = new SearchConnection("http://localhost:8080/dbsight/")&lt;br /&gt;
		.setIndex("index1", "index2");&lt;br /&gt;
	}&lt;br /&gt;
String param = "opel corsa expression 1.0";&lt;br /&gt;
SearchQuery q = new SearchQuery(param).setDebug(true)&lt;br /&gt;
				.setFacetCountLimit(20);&lt;br /&gt;
try {&lt;br /&gt;
searchResult = s.search(q);&lt;br /&gt;
logger.info( "SearchResult:{}", searchResult.getTotal() );&lt;br /&gt;
} catch (IOException e) {&lt;br /&gt;
searchResult = new Result("none");&lt;br /&gt;
}&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
</description>
 <pubDate>Tue, 11 Dec 2012 15:02:14 +0000</pubDate>
</item>
<item>
 <title>Dbsight 4.3.17 on JBoss 7.1</title>
 <link>http://www.dbsight.net/index.php?q=node/538</link>
 <description>&lt;p&gt;I´m try to move from jboss 5 to jboss 7.&lt;br /&gt;
However if I try to start the jboss server it will hang when an index is configured.&lt;/p&gt;
&lt;p&gt;Can you tell me which versions are you supporting?&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Jeroen.&lt;/p&gt;
</description>
 <pubDate>Sun, 02 Dec 2012 15:03:58 +0000</pubDate>
</item>
<item>
 <title>Search not returning known matching results (let alone any results)</title>
 <link>http://www.dbsight.net/index.php?q=node/537</link>
 <description>&lt;p&gt;I have an index called Breaking News.  The SQL query I have that makes up the index returns over 8,000 results.  Searching on that query (Select * From (select article.articleId,article.articleName,article.articleHeadline,(cast(article.articleCopy as varchar(max)) + ' ' + articleKeyword) as articleCopy,article.articleCreateDate, staff.staffName from article Left Join staff On (article.articleAuthorId = staff.staffId) where article.articleTypeId = 2 AND article.articleStatus='Prod') AS tempTbl Where articleName Like '%citi%' OR articleHeadline Like '%citi%' OR articleCopy Like '%citi%'), I get almost 500 results back.  However, when I use dbsight to search 'citi', I get no results back.  I tried reindexing and searching again with no luck.  Here is my reindex log:&lt;/p&gt;
</description>
 <pubDate>Mon, 08 Oct 2012 13:58:26 +0000</pubDate>
</item>
<item>
 <title>Partial matches</title>
 <link>http://www.dbsight.net/index.php?q=node/536</link>
 <description>&lt;p&gt;Hi there, I want to be able to always search on a string (non-keyword) field in a partial way. For example, if the data contains "websites" I want a user to be able to search for "web", "site" or "website" and get a result. what is the best analyzer to use for a field to have this capability?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
</description>
 <pubDate>Tue, 25 Sep 2012 01:13:51 +0000</pubDate>
</item>
<item>
 <title>How do I restart DBSight ?</title>
 <link>http://www.dbsight.net/index.php?q=node/535</link>
 <description>&lt;p&gt;I know that there is a START.JAR and  STOP.JAR for dbsight. What I need is a way to restart the currently running engine.&lt;br /&gt;
The problem is that I have several jobs that are being scheduled every few minutes to update 8 different searches. If one of these jobs is missed and not run since a current job is running then non of the remaining jobs and any new jobs added will not be run.&lt;br /&gt;
I want to do a cronjob that will restart the currently running engine instead of having to stop it first then wait some time to make sure it is stopped and then start it again.&lt;/p&gt;
&lt;p&gt;I am using DBSight v3.3.2(b266)&lt;/p&gt;
&lt;p&gt;Thank you,&lt;/p&gt;
</description>
 <pubDate>Wed, 01 Aug 2012 18:57:58 +0000</pubDate>
</item>
<item>
 <title>DBSight stopped working and is giving a management.dll file error</title>
 <link>http://www.dbsight.net/index.php?q=node/534</link>
 <description>&lt;p&gt;It seems that the service stopped indexing pages on the website out of nowhere.  I signed into the DBSight through the site's web interface and see a lot of:&lt;/p&gt;
&lt;p&gt;java.lang.UnsatisfiedLinkError: C:\Program Files\Java\jre6\bin\management.dll: The specified procedure could not be found&lt;/p&gt;
&lt;p&gt;The top-right of the page shows "Jul 23, 2012 1:58:11 PM, 4.1.9(b202) , Standard Edition", so I guess my DBSight version is 4.1.9(b202)?  It's running on a Windows server (2002, I believe).  I really don't know what to do here, and cannot find this error through Google.&lt;/p&gt;
&lt;p&gt;Let me know what else information you would need and I will try to get it for you.&lt;/p&gt;
</description>
 <pubDate>Mon, 23 Jul 2012 18:03:30 +0000</pubDate>
</item>
<item>
 <title>Add single document to search engine</title>
 <link>http://www.dbsight.net/index.php?q=node/533</link>
 <description>&lt;p&gt;I have a program where the users do frequent updates and/or additions to sql records. The program uses keyword to exclusively find data. I have a schedule that every five minutes I initiate an incremental indexing for the updated sql data. The problem is how do I search on the data that was added between scheduled indexing?&lt;br /&gt;
Is there a way to add just one document to the text search so that a new document that is created in sql can be search for.&lt;/p&gt;
&lt;p&gt;Thank you,&lt;br /&gt;
Kevin&lt;/p&gt;
</description>
 <pubDate>Thu, 14 Jun 2012 16:56:17 +0000</pubDate>
</item>
<item>
 <title>Your License Expired error on one index only</title>
 <link>http://www.dbsight.net/index.php?q=node/532</link>
 <description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;for one index only, we're getting a "Your License Expired" error, for only some of the rows!&lt;/p&gt;
&lt;p&gt;There are 16 rows, but only 6 are returned, and we get 10 "Your license Expired" errors.&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
&lt;p&gt;Here is the indexing log:&lt;/p&gt;
&lt;p&gt;INFO  2012-04-13 12:44:09,853- select to_char(to_dec(trim(to_char('1004','0XXX')) || '0003')) as CLASSID, domain.name as NEW_S&lt;br /&gt;
TATUS,&lt;br /&gt;
USERS.* from USERS,domain  where USERS.status &lt; 6 and domain.domain_type='AOCMN_STATUS' and domain.VALUE = to_char(USERS.STATU&lt;br /&gt;
S)&lt;br /&gt;
order by USERS.pdsaudit_lastmodifiedtime desc&lt;br /&gt;
INFO  2012-04-13 12:44:09,854- Set Fetch Size to 1000&lt;/p&gt;
</description>
 <pubDate>Thu, 26 Apr 2012 06:24:25 +0000</pubDate>
</item>
<item>
 <title>How to cope with tables that may have different numbers of columns?</title>
 <link>http://www.dbsight.net/index.php?q=node/531</link>
 <description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have some oracle views that i want to index.&lt;br /&gt;
The views can have different numbers of columns for each customer - basically custom attributes that can be configured differently for each customer.&lt;/p&gt;
&lt;p&gt;I have my query as select * from .&lt;br /&gt;
However, all the columns need to be populated, and are filled in into the  -dataset-config.xml file.&lt;/p&gt;
&lt;p&gt;We want to be able to have a customer independent -dataset-config.xml file, as our deployment method consists of shipping the xml files, and then triggering remote index creation.&lt;/p&gt;
&lt;p&gt;Is there anyway to support this?&lt;/p&gt;
&lt;p&gt;e.g. leave out the columns from the xml file (i'll try this)&lt;/p&gt;
</description>
 <pubDate>Thu, 26 Apr 2012 05:07:45 +0000</pubDate>
</item>
<item>
 <title>Issues deploying dbsight on Linux</title>
 <link>http://www.dbsight.net/index.php?q=node/530</link>
 <description>&lt;p&gt;Hello All,&lt;br /&gt;
 Does anyone have dbsight running successfully on linux under tomcat?&lt;br /&gt;
It works fine on windows, on linux however all the pages spit out garbage characters. In itself, the app appears to deploy normally.&lt;br /&gt;
The tomcat uri encoding is set to utf-8 on both windows and linux.&lt;br /&gt;
thanks for any help!&lt;/p&gt;
</description>
 <pubDate>Mon, 23 Apr 2012 18:02:22 +0000</pubDate>
</item>
<item>
 <title>Highly Recommended! Virtual Index and DataGrid scaffold</title>
 <link>http://www.dbsight.net/index.php?q=node/529</link>
 <description>&lt;p&gt;
In latest DBSight release, there are 2 features that we liked so much that we urge your to try them out!
&lt;/p&gt;
&lt;p&gt;
1) Virtual index. It can aggregate several index search results in one page. And those indexes can be on a separated DBSight installation! So you can literally aggregate lots of search in one single page!
&lt;/p&gt;
&lt;p&gt;
2) Data Grid scaffold. It's a feature-loaded powerful scaffold. It can turn data in your common table or views into a full-text searchable data grid, with facet search, sorting, csv export, fullscreen support, infinite scroll, detail page, etc. It's something you can start from a SQL and turn to a professional-looking search page, presentable to your CEO!
&lt;/p&gt;
</description>
 <pubDate>Fri, 20 Apr 2012 05:08:04 +0000</pubDate>
</item>
<item>
 <title>problem with remotely managed index recreation</title>
 <link>http://www.dbsight.net/index.php?q=node/528</link>
 <description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I'm doing a wget on the url for recreating an index:&lt;/p&gt;
&lt;p&gt;          wget --output-file=$index.1 --output-document=$index.2 "http://$HOST:$PORT/dbsight/scheduleAJob.do?indexName=$index&amp;#038;cmd=stopIndexing%20unlockStoppedIndex%20maybeBuildSynonyms%20reCreateIndex%20reBuildDictionary%20buildDictionaryIfNeeded&amp;#038;text=Recreate%20Index"&lt;/p&gt;
&lt;p&gt;The wget works, and the index creation runs.  I can see that its created files, but i when i do a search, i get no data back.  This is only for the first time that its run - when there is no index data at all.  If i run it after i've manually done the index, its fine.  Even if i stop tomcat, remove the whole index directory, and restart, the wget still works and i can see the index.  There must be something with the first time its being run that i'm missing.&lt;/p&gt;
</description>
 <pubDate>Thu, 29 Mar 2012 23:54:41 +0000</pubDate>
</item>
<item>
 <title>Sortby default not working</title>
 <link>http://www.dbsight.net/index.php?q=node/527</link>
 <description>&lt;p&gt;I've just upgraded a very old installation of DBSight to the latest beta, 4.3.2.&lt;/p&gt;
&lt;p&gt;I have a number of websites that use dbsight results to show product data, sorted by price in ascending order, so the cheapest appear first.&lt;br /&gt;
But since the upgrade my sites are now showing the prices in descending order, with the most expensive first.&lt;/p&gt;
&lt;p&gt;The default sort order is set to Ascending, in Sortable Columns, but this setting seems to be having no effect.&lt;/p&gt;
&lt;p&gt;I can change the sort order by adding the parameter "&amp;#038;desc=N" (which I've tested and works correctly), but I have so many sites that I don't really want to change all my code if it's not necessary.&lt;/p&gt;
</description>
 <pubDate>Fri, 09 Mar 2012 08:48:34 +0000</pubDate>
</item>
</channel>
</rss>
