Gtkpacman-svn - search fails to function

When I click the search icon and enter any word into the input dialog, nothing happens. The terminal spews out this:
Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/gtkPacman/gui.py", line 506, in search
pacs = self.database.get_by_keywords(keywords)
File "/usr/lib/python2.5/site-packages/gtkPacman/pacman.py", line 436, in get_by_keywords
pacs.extend(self.get_by_desc(keys))
File "/usr/lib/python2.5/site-packages/gtkPacman/pacman.py", line 400, in get_by_desc
self.set_pac_properties(pac)
File "/usr/lib/python2.5/site-packages/gtkPacman/pacman.py", line 205, in set_pac_properties
self._set_summary(pac, path)
File "/usr/lib/python2.5/site-packages/gtkPacman/pacman.py", line 215, in _set_summary
size = self._get_size(desc_file)
File "/usr/lib/python2.5/site-packages/gtkPacman/pacman.py", line 241, in _get_size
end = desc.index("%", begin)
ValueError: substring not found
Any idea what's wrong?
- Dave

Hello
I made another patch. This one is more like enhancement than a patch, oh well see it for yourself.
Changed / fixed:
* No more is IgnorePkg or HoldPkg ignored, when clicked on a package that is listed as ignorePkg or holdPkg window  will pop up and ask if user want to add this package to install/remove queue, same thins happens when upgrading whole system
* Changed main window size
* Repository list is unfolded by default
* Removed "search" item from pop up menu, when you clicked on package, this was useless and didn't working
* Some small fixes
diff -uNr gtkpacman/data/gtkpacman.glade gtkpacman-2.0/data/gtkpacman.glade
--- gtkpacman/data/gtkpacman.glade 2007-11-27 13:22:39.182008729 +0100
+++ gtkpacman-2.0/data/gtkpacman.glade 2006-12-30 18:55:26.000000000 +0100
@@ -10,7 +10,7 @@
<property name="window_position">GTK_WIN_POS_NONE</property>
<property name="modal">False</property>
<property name="default_width">650</property>
- <property name="default_height">500</property>
+ <property name="default_height">433</property>
<property name="resizable">True</property>
<property name="destroy_with_parent">False</property>
<property name="decorated">True</property>
@@ -891,6 +891,34 @@
</child>
</widget>
</child>
+
+ <child>
+ <widget class="GtkSeparatorMenuItem" id="separator6">
+ <property name="visible">True</property>
+ </widget>
+ </child>
+
+ <child>
+ <widget class="GtkImageMenuItem" id="search">
+ <property name="visible">True</property>
+ <property name="label" translatable="yes">_Search</property>
+ <property name="use_underline">True</property>
+ <signal name="activate" handler="search" last_modification_time="Tue, 18 Apr 2006 11:01:36 GMT"/>
+ <accelerator key="S" modifiers="GDK_CONTROL_MASK" signal="activate"/>
+
+ <child internal-child="image">
+ <widget class="GtkImage" id="image71">
+ <property name="visible">True</property>
+ <property name="stock">gtk-find</property>
+ <property name="icon_size">1</property>
+ <property name="xalign">0.5</property>
+ <property name="yalign">0.5</property>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
+ </widget>
+ </child>
+ </widget>
+ </child>
</widget>
</glade-interface>
diff -uNr gtkpacman/gtkPacman/dialogs.py gtkpacman-2.0/gtkPacman/dialogs.py
--- gtkpacman/gtkPacman/dialogs.py 2007-11-30 15:54:30.883609016 +0100
+++ gtkpacman-2.0/gtkPacman/dialogs.py 2007-01-02 00:15:51.000000000 +0100
@@ -26,8 +26,8 @@
from gtk import STOCK_CLOSE, STOCK_OK, STOCK_CANCEL, STOCK_GO_FORWARD
from gtk import STOCK_APPLY, STOCK_REMOVE, STOCK_YES, STOCK_NO, STOCK_OPEN
from gtk import DIALOG_MODAL, DIALOG_DESTROY_WITH_PARENT
-from gtk import MESSAGE_WARNING, FILE_CHOOSER_ACTION_OPEN, MESSAGE_INFO
-from gtk import BUTTONS_CLOSE, MESSAGE_ERROR, BUTTONS_YES_NO
+from gtk import MESSAGE_WARNING, FILE_CHOOSER_ACTION_OPEN
+from gtk import BUTTONS_CLOSE, MESSAGE_ERROR
from gtk import RESPONSE_ACCEPT, RESPONSE_REJECT, RESPONSE_YES, RESPONSE_CLOSE
from gtk import image_new_from_stock, ICON_SIZE_BUTTON, ICON_SIZE_DIALOG
from gtk import main_iteration, expander_new_with_mnemonic
@@ -236,17 +236,14 @@
class do_dialog(Window):
def __init__(self, queues, icon):
- self.size = ()
Window.__init__(self, WINDOW_TOPLEVEL)
self.set_property("skip-taskbar-hint", True)
self.set_property("destroy-with-parent", True)
- #self.set_property("resizable", False)
self.set_modal(True)
self.connect("delete-event", self._stop_closing)
self.set_position(WIN_POS_CENTER)
+
self.set_icon(pixbuf_new_from_file(icon))
self._setup_trees(queues)
self._setup_layout()
@@ -329,11 +326,8 @@
self.terminal.connect("child-exited", lambda _: self.close_button.show())
self.expander = Expander(_("Terminal"))
- self.expander.connect("notify::expanded", self.expanderCb)
- #self.expander.add(self.terminal)
- #self.expander.show_all()
- self.expander.show()
+ self.expander.add(self.terminal)
+ self.expander.show_all()
self.vbox = VBox(False, 0)
self.vbox.show()
@@ -353,17 +347,7 @@
def _stop_closing(self, widget, event):
self.stop_emission("delete-event")
- return True
- def expanderCb(self, widget, event, data=None):
- if self.expander.get_expanded():
- self.size = self.get_size()
- self.expander.add(self.terminal)
- self.terminal.show()
- else:
- self.expander.remove(self.terminal)
- self.resize(self.size[0], self.size[1])
- self.show_all()
+ return True
class local_install_fchooser_dialog(FileChooserDialog):
@@ -446,19 +430,14 @@
self.set_property("skip-taskbar-hint", True)
self.set_property("modal", True)
self.set_property("destroy-with-parent", True)
- #self.set_property("resizable", False)
self.set_position(WIN_POS_CENTER)
self.set_default_size (300, 300)
- self.unrealize()
- #self.set_resizable(True)
self.set_icon(pixbuf_new_from_file(icon))
self._setup_tree(to_upgrade)
self._setup_layout()
def _setup_layout(self):
- self.size = ()
self.vbox = VBox(False, 0)
self.vbox.show()
@@ -466,12 +445,9 @@
self.terminal.connect("child-exited", lambda _: self.close_button.show())
self.expander = expander_new_with_mnemonic(_("_Terminal"))
- self.expander.connect("notify::expanded", self.expanderCb)
self.expander.set_expanded(False)
- #self.expander.add(self.terminal)
- #self.expander.show_all()
- self.expander.show()
+ self.expander.add(self.terminal)
+ self.expander.show_all()
self.close_button = Button(stock=STOCK_CLOSE)
self.close_button.connect("clicked", lambda _: self.destroy())
@@ -492,16 +468,6 @@
self.add(self.vbox)
return
- def expanderCb(self, widget, event, data=None):
- if self.expander.get_expanded():
- self.size = self.get_size()
- self.expander.add(self.terminal)
- self.terminal.show()
- else:
- self.expander.remove(self.terminal)
- self.resize(self.size[0], self.size[1])
- self.show_all()
def _setup_tree(self, pacs):
self.model = ListStore(str, str, str)
@@ -624,16 +590,3 @@
DIALOG_MODAL | DIALOG_DESTROY_WITH_PARENT,
MESSAGE_ERROR, BUTTONS_CLOSE, msg)
self.set_icon(pixbuf_new_from_file(icon))
-class infoMessage(MessageDialog):
- def __init__(self, type=None, buttons=None, msg=None):
- MessageDialog.__init__(self
- , None
- , DIALOG_MODAL | DIALOG_DESTROY_WITH_PARENT
- , type
- , buttons
- , message_format=msg)
- self.set_position(WIN_POS_CENTER)
\ No newline at end of file
Binary files gtkpacman/gtkPacman/dialogs.pyc and gtkpacman-2.0/gtkPacman/dialogs.pyc differ
diff -uNr gtkpacman/gtkPacman/gui.py gtkpacman-2.0/gtkPacman/gui.py
--- gtkpacman/gtkPacman/gui.py 2007-12-01 05:30:42.171459702 +0100
+++ gtkpacman-2.0/gtkPacman/gui.py 2007-01-02 00:16:03.000000000 +0100
@@ -21,8 +21,7 @@
from gtk import main, main_quit, TreeStore, TreeView, ListStore, Button
from gtk import CellRendererText, CellRendererPixbuf, ScrolledWindow
from gtk import STOCK_ADD, STOCK_GO_UP, STOCK_REMOVE, STOCK_CLOSE
-from gtk import RESPONSE_YES, RESPONSE_ACCEPT, MESSAGE_INFO, BUTTONS_CLOSE
-from gtk import MESSAGE_WARNING, BUTTONS_YES_NO
+from gtk import RESPONSE_YES, RESPONSE_ACCEPT
from gtk.gdk import pixbuf_new_from_file
from gtk.glade import XML
@@ -30,7 +29,7 @@
from dialogs import confirm_dialog, search_dialog, upgrade_dialog
from dialogs import upgrade_confirm_dialog, local_install_dialog
from dialogs import local_install_fchooser_dialog, local_confirm_dialog
-from dialogs import command_dialog, error_dialog, infoMessage
+from dialogs import command_dialog, error_dialog
from models import installed_list, all_list, whole_list, search_list, file_list
@@ -91,7 +90,7 @@
self.gld.get_widget("immediate").set_sensitive(False)
self.gld.get_widget("add_install").set_sensitive(False)
self.gld.get_widget("remove_install").set_sensitive(False)
- self.gld.get_widget("add_remove").set_sensitive(False)
+ self.gld.get_widget("add_remove").set_sensitive(False)
self.gld.get_widget("remove_remove").set_sensitive(False)
self.gld.get_widget("execute").set_sensitive(False)
self.gld.get_widget("up_sys").set_sensitive(False)
@@ -101,7 +100,6 @@
self.popup_gld.get_widget("popup_remove_install").set_sensitive(False)
self.popup_gld.get_widget("popup_add_remove").set_sensitive(False)
self.popup_gld.get_widget("popup_remove_remove").set_sensitive(False)
- pass
def _adjust_queues (self):
for name in self.queues["add"]:
@@ -185,7 +183,6 @@
repos_tree.insert_column_with_attributes(-1, "", CellRendererText(),
text=0)
repos_tree.set_model(repos_model)
- repos_tree.expand_row(0, False)
return
def _setup_files_tree(self):
@@ -232,7 +229,8 @@
except AttributeError:
pass
continue
- return
+ return
+
def _refresh_model(self, model, submodel=None):
if submodel:
liststore = self.models[model][submodel]
@@ -248,7 +246,7 @@
row[0] = "red"
row[3] = "-"
continue
- return
+ return
def quit(self, widget, data=None):
main_quit()
@@ -271,10 +269,9 @@
-1, "", CellRendererText(), text=5
if not self.inst_ver_col:
- #self.inst_ver_col = pacs_tree.insert_column_with_atrributes(
- # -1, "", CellRendererText(), text=4
- pass
+ self.inst_ver_col = pacs_tree.insert_column_with_atrributes(
+ -1, "", CellRendererText(), text=4
+ )
elif selected == _("foreigners"):
if self.repo_col:
@@ -326,27 +323,10 @@
def add_to_install_queue(self, widget, data=None):
tree = self.gld.get_widget("pacs_tree")
model, l_iter = tree.get_selection().get_selected()
- if not l_iter:
- return
+
name = model.get_value(l_iter, 2)
if name in self.queues["add"]:
return
- if name in self.database.options['IgnorePkg']:
- dlg = infoMessage(type=MESSAGE_WARNING
- , buttons= BUTTONS_YES_NO
- , msg='\"%s\" is in IgnorePkg list.\nAdd it to install queue anyway?' % name)
- dlg.set_title("Warning...")
- if dlg.run() == RESPONSE_YES:
- pass
- else:
- dlg.destroy()
- return
- dlg.destroy()
if name in self.queues["remove"]:
self.queues["remove"].remove(name)
@@ -362,9 +342,6 @@
def remove_from_install_queue(self, widget, data=None):
tree = self.gld.get_widget("pacs_tree")
model, l_iter = tree.get_selection().get_selected()
- if not l_iter:
- return
name = model.get_value(l_iter, 2)
if not (name in self.queues["add"]):
@@ -377,25 +354,8 @@
def add_to_remove_queue(self, widget, data=None):
tree = self.gld.get_widget("pacs_tree")
model, l_iter = tree.get_selection().get_selected()
- if not l_iter:
- return
name = model.get_value(l_iter, 2)
- if name in self.database.options['HoldPkg']:
- dlg = infoMessage(type=MESSAGE_WARNING
- , buttons= BUTTONS_YES_NO
- , msg='\"%s\" is designated as HoldPkg.\nAdd it to remove queue anyway?' % name)
- dlg.set_title("Warning...")
- if dlg.run() == RESPONSE_YES:
- pass
- else:
- dlg.destroy()
- return
- dlg.destroy()
if name in self.queues["remove"]:
return
@@ -414,12 +374,8 @@
def remove_from_remove_queue(self, widget, data=None):
tree = self.gld.get_widget("pacs_tree")
model, l_iter = tree.get_selection().get_selected()
- if not l_iter:
- return
name = model.get_value(l_iter, 2)
if not (name in self.queues["remove"]):
return
@@ -428,19 +384,8 @@
return
def execute(self, widget, data=None):
- check = True
pacs_queues = { "add": [], "remove": [] }
- if not (self.queues["add"] or self.queues["remove"]):
- dlg = infoMessage(type=MESSAGE_INFO
- , buttons= BUTTONS_CLOSE
- , msg='Nothing to do.\nAdd package to queue list first.')
- dlg.set_title("Info...")
- dlg.run()
- dlg.destroy()
- #self._refresh_trees_and_queues()
- return
for name in self.queues["add"]:
try:
pac = self.database.get_by_name(name)
@@ -454,11 +399,12 @@
self.database.set_pac_properties(pac)
pacs_queues["add"].append(pac)
- if pac.dependencies:
- deps = pac.dependencies.split(", ")
- for dep in deps:
- if dep.count(">="):
- dep = dep.split(">=")[0]
+
+ deps = pac.dependencies.split(", ")
+ for dep in deps:
+ if dep.count(">="):
+ dep = dep.split(">=")[0]
+
try:
dep_pac = self.database.get_by_name(dep)
except NameError:
@@ -466,22 +412,20 @@
_("%(dep)s is not in the database. %(dep)s is required by %(pkg)s.\nThis maybe either an error in %(pkg)s packaging or a gtkpacman's bug.\nIf you think it's the first, contact the %(pkg)s maintainer, else fill a bug report for gtkpacman, please.") %{'dep': dep, "pkg": name}, self.icon)
dlg.run()
dlg.destroy()
pacs_queues["add"].remove(pac)
self.queues["add"].remove(name)
break
if not dep_pac.installed:
pacs_queues["add"].append(dep_pac)
- continue
+ continue
for name in self.queues["remove"]:
pac = self.database.get_by_name(name)
if not pac.prop_setted:
- self.database.set_pac_properties(pac)
+ self.database.set_pac_properties(pac)
+
pacs_queues["remove"].append(pac)
- if pac.req_by: #********************************************
- retcode = False
+ if pac.req_by:
req_pacs = []
for req in pac.req_by.split(", "):
if not (req in self.queues["remove"]):
@@ -496,13 +440,14 @@
else:
self.queues["remove"].remove(name)
pacs_queues["remove"].remove(pac)
- check = False
dlg.destroy()
- continue #**********************************************
- if check:
- retcode = self._confirm(pacs_queues)
+ continue
+
+ if not (pacs_queues["add"] or pacs_queues["remove"]):
+ self._refresh_trees_and_queues()
+ return
+
+ retcode = self._confirm(pacs_queues)
if retcode:
stat_bar = self.gld.get_widget("statusbar")
stat_bar.pop(self.stat_id)
@@ -526,20 +471,18 @@
self._refresh_trees()
self.queues["add"] = []
self.queues["remove"] = []
- if pacs_queues:
- for pac in pacs_queues["add"]:
- pac.installed = True
- self.database.set_pac_properties(pac)
- continue
- for pac in pacs_queues["remove"]:
- pac.installed = False
- self.database.set_pac_properties(pac)
- continue
- else:
- del(pacs_queues)
- stat_bar = self.gld.get_widget("statusbar")
- stat_bar.pop(self.stat_id)
- stat_bar.push(self.stat_id, _("Done."))
+ for pac in pacs_queues["add"]:
+ pac.installed = True
+ self.database.set_pac_properties(pac)
+ continue
+ for pac in pacs_queues["remove"]:
+ pac.installed = False
+ self.database.set_pac_properties(pac)
+ continue
+ del(pacs_queues)
+ stat_bar = self.gld.get_widget("statusbar")
+ stat_bar.pop(self.stat_id)
+ stat_bar.push(self.stat_id, _("Done."))
return
def about(self, widget, data=None):
@@ -555,16 +498,12 @@
self.popup.popdown()
def search(self, widget, data=None):
- keywords=""
dlg = search_dialog(self.gld.get_widget("main_win"), self.icon)
if dlg.run() == RESPONSE_ACCEPT:
keywords = dlg.entry.get_text()
dlg.destroy()
- if keywords:
- pacs = self.database.get_by_keywords(keywords)
- else:
- return
+ pacs = self.database.get_by_keywords(keywords)
repos_model = self.gld.get_widget("repos_tree").get_model()
if self.search_iter:
@@ -654,43 +593,15 @@
def upgrade_system(self, widget, data=None):
to_upgrade = []
- blacklist ={}
- options = self.database.options
for repo in self.database.values():
for pac in repo:
if pac.isold:
- to_upgrade.append(pac)
+ to_upgrade.append(pac)
continue
continue
if to_upgrade:
- counter = 0
- for pack in to_upgrade:
- counter += 1
- if pack.name in options['IgnorePkg']:
- blacklist[pack.name] = counter -1
- if blacklist:
- dlg = infoMessage(type=MESSAGE_WARNING
- , buttons= BUTTONS_YES_NO
- , msg='Found package(\'s) that are in IgnorePkg list.\nClick Yes to include them in to upgrade list\nClick NO to dele them from upgrade list.')
- dlg.set_title("Warning...")
- print '***Packages that are in IgnorePkg list***\n ', blacklist.keys()
- if dlg.run() == RESPONSE_YES:
- pass
- else:
- index = blacklist.values()
- index.sort()
- while index:
- to_del = index.pop()
- del to_upgrade[to_del]
- dlg.destroy()
- if to_upgrade:
confirm = self._upgrade_confirm(to_upgrade)
if confirm:
Binary files gtkpacman/gtkPacman/gui.pyc and gtkpacman-2.0/gtkPacman/gui.pyc differ
diff -uNr gtkpacman/gtkPacman/pacman.py gtkpacman-2.0/gtkPacman/pacman.py
--- gtkpacman/gtkPacman/pacman.py 2007-11-20 15:34:00.154003528 +0100
+++ gtkpacman-2.0/gtkPacman/pacman.py 2007-01-02 00:16:31.000000000 +0100
@@ -76,7 +76,7 @@
def __init__(self):
"""Init database"""
#Get repos present on machine
- self.repos, self.options = self._get_repos()
+ self.repos = self._get_repos()
self.set_pacs()
self.repos.sort()
@@ -91,12 +91,11 @@
conf_file_lines = conf_file.splitlines()
repos = []
- options = {} #********************************************************
for line in conf_file_lines:
if line.startswith("#"):
continue
- elif line.startswith("["):
+ if line.startswith("["):
begin = line.index("[") + len("[")
end = line.index("]")
repo = line[begin:end]
@@ -104,15 +103,8 @@
continue
else:
repos.append(repo)
- #continue
- elif line.startswith("HoldPkg") or line.startswith("IgnorePkg"):
- option = line.rstrip()
- split = option.split()
- del split[1]
- options[split[0]] = split[1:]
continue
- return repos, options
+ return repos
def _get_installed(self):
installed = os.listdir("/var/lib/pacman/local")
@@ -201,24 +193,11 @@
def set_pac_properties(self, pac):
"""Set the properties for the given pac"""
- from os.path import exists
- if pac.installed: # Jump in if package is installed
- path_old = '/var/lib/pacman/local/%s-%s'%(pac.name,pac.version)
- if pac.isold and exists(path_old):
- version = pac.version # After Upgrading, package use this
- repo = 'local'
- elif pac.isold:
- version = pac.inst_ver # Is installed but is old, (newer package is available)
- repo = "local"
- elif not pac.inst_ver == '-':
- version = pac.inst_ver # Is Installed (no more no less)
- repo = "local"
- elif pac.installed:
- version = pac.version # After package is installed, It uses this
- repo = 'local'
+ if pac.installed:
+ version = pac.inst_ver
+ repo = "local"
else:
- version = pac.version # Package not installed
+ version = pac.version
repo = pac.repo
pack_dir = "-".join((pac.name, version))
@@ -259,7 +238,7 @@
except ValueError:
begin = desc.index("%SIZE%") + len("%SIZE%")
- end = desc.index("\n\n", begin)
+ end = desc.index("%", begin)
size_s = desc[begin:end].strip()
size_int = int(size_s)
measure = "byte(s)"
@@ -296,12 +275,8 @@
return installdate
def _get_reason(self, desc):
- reason_int = ''
- try:
- begin = desc.index("%REASON%") + len("%REASON%")
- reason_int = int(desc[begin:].strip())
- except ValueError:
- pass
+ begin = desc.index("%REASON%") + len("%REASON%")
+ reason_int = int(desc[begin:].strip())
if reason_int:
reason = _("Installed as a dependency for another package")
@@ -310,16 +285,11 @@
return reason
- def _get_description(self, desc):
+ def _get_description(self, desc):
"""Set description for the given pac"""
- description = ''
- try:
- begin = desc.index("%DESC%") + len("%DESC%")
- end = desc.index("\n\n", begin)
- description = unicode(desc[begin:end].strip(), errors="ignore")
- except ValueError:
- pass
+ begin = desc.index("%DESC%") + len("%DESC%")
+ end = desc.index("%", begin)
+ description = unicode(desc[begin:end].strip(), errors="ignore")
return description
def _get_dependencies(self, path):
@@ -330,8 +300,8 @@
try:
begin = deps.index("%DEPENDS%") + len("%DEPENDS%")
except ValueError:
- return None
- end = deps.find("\n\n", begin) #- len("\n")
+ return ""
+ end = deps.find("%", begin) - len("%")
dependencies = deps[begin:end].strip()
depends = dependencies.split("\n")
deps = ", ".join(depends)
@@ -340,12 +310,9 @@
def _get_req_by(self, path):
"""Set list of packages that needs given pac"""
depends = open("%s/depends" %path).read()
- if "%REQUIREDBY%" in depends:
- begin = depends.find("%REQUIREDBY%") + len("%REQUIREDBY%")
- end = depends.find("%", begin) - len("%")
- else:
- return
+
+ begin = depends.find("%REQUIREDBY%") + len("%REQUIREDBY%")
+ end = depends.find("%", begin) - len("%")
reqs = depends[begin:end].strip().split("\n")
req_by = ", ".join(reqs)
@@ -356,16 +323,11 @@
if not pac.installed:
return _("%s is not installed") %pac.name
- try:
- files = open("%s/files" %path).read()
- except ValueError:
- return
- if files:
- begin = files.find("%FILES%") + len("%FILES%")
- end = files.find("\n\n", begin) - len("%")
- filelist = files[begin:end].strip()
- pac.filelist = filelist
+ files = open("%s/files" %path).read()
+ begin = files.index("%FILES%") + len("%FILES%")
+ end = files.find("%", begin) - len("%")
+ filelist = files[begin:end].strip()
+ pac.filelist = filelist
return
def set_orphans(self):
@@ -436,7 +398,7 @@
for pac in self[repo]:
if not pac.prop_setted:
self.set_pac_properties(pac)
- if pac.description.count(desc):
+ if pac.description.count(desc):
pacs.append(pac)
continue
continue
Binary files gtkpacman/gtkPacman/pacman.pyc and gtkpacman-2.0/gtkPacman/pacman.pyc differ
Binary files gtkpacman/gtkpacmanc and gtkpacman-2.0/gtkpacmanc differ
If you patched gtkpacman with old patch I recomend to first reinstall gtkpacman and patch it with this patch.

Similar Messages

  • Multi-server search failed on some of the servers

    Hi All,
    i am getting below error in our portal/advance search.
    Error during search occurred - com.sapportals.wcm.WcmException: multi-server search failed on some of the servers;error=2972,index=easywcmen;error=2972,index=itec_dept_indexen;error=2972,index=itec_proj_indexen (Errorcode 2975).
    TrexIndexServer_dcwwtrexprdm1.30003.002.trc
    [86380] 2007-12-31 09:31:08.708 e Trex_SE      FuzzyOptimizer.cpp(03951) : rollbackOptimizeFullText 'itec_proj_indexen' failed rc=4527
    [86380] 2007-12-31 09:31:08.708 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_proj_indexen
    [86380] 2007-12-31 09:31:08.724 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 09:31:08.740 e TrexSlice    TRexApiSystem.cpp(01248) : IndexID: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 09:31:08.740 e TrexSlice    TrexSlice.cpp(00502) : ERROR: snapshot creation failed with ret=2008!
    [52804] 2007-12-31 09:32:06.100 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexen
    [52804] 2007-12-31 09:32:06.225 e TextMining   Trace.cpp(00074) : EX: 'Unable to open input file
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex\index.ini'
    [52804] 2007-12-31 09:32:06.225 e Trex_SE      FuzzyOptimizer.cpp(02490) : getTMHandle: error in opening TM '
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex' rc=9013
    [52804] 2007-12-31 09:32:06.225 e Trex_SE      FuzzyOptimizer.cpp(03945) : rollbackOptimizeTextMining 'itec_dept_indexen' failed rc=9013
    [52804] 2007-12-31 09:32:06.225 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_dept_indexen
    [52804] 2007-12-31 09:32:06.241 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexde
    [52804] 2007-12-31 09:32:06.366 e MiningAdmin  IndexManager.cpp(00866) : IndexManager::getAttributeInfos in IndexManager.cpp: Unable to read attribute infos from file '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\FDocs'! Rollback is only possible option for index '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\'.
    [52804] 2007-12-31 09:32:07.397 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexde finished rc=0
    [52804] 2007-12-31 09:32:07.397 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexes
    [52804] 2007-12-31 09:32:08.538 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexes finished rc=0
    [52804] 2007-12-31 09:32:08.538 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexfr
    [52804] 2007-12-31 09:32:09.663 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexfr finished rc=0
    [52804] 2007-12-31 09:32:09.663 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexsh
    [52804] 2007-12-31 09:32:10.788 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexsh finished rc=0
    [52804] 2007-12-31 09:32:10.803 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 09:33:15.336 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [71696] 2007-12-31 09:33:15.351 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [38716] 2007-12-31 09:33:15.367 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [38716] 2007-12-31 09:36:15.386 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [71696] 2007-12-31 09:36:15.402 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 09:36:15.417 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [86380] 2007-12-31 09:39:15.421 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [71696] 2007-12-31 09:39:15.437 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 09:39:15.452 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 09:40:38.626 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 09:40:38.657 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [23192] 2007-12-31 09:40:38.688 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 09:40:38.844 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 09:40:38.860 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 09:40:38.891 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [23192] 2007-12-31 09:40:44.985 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [120828] 2007-12-31 09:40:45.001 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 09:40:45.032 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [120828] 2007-12-31 09:40:45.110 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [103116] 2007-12-31 09:40:45.126 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [38716] 2007-12-31 09:40:45.141 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [96940] 2007-12-31 09:42:15.456 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 09:42:15.471 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 09:42:15.487 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 09:45:15.490 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 09:45:15.506 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [38716] 2007-12-31 09:45:15.522 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 09:48:15.541 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [23192] 2007-12-31 09:48:15.556 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [38716] 2007-12-31 09:48:15.572 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 09:48:32.510 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [52804] 2007-12-31 09:48:32.541 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 09:48:32.557 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [52804] 2007-12-31 09:48:32.635 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 09:48:32.650 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 09:48:32.682 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 09:48:44.572 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 09:48:44.588 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [103116] 2007-12-31 09:48:44.619 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [71696] 2007-12-31 09:48:44.697 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [120828] 2007-12-31 09:48:44.713 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [38716] 2007-12-31 09:48:44.729 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [20892] 2007-12-31 09:48:55.026 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 09:48:55.041 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 09:48:55.073 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 09:48:55.135 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [23192] 2007-12-31 09:48:55.151 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 09:48:55.182 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 09:49:11.448 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 09:49:11.464 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [23192] 2007-12-31 09:49:11.479 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [96940] 2007-12-31 09:49:11.557 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [83108] 2007-12-31 09:49:11.573 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [51320] 2007-12-31 09:49:11.604 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [120828] 2007-12-31 09:49:21.745 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [52804] 2007-12-31 09:49:21.761 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 09:49:21.776 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [52804] 2007-12-31 09:49:21.854 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 09:49:21.870 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 09:49:21.901 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [51320] 2007-12-31 09:50:44.075 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [103116] 2007-12-31 09:50:44.106 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 09:50:44.137 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 09:50:44.215 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [38716] 2007-12-31 09:50:44.231 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [86380] 2007-12-31 09:50:44.247 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 09:50:51.247 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [23192] 2007-12-31 09:50:51.262 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 09:50:51.294 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [23192] 2007-12-31 09:50:51.356 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [51320] 2007-12-31 09:50:51.372 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 09:50:51.403 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [23192] 2007-12-31 09:51:15.575 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 09:51:15.591 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 09:51:15.607 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [51320] 2007-12-31 09:54:15.610 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [52804] 2007-12-31 09:54:15.626 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 09:54:15.641 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [86380] 2007-12-31 09:57:15.645 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 09:57:15.660 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [23192] 2007-12-31 09:57:15.676 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [51320] 2007-12-31 10:00:15.695 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [52804] 2007-12-31 10:00:15.711 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [23192] 2007-12-31 10:00:15.726 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 10:01:05.305 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index easywcmen
    [120828] 2007-12-31 10:01:05.837 e TREX_C_STORE CStoreFiler.cpp(01142) : <rollback>
    dcwwtrexprdfs1\i$\easywcm\en\HashKeyStore.read.offset for fall back not availabel
    [120828] 2007-12-31 10:01:05.837 e TREX_C_STORE CStoreFiler.cpp(01193) : ERROR: rollback:
    dcwwtrexprdfs1\i$\easywcm\en\HashKeyStore failed
    [120828] 2007-12-31 10:01:05.837 f TrexStore    PersistentDocStore.cpp(01753) : TrexStore error: TRexCommonObjectsException in DocKeyStore.cpp(222): 'ContentStoreOptimizeError' in function PersistentDocStore::rollback
    [120828] 2007-12-31 10:01:05.837 e Trex_SE      FuzzyOptimizer.cpp(02259) : ERROR: m_docStore->rollback failed.
    [120828] 2007-12-31 10:01:05.837 e Trex_SE      FuzzyOptimizer.cpp(03951) : rollbackOptimizeFullText 'easywcmen' failed rc=4527
    [120828] 2007-12-31 10:01:05.837 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for easywcmen
    [120828] 2007-12-31 10:01:05.852 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 10:01:05.852 e TrexSlice    TRexApiSystem.cpp(01248) : IndexID: easywcm, index is corrupt.
    [103116] 2007-12-31 10:01:05.868 e TrexSlice    TrexSlice.cpp(00502) : ERROR: snapshot creation failed with ret=2008!
    [20892] 2007-12-31 10:01:08.774 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_proj_indexen
    [20892] 2007-12-31 10:01:09.321 e TREX_C_STORE CStoreFiler.cpp(01142) : <rollback>
    dcwwtrexprdfs1\i$\itec_proj_index\en\HashKeyStore.read.offset for fall back not availabel
    [20892] 2007-12-31 10:01:09.337 e TREX_C_STORE CStoreFiler.cpp(01193) : ERROR: rollback:
    dcwwtrexprdfs1\i$\itec_proj_index\en\HashKeyStore failed
    [20892] 2007-12-31 10:01:09.337 f TrexStore    PersistentDocStore.cpp(01753) : TrexStore error: TRexCommonObjectsException in DocKeyStore.cpp(222): 'ContentStoreOptimizeError' in function PersistentDocStore::rollback
    [20892] 2007-12-31 10:01:09.337 e Trex_SE      FuzzyOptimizer.cpp(02259) : ERROR: m_docStore->rollback failed.
    [20892] 2007-12-31 10:01:09.337 e Trex_SE      FuzzyOptimizer.cpp(03951) : rollbackOptimizeFullText 'itec_proj_indexen' failed rc=4527
    [20892] 2007-12-31 10:01:09.337 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_proj_indexen
    [20892] 2007-12-31 10:01:09.352 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 10:01:09.352 e TrexSlice    TRexApiSystem.cpp(01248) : IndexID: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 10:01:09.352 e TrexSlice    TrexSlice.cpp(00502) : ERROR: snapshot creation failed with ret=2008!
    [96940] 2007-12-31 10:02:00.838 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexen
    [96940] 2007-12-31 10:02:00.978 e TextMining   Trace.cpp(00074) : EX: 'Unable to open input file
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex\index.ini'
    [96940] 2007-12-31 10:02:00.978 e Trex_SE      FuzzyOptimizer.cpp(02490) : getTMHandle: error in opening TM '
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex' rc=9013
    [96940] 2007-12-31 10:02:00.978 e Trex_SE      FuzzyOptimizer.cpp(03945) : rollbackOptimizeTextMining 'itec_dept_indexen' failed rc=9013
    [96940] 2007-12-31 10:02:00.978 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_dept_indexen
    [96940] 2007-12-31 10:02:00.994 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexde
    [96940] 2007-12-31 10:02:01.135 e MiningAdmin  IndexManager.cpp(00866) : IndexManager::getAttributeInfos in IndexManager.cpp: Unable to read attribute infos from file '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\FDocs'! Rollback is only possible option for index '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\'.
    [96940] 2007-12-31 10:02:02.166 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexde finished rc=0
    [96940] 2007-12-31 10:02:02.166 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexes
    [96940] 2007-12-31 10:02:03.307 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexes finished rc=0
    [96940] 2007-12-31 10:02:03.307 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexfr
    [96940] 2007-12-31 10:02:04.432 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexfr finished rc=0
    [96940] 2007-12-31 10:02:04.447 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexsh
    [96940] 2007-12-31 10:02:05.572 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexsh finished rc=0
    [96940] 2007-12-31 10:02:05.588 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [52804] 2007-12-31 10:03:15.730 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 10:03:15.745 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [38716] 2007-12-31 10:03:15.761 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [86380] 2007-12-31 10:03:20.636 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [51320] 2007-12-31 10:03:20.683 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [38716] 2007-12-31 10:03:20.699 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [51320] 2007-12-31 10:03:20.777 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [103116] 2007-12-31 10:03:20.792 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 10:03:20.808 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [52804] 2007-12-31 10:03:29.636 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [83108] 2007-12-31 10:03:29.652 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [23192] 2007-12-31 10:03:29.668 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 10:03:29.746 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 10:03:29.761 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 10:03:29.793 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [120828] 2007-12-31 10:06:15.764 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [96940] 2007-12-31 10:06:15.780 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [38716] 2007-12-31 10:06:15.796 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 10:07:22.266 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [23192] 2007-12-31 10:07:22.266 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 10:09:15.799 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 10:09:15.815 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [52804] 2007-12-31 10:09:15.830 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 10:12:15.850 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 10:12:15.865 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 10:12:15.881 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 10:15:15.884 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 10:15:15.900 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [120828] 2007-12-31 10:15:15.915 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 10:18:15.935 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 10:18:15.950 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 10:18:15.966 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 10:21:07.282 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [23192] 2007-12-31 10:21:07.282 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [38716] 2007-12-31 10:21:12.282 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 10:21:12.282 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 10:21:16.001 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [51320] 2007-12-31 10:21:16.016 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 10:21:16.032 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 10:21:27.344 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 10:21:27.360 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [23192] 2007-12-31 10:21:27.376 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [71696] 2007-12-31 10:21:27.454 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 10:21:27.469 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [103116] 2007-12-31 10:21:27.485 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [51320] 2007-12-31 10:21:38.563 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [120828] 2007-12-31 10:21:38.579 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 10:21:38.595 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [120828] 2007-12-31 10:21:38.673 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 10:21:38.688 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 10:21:38.704 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 10:21:50.376 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [51320] 2007-12-31 10:21:50.407 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 10:21:50.423 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [51320] 2007-12-31 10:21:50.501 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [120828] 2007-12-31 10:21:50.517 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 10:21:50.548 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [96940] 2007-12-31 10:24:16.035 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [86380] 2007-12-31 10:24:16.051 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [52804] 2007-12-31 10:24:16.066 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 10:27:12.289 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [38716] 2007-12-31 10:27:12.289 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 10:27:16.070 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 10:27:16.086 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 10:27:16.101 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 10:30:16.105 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [23192] 2007-12-31 10:30:16.105 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 10:30:16.136 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 10:30:22.292 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [120828] 2007-12-31 10:30:22.292 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [38716] 2007-12-31 10:31:05.902 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index easywcmen
    [38716] 2007-12-31 10:31:06.418 e TREX_C_STORE CStoreFiler.cpp(01142) : <rollback>
    dcwwtrexprdfs1\i$\easywcm\en\HashKeyStore.read.offset for fall back not availabel
    [38716] 2007-12-31 10:31:06.418 e TREX_C_STORE CStoreFiler.cpp(01193) : ERROR: rollback:
    dcwwtrexprdfs1\i$\easywcm\en\HashKeyStore failed
    [38716] 2007-12-31 10:31:06.434 f TrexStore    PersistentDocStore.cpp(01753) : TrexStore error: TRexCommonObjectsException in DocKeyStore.cpp(222): 'ContentStoreOptimizeError' in function PersistentDocStore::rollback
    [38716] 2007-12-31 10:31:06.434 e Trex_SE      FuzzyOptimizer.cpp(02259) : ERROR: m_docStore->rollback failed.
    [38716] 2007-12-31 10:31:06.434 e Trex_SE      FuzzyOptimizer.cpp(03951) : rollbackOptimizeFullText 'easywcmen' failed rc=4527
    [38716] 2007-12-31 10:31:06.434 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for easywcmen
    [38716] 2007-12-31 10:31:06.449 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 10:31:06.449 e TrexSlice    TRexApiSystem.cpp(01248) : IndexID: easywcm, index is corrupt.
    [83108] 2007-12-31 10:31:06.449 e TrexSlice    TrexSlice.cpp(00502) : ERROR: snapshot creation failed with ret=2008!
    [52804] 2007-12-31 10:31:09.387 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_proj_indexen
    [52804] 2007-12-31 10:31:09.934 e TREX_C_STORE CStoreFiler.cpp(01142) : <rollback>
    dcwwtrexprdfs1\i$\itec_proj_index\en\HashKeyStore.read.offset for fall back not availabel
    [52804] 2007-12-31 10:31:09.934 e TREX_C_STORE CStoreFiler.cpp(01193) : ERROR: rollback:
    dcwwtrexprdfs1\i$\itec_proj_index\en\HashKeyStore failed
    [52804] 2007-12-31 10:31:09.934 f TrexStore    PersistentDocStore.cpp(01753) : TrexStore error: TRexCommonObjectsException in DocKeyStore.cpp(222): 'ContentStoreOptimizeError' in function PersistentDocStore::rollback
    [52804] 2007-12-31 10:31:09.934 e Trex_SE      FuzzyOptimizer.cpp(02259) : ERROR: m_docStore->rollback failed.
    [52804] 2007-12-31 10:31:09.949 e Trex_SE      FuzzyOptimizer.cpp(03951) : rollbackOptimizeFullText 'itec_proj_indexen' failed rc=4527
    [52804] 2007-12-31 10:31:09.949 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_proj_indexen
    [52804] 2007-12-31 10:31:09.965 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 10:31:09.965 e TrexSlice    TRexApiSystem.cpp(01248) : IndexID: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 10:31:09.965 e TrexSlice    TrexSlice.cpp(00502) : ERROR: snapshot creation failed with ret=2008!
    [96940] 2007-12-31 10:31:12.293 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [86380] 2007-12-31 10:31:12.293 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 10:31:17.293 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [103116] 2007-12-31 10:31:17.293 e SERVER_TRACE TRexApiAdmin.cpp(09658) : Index Id: itec_proj_index, index is corrupt.
    [103116] 2007-12-31 10:32:05.622 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexen
    [103116] 2007-12-31 10:32:05.747 e TextMining   Trace.cpp(00074) : EX: 'Unable to open input file
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex\index.ini'
    [103116] 2007-12-31 10:32:05.747 e Trex_SE      FuzzyOptimizer.cpp(02490) : getTMHandle: error in opening TM '
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex' rc=9013
    [103116] 2007-12-31 10:32:05.747 e Trex_SE      FuzzyOptimizer.cpp(03945) : rollbackOptimizeTextMining 'itec_dept_indexen' failed rc=9013
    [103116] 2007-12-31 10:32:05.747 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_dept_indexen
    [103116] 2007-12-31 10:32:05.747 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexde
    [103116] 2007-12-31 10:32:05.888 e MiningAdmin  IndexManager.cpp(00866) : IndexManager::getAttributeInfos in IndexManager.cpp: Unable to read attribute infos from file '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\FDocs'! Rollback is only possible option for index '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\'.
    [103116] 2007-12-31 10:32:06.888 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexde finished rc=0
    [103116] 2007-12-31 10:32:06.904 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexes
    [103116] 2007-12-31 10:32:08.029 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexes finished rc=0
    [103116] 2007-12-31 10:32:08.029 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexfr
    [103116] 2007-12-31 10:32:09.154 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexfr finished rc=0
    [103116] 2007-12-31 10:32:09.154 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexsh
    [103116] 2007-12-31 10:32:10.279 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexsh finished rc=0
    [103116] 2007-12-31 10:32:10.279 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 10:33:16.139 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 10:33:16.139 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 10:33:16.171 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 10:36:16.190 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 10:36:16.205 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 10:36:16.221 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 10:39:16.224 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 10:39:16.240 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 10:39:16.256 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [86380] 2007-12-31 10:42:16.290 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 10:42:16.306 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 10:42:16.322 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 10:45:16.341 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [103116] 2007-12-31 10:45:16.356 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [20892] 2007-12-31 10:45:16.372 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 10:48:16.375 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 10:48:16.391 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [86380] 2007-12-31 10:48:16.407 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [86380] 2007-12-31 10:51:16.410 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 10:51:16.426 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 10:51:16.441 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 10:54:16.460 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 10:54:16.460 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 10:54:16.492 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 10:57:16.495 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 10:57:16.495 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [96940] 2007-12-31 10:57:16.526 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [96940] 2007-12-31 11:00:16.545 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 11:00:16.560 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [52804] 2007-12-31 11:00:16.576 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [23192] 2007-12-31 11:01:06.413 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index easywcmen
    [23192] 2007-12-31 11:01:06.929 e TREX_C_STORE CStoreFiler.cpp(01142) : <rollback>
    dcwwtrexprdfs1\i$\easywcm\en\HashKeyStore.read.offset for fall back not availabel
    [23192] 2007-12-31 11:01:06.929 e TREX_C_STORE CStoreFiler.cpp(01193) : ERROR: rollback:
    dcwwtrexprdfs1\i$\easywcm\en\HashKeyStore failed
    [23192] 2007-12-31 11:01:06.944 f TrexStore    PersistentDocStore.cpp(01753) : TrexStore error: TRexCommonObjectsException in DocKeyStore.cpp(222): 'ContentStoreOptimizeError' in function PersistentDocStore::rollback
    [23192] 2007-12-31 11:01:06.944 e Trex_SE      FuzzyOptimizer.cpp(02259) : ERROR: m_docStore->rollback failed.
    [23192] 2007-12-31 11:01:06.944 e Trex_SE      FuzzyOptimizer.cpp(03951) : rollbackOptimizeFullText 'easywcmen' failed rc=4527
    [23192] 2007-12-31 11:01:06.944 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for easywcmen
    [23192] 2007-12-31 11:01:06.960 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [38716] 2007-12-31 11:01:06.960 e TrexSlice    TRexApiSystem.cpp(01248) : IndexID: easywcm, index is corrupt.
    [38716] 2007-12-31 11:01:06.960 e TrexSlice    TrexSlice.cpp(00502) : ERROR: snapshot creation failed with ret=2008!
    [103116] 2007-12-31 11:01:09.927 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_proj_indexen
    [103116] 2007-12-31 11:01:10.474 e TREX_C_STORE CStoreFiler.cpp(01142) : <rollback>
    dcwwtrexprdfs1\i$\itec_proj_index\en\HashKeyStore.read.offset for fall back not availabel
    [103116] 2007-12-31 11:01:10.474 e TREX_C_STORE CStoreFiler.cpp(01193) : ERROR: rollback:
    dcwwtrexprdfs1\i$\itec_proj_index\en\HashKeyStore failed
    [103116] 2007-12-31 11:01:10.474 f TrexStore    PersistentDocStore.cpp(01753) : TrexStore error: TRexCommonObjectsException in DocKeyStore.cpp(222): 'ContentStoreOptimizeError' in function PersistentDocStore::rollback
    [103116] 2007-12-31 11:01:10.474 e Trex_SE      FuzzyOptimizer.cpp(02259) : ERROR: m_docStore->rollback failed.
    [103116] 2007-12-31 11:01:10.474 e Trex_SE      FuzzyOptimizer.cpp(03951) : rollbackOptimizeFullText 'itec_proj_indexen' failed rc=4527
    [103116] 2007-12-31 11:01:10.489 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_proj_indexen
    [103116] 2007-12-31 11:01:10.489 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [51320] 2007-12-31 11:01:10.505 e TrexSlice    TRexApiSystem.cpp(01248) : IndexID: itec_proj_index, index is corrupt.
    [51320] 2007-12-31 11:01:10.505 e TrexSlice    TrexSlice.cpp(00502) : ERROR: snapshot creation failed with ret=2008!
    [51320] 2007-12-31 11:02:00.233 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexen
    [51320] 2007-12-31 11:02:00.358 e TextMining   Trace.cpp(00074) : EX: 'Unable to open input file
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex\index.ini'
    [51320] 2007-12-31 11:02:00.358 e Trex_SE      FuzzyOptimizer.cpp(02490) : getTMHandle: error in opening TM '
    dcwwtrexprdfs1\i$\itec_dept_index\en\trex' rc=9013
    [51320] 2007-12-31 11:02:00.358 e Trex_SE      FuzzyOptimizer.cpp(03945) : rollbackOptimizeTextMining 'itec_dept_indexen' failed rc=9013
    [51320] 2007-12-31 11:02:00.358 e SERVER_TRACE DeltaIndexManager.cpp(01260) : rollback failed for itec_dept_indexen
    [51320] 2007-12-31 11:02:00.358 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexde
    [51320] 2007-12-31 11:02:00.498 e MiningAdmin  IndexManager.cpp(00866) : IndexManager::getAttributeInfos in IndexManager.cpp: Unable to read attribute infos from file '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\FDocs'! Rollback is only possible option for index '
    dcwwtrexprdfs1\i$\itec_dept_index\de\trex\'.
    [51320] 2007-12-31 11:02:01.482 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexde finished rc=0
    [51320] 2007-12-31 11:02:01.482 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexes
    [51320] 2007-12-31 11:02:02.607 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexes finished rc=0
    [51320] 2007-12-31 11:02:02.607 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexfr
    [51320] 2007-12-31 11:02:03.716 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexfr finished rc=0
    [51320] 2007-12-31 11:02:03.731 e Trex_SE      FuzzyOptimizer.cpp(03907) : start rollbackOptimize for index itec_dept_indexsh
    [51320] 2007-12-31 11:02:04.840 e Trex_SE      FuzzyOptimizer.cpp(03984) : rollbackOptimize for index itec_dept_indexsh finished rc=0
    [51320] 2007-12-31 11:02:04.856 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [23192] 2007-12-31 11:02:27.705 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [83108] 2007-12-31 11:02:27.736 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [51320] 2007-12-31 11:02:27.767 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [83108] 2007-12-31 11:02:27.845 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [103116] 2007-12-31 11:02:27.861 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 11:02:27.877 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [51320] 2007-12-31 11:03:16.589 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [96940] 2007-12-31 11:03:16.605 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 11:03:16.620 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [71696] 2007-12-31 11:06:16.682 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [96940] 2007-12-31 11:06:16.682 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [71696] 2007-12-31 11:06:16.713 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [20892] 2007-12-31 11:09:16.785 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [96940] 2007-12-31 11:09:16.801 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [52804] 2007-12-31 11:09:16.816 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [83108] 2007-12-31 11:10:18.345 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.
    [120828] 2007-12-31 11:10:18.377 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_proj_index, index is corrupt.
    [52804] 2007-12-31 11:10:18.392 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: easywcm, index is corrupt.
    [120828] 2007-12-31 11:10:18.470 e SERVER_TRACE TRexApiAdmin.cpp(09159) : Index Id: itec_dept_index, index is corrupt.

    Hi Srinivas,
    I am afraid, but it seems that the indexes of your TREX installation are corrupt. This could happen if, e.g. you use a network storage (SAN or NAS) which is temporarily not available.
    As far as I see it is necessary to perform a reindex or restore a backup of the not working indexes. For further investigation it might be useful to do a backup of the current situation.
    Kind regards,
    Roland

  • Database Services Engine Failed, SQL Server Replication Failed, Full Text Search Failed, Reporting Services Failed

    Hello,
    I am trying to install Microsoft SQL Server 2008 R2. I get the error bellow (Database Services Engine Failed, SQL Server Replication Failed, Full Text Search Failed, Reporting Services Failed). I already have a copy of SQL Server 2008 R2 on the machine.
    I want to create a new named instance of SQL Server for some software I'm installing.
    The error is below.
    Any help would be much appreciated, thanks!
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Exit code (Decimal):           -595541211
      Exit facility code:            1152
      Exit error code:               49957
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Start time:                    2014-02-06 09:14:09
      End time:                      2014-02-06 11:18:16
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.50.2500.0%26EvtType%3d0x44D4F75E%400xDC80C325
    Machine Properties:
      Machine name:                  BAHPBZ52TY
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered
      Sql Server 2008 R2   SQLEXPRESS           MSSQL10_50.SQLEXPRESS          Database Engine Services                
    1033                 Express Edition      10.50.1600.1    No        
      Sql Server 2008 R2                                                      
    Management Tools - Basic                 1033                 Express Edition     
    10.50.1600.1    No        
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      Installation location:         c:\c7ced2c86d6b9813b28186cc831c2054\x64\setup\
      Installation edition:          EXPRESS_ADVANCED
      Slipstream:                    True
      SP Level                       1
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      True
      AGTSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Disabled
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             
      CUSOURCE:                      
      ENABLERANU:                    True
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE,REPLICATION,FULLTEXT,RS,SSMS,SNAC_SDK,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  NT AUTHORITY\LOCAL SERVICE
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              c:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           c:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    aedt2bSQL
      INSTANCENAME:                  AEDT2BSQL
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     c:\c7ced2c86d6b9813b28186cc831c2054\PCUSOURCE
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 DefaultNativeMode
      RSSVCACCOUNT:                  NT AUTHORITY\NETWORK SERVICE
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           BAH\568385
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Full-Text Search
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Reporting Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Management Tools - Basic
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync Framework
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\SystemConfigurationCheck_Report.htm

    Hello,
    If you see error descriptioon it gives access denied so basically it is because of some access issue.I guess You must be using some domin account for installation make sure it is  added as local administrator also instead of using NT Authority network
    service  as SQL server service account use local system account .
    Below link would help
    http://serverfault.com/questions/212135/access-is-denied-error-installing-sql-server-2008-on-windows-7
    You can also browse to setup.exe file and RK on it and select run as administrator
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Search for a function module for deleting document originals (DMS)

    Hi,
    I'm searching for a function module to delete originals in documents (like manually with transaction cv02n). I'm only able to set an delete mark with the module 'BAPI_DOCUMENT_DELETE'.
    The module 'BAPI_DOCUMENT_CHANGE2' can only add new originals to an existing document. I need a possibility to delete all originals in an document without deleting the document itself.
    Has anyone an idea?
    Thanks.
    Jan-Christian Treusch

    Many thanks!
    That's especially the method I've searched for so long....
    best regards.
    Jan-Christian Treusch

  • Com.sapportals.wcm.WcmException:multi-server search failed

    Hi Friends,
    I am getting the below error when i use search option in portal.
    Search Failure
    Error during search occurred - com.sapportals.wcm.WcmException: multi-server search failed on some of the servers;error=1999,index=zhsea_helpdesk_doc,location=hsea-pdc-s019:30103;error=1999,index=zhsea_helpdesk_doc,location=hsea-pdc-s019:30103;error=1999,index=zsccc_io_ep,location=hsea-pdc-s019:30103;error=1999,index=zsccc_io_ep,location=hsea-pdc-s019:30103;error=1999,index=zsccc_io_ep,location=hsea-pdc-s019:30103;error=1999,index=zsccc_io_ep,location=hsea-pdc-s019:30103;error=1999,index=zsccc_bpp,location=hsea-pdc-s019:30103;error=1999,index=zsccc_elibrary_fulltext_search,location=hsea-pdc-s019:30103;error=1999,index=zsccc_elibrary_fulltext_search,location=hsea-pdc-s019:30103;error=1999,index=zapcm_user_forum_database,location=hsea-pdc-s019:30103 (Errorcode 2975)
    An unexpected severe error occurred during the search call.  If the situation persists, inform your system administrator.
    I tried to create indexing but it is not happening,If i check TREX logs i found some errors please analyze the problem and advice
    [6052] 2009-02-02 21:48:16.325 e TREX_C_STORE CSFile.cpp(00332) : GetDeviceFileName() failed.
    [6052] 2009-02-02 21:48:16.325 e TREX_C_STORE CSFile.cpp(00336) : sleeping 10 seconds and trying again...
    [6052] 2009-02-02 21:48:26.325 e TREX_C_STORE CSFile.cpp(00717) : open('
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header',ab) failed with error 106 (last file open failed and handle is not okay), 13 global open files
    [6052] 2009-02-02 21:48:26.325 e TREX_C_STORE FileHandle.cpp(00638) : ERROR: checkAndSetVersion(): reading index version from file failed
    [6052] 2009-02-02 21:48:26.325 e TrexStore    IndexSettings.cpp(00518) : could not read maxtermcounter zsccc_io_epen
    [6052] 2009-02-02 21:48:26.325 e TrexStore    IndexSettings.cpp(00251) : crashed in CSIndexSettings::open zsccc_io_epen
    [6052] 2009-02-02 21:48:26.325 e TrexStore    IndexSettings.cpp(00647) : CSIndexSettings not opened zsccc_io_epen
    [6052] 2009-02-02 21:48:26.325 e Trex_SE      FuzzyExceptions.cpp(00130) : caught ... exception in blobInfo.open() for zsccc_io_epen
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epen (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epde (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epsh (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epth (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_bppen (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_elibrary_fulltext_searchen (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_elibrary_fulltext_searchth (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zapcm_user_forum_databaseen (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zhsea_helpdesk_docen (rc = 1999)
    [6052] 2009-02-02 21:48:26.325 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zhsea_helpdesk_docth (rc = 1999)
    [5384] 2009-02-02 21:52:12.922 e TREX_C_STORE CSFile.cpp(00741) : GetLastError: 5=Access is denied.
    [5384] 2009-02-02 21:52:12.922 e TREX_C_STORE CSFile.cpp(00324) : fopen
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header (21) failed
    [5384] 2009-02-02 21:52:12.922 e TREX_C_STORE CSFile.cpp(00332) : GetDeviceFileName() failed.
    [5384] 2009-02-02 21:52:12.922 e TREX_C_STORE CSFile.cpp(00336) : sleeping 10 seconds and trying again...
    [5384] 2009-02-02 21:52:22.922 e TREX_C_STORE CSFile.cpp(00741) : GetLastError: 5=Access is denied.
    [5384] 2009-02-02 21:52:22.922 e TREX_C_STORE CSFile.cpp(00324) : fopen
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header (21) failed
    [5384] 2009-02-02 21:52:22.922 e TREX_C_STORE CSFile.cpp(00332) : GetDeviceFileName() failed.
    [5384] 2009-02-02 21:52:22.922 e TREX_C_STORE CSFile.cpp(00336) : sleeping 10 seconds and trying again...
    [5384] 2009-02-02 21:52:32.922 e TREX_C_STORE CSFile.cpp(00741) : GetLastError: 5=Access is denied.
    [5384] 2009-02-02 21:52:32.922 e TREX_C_STORE CSFile.cpp(00324) : fopen
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header (21) failed
    [5384] 2009-02-02 21:52:32.922 e TREX_C_STORE CSFile.cpp(00332) : GetDeviceFileName() failed.
    [5384] 2009-02-02 21:52:32.922 e TREX_C_STORE CSFile.cpp(00336) : sleeping 10 seconds and trying again...
    [5384] 2009-02-02 21:52:42.922 e TREX_C_STORE CSFile.cpp(00741) : GetLastError: 5=Access is denied.
    [5384] 2009-02-02 21:52:42.922 e TREX_C_STORE CSFile.cpp(00324) : fopen
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header (21) failed
    [5384] 2009-02-02 21:52:42.922 e TREX_C_STORE CSFile.cpp(00332) : GetDeviceFileName() failed.
    [5384] 2009-02-02 21:52:42.922 e TREX_C_STORE CSFile.cpp(00336) : sleeping 10 seconds and trying again...
    [5384] 2009-02-02 21:52:52.922 e TREX_C_STORE CSFile.cpp(00741) : GetLastError: 5=Access is denied.
    [5384] 2009-02-02 21:52:52.922 e TREX_C_STORE CSFile.cpp(00324) : fopen
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header (21) failed
    [5384] 2009-02-02 21:52:52.922 e TREX_C_STORE CSFile.cpp(00332) : GetDeviceFileName() failed.
    [5384] 2009-02-02 21:52:52.922 e TREX_C_STORE CSFile.cpp(00336) : sleeping 10 seconds and trying again...
    [5384] 2009-02-02 21:53:02.923 e TREX_C_STORE CSFile.cpp(00741) : GetLastError: 5=Access is denied.
    [5384] 2009-02-02 21:53:02.923 e TREX_C_STORE CSFile.cpp(00324) : fopen
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header (21) failed
    [5384] 2009-02-02 21:53:02.923 e TREX_C_STORE CSFile.cpp(00332) : GetDeviceFileName() failed.
    [5384] 2009-02-02 21:53:02.923 e TREX_C_STORE CSFile.cpp(00336) : sleeping 10 seconds and trying again...
    [5384] 2009-02-02 21:53:12.923 e TREX_C_STORE CSFile.cpp(00717) : open('
    ephasapgrp\TXP_SHARE\TXP\index\zsccc_io_ep\en\settings.header',ab) failed with error 106 (last file open failed and handle is not okay), 13 global open files
    [5384] 2009-02-02 21:53:12.923 e TREX_C_STORE FileHandle.cpp(00638) : ERROR: checkAndSetVersion(): reading index version from file failed
    [5384] 2009-02-02 21:53:12.923 e TrexStore    IndexSettings.cpp(00518) : could not read maxtermcounter zsccc_io_epen
    [5384] 2009-02-02 21:53:12.923 e TrexStore    IndexSettings.cpp(00251) : crashed in CSIndexSettings::open zsccc_io_epen
    [5384] 2009-02-02 21:53:12.923 e TrexStore    IndexSettings.cpp(00647) : CSIndexSettings not opened zsccc_io_epen
    [5384] 2009-02-02 21:53:12.923 e Trex_SE      FuzzyExceptions.cpp(00130) : caught ... exception in blobInfo.open() for zsccc_io_epen
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epen (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epde (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epsh (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_io_epth (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_bppen (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_elibrary_fulltext_searchen (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zsccc_elibrary_fulltext_searchth (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zapcm_user_forum_databaseen (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zhsea_helpdesk_docen (rc = 1999)
    [5384] 2009-02-02 21:53:12.923 e SERVER_TRACE DeltaIndexManager.cpp(03987) : search: failed for main index zhsea_helpdesk_docth (rc = 1999)
    [2528] 2009-02-02 22:05:02.666 e SERVER_TRACE TRexApiIndexDocuments.cpp(02494) : indexLocal zsccc_elibrary_fulltext_search: <zsccc_elibrary_fulltext_search> is already prepared (3=TPCS_PREPARED). Index call not allowed!
    Kind Regards
    Sudhakar

    I know this is an old thread, but in my case the problem was solved after i patched the TREX 7.10 revision 40 to revision 50...
    Cheers Michael

  • Search By Name function is NOT WORKING.

    Before reading further, PLEASE take note of this: I have ALREADY installed the "Search By Name" add-on, and it DOES NOT WORK. As such, PLEASE do not suggest that add-on as a fix to my issue, since that add-on IS my issue.
    I was using Firefox ESR 10.0.11 and was forced to upgrade to 17.0.7 yesterday, even though my cfg file is set to not allow updates. Since the upgrade, the Search by Name function has stopped working, i.e.: I used to be able to type "yahoo" into the address bar and go straight to yahoo; now, when I type anything that is not a complete URL into the address bar, it goes to allied.com. I have already gone into about:config and changed keyword:URL to http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q= and have also installed the Search By Name add-on. Neither of these work. Please help me.

    Does that setting of the keyword.URL pref stay?
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Do a malware check with some malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Why can't I find events with cmd-F? I can see the appointment I am searching for, but the search cmd-F function does not find it. Why is this. It used to work...

    Why can't I find events with cmd-F? I can see the appointment I am searching for, but the search cmd-F function does not find it. Why is this. It used to work...

    Why can't I find events with cmd-F? I can see the appointment I am searching for, but the search cmd-F function does not find it. Why is this. It used to work...

  • How can I add search parameter "Partner Function" to the inbox in ICweb?

    Hello
    I need to add search parameter "Partner Function" to the inbox ICweb search.
    Today I can search for My open transaction.
    The meaning of "My" in the EM Responsible parameter is that my BP number assign to any transaction in any partner function.
    I wont to limit the search to look in a particular partner function. for example: 00000014 Employee responsible.
    I mean in hardcode and not as a parameter selection screen.
    I know that this functionality exist in CRM5 but i am in CRM4
    Thanks
    Merav

    Hi Darren,
    I have implemented this BAdi and when I am trying to activate this it is giving me short dump saying 'SYSTEM_CORE_DUMPED', please help.
    During the course of my actions I implemeted this BAdi using transaction SE19, the activated this it is activated correctly, then I did some changes in method 'CUSTOM_HIT_LIST_SORT' but then whenever I try activate either the metod or the implemetation it is gives me a pop up saying 'Work Process restarted, session terminated' and the session terminates. On ERMS web page I see the Rabex error and in ST22 I see the SYSTEM_CORE_DUMPED error with following dump details
    Runtime Errors         SYSTEM_CORE_DUMPED
           Occurred on     07/21/2006 at 09:07:51
    Process terminated by signal 0.
    What happened?
    The current ABAP program had to be terminated because the
    ABAP processor detected an internal system error.
    The current ABAP program "ZCL_IM_TTT_IC_INBOX_BADI_2====CP " had to be
    terminated because the ABAP
    processor discovered an invalid system state.
    Information on where termination occurred
    The termination occurred during generation of the ABAP program
    "ZCL_IM_TTT_IC_INBOX_BADI_2====CP ".
    The point of termination was in line 5 of the ABAP source code of the
    (Include) program "CL_CRM_AUI_ENTITY=============CU ".
    of the program "CL_CRM_AUI_ENTITY=============CU " (when calling the editor
    50).
    Source code extract
    000010   class CL_CRM_AUI_ENTITY definition
    000020     public
    000030     inheriting from CL_CRM_BOL_ENTITY
    000040     abstract
         >     create public .
    000060
    000070   " public components of class CL_CRM_AUI_ENTITY
    000080   " do not include other source files here!!!
    000090   public section.
    000100
    000110     interfaces IF_CRM_IC_CONTACT .
    000120
    000130     methods ACCEPT
    000140     abstract
    000150       importing
    000160         !IR_ENTITY type ref to CL_CRM_BOL_ENTITY
    Please help.
    Regards,
    Tarun Goel

  • Assigning search help (F4 functionality ) for recipient field in IW32

    Hi,
    my requirement is to assign search help (F4 functionality) for recipient field in components tab of IW32. anybody help me to assign search help for it. same way i need to assign that in MIGO, MB21, MB1A goods recipient field.

    hi,
    refer to the following link:
    http://www.saptechies.com/how-to-add-f4-help-to-a-field-on-screen-module-pool/
    i hope it helps
    regards

  • Search Failed - Address Lookup Corporate GAL

    Hello,
    A handful of users are randomly unable to search the corporate GAL from their iPhone (4.2 and 4.3)...  From their device, they'll open the GAL and start typing someone's name it immediately fails saying 'Search Failed'....  The user will only type 1 letter and it will fail.  It doesn't even seem the search is leaving the device because it fails instantly.
    We just upgraded to Exchange 2010 and wondering if there's some incompatibility.  if the user reboots his iPhone then they'll be able to access the GAL post reboot, but they'll run into this issue a couple days later....Any ideas as to what's causing this??
    Thanks

    for sure.
    have a look at the file called lookup_fs.html
    (its under server_root/html/yourpreferredlanguage/
    around line 27 you can see some (commented) JavaScript tags which enalbes you to add additional directories.
    Peter

  • CJS-00081  Assertion failed: in function InstallationScript_212()

    Hi,
    I am trying to install WAS6.4 Sneak-Preview on win2k sp4 (Terminal), J2SE1.4.2_05 and every fresh installation is failing in the "MaxDB Database Installtion" phase with the following error message.
    ERROR 2005-06-13 19:45:56
    CJS-00081  Assertion failed: in function InstallationScript_212() {    var installer = new Installer();    var kdb = new KeyDB();    var context = new Context();    var gui = new Gui();
    Any pointers related to this type of failures would be of GREAT!! Help..
    Thanks in Advance
    Atul

    Thanks for the response sai..
    i managed to resolved this particular issue (it was because one of the NT service was not running)
    However now the Installtion is hanging at one particular point "MaxDB Database Installation" (phase 5) the last few lines in the "sapinst.log" file are as follows:
    installation of MaxDB Webtools finished successfully We, Jun 15, 2005 at 201841
    INFO 2005-06-15 201844
    The service 'XServer' started successfully on host 'Local'.
    INFO 2005-06-15 201852
    The service 'SAPDBWWW' started successfully on host 'Local'.
    INFO 2005-06-15 201859
    Working directory changed to Csapdbprogramspgm.
    INFO 2005-06-15 201859
    Working directory changed to CProgram Filessapinst_instdirNW04SR1WEBAS_JAVACENTRALONE_HOST.
    INFO 2005-06-15 201902
    Working directory changed to Csapdbprogramspgm.
    INFO 2005-06-15 201902
    Working directory changed to CProgram Filessapinst_instdirNW04SR1WEBAS_JAVACENTRALONE_HOST.
    installation of MaxDB Webtools finished successfully We, Jun 15, 2005 at 20:18:41
    INFO 2005-06-15 20:18:44
    The service 'XServer' started successfully on host 'Local'.
    INFO 2005-06-15 20:18:52
    The service 'SAPDBWWW' started successfully on host 'Local'.
    INFO 2005-06-15 20:18:59
    Working directory changed to C:/sapdb/programs/pgm.
    INFO 2005-06-15 20:18:59
    Working directory changed to C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST.
    INFO 2005-06-15 20:19:02
    Working directory changed to C:/sapdb/programs/pgm.
    INFO 2005-06-15 20:19:02
    Working directory changed to C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST.
    My current System Configuration is as follows:
    - MS Windows Server 2003 (Enterprise Edition)
    - RAM 1 GB
    - Pentium 4 2.4 Ghz processor
    - 1.4.2_05 J2SE
    And i have used both the Installation currently available on SDN site viz.
    a)SAPinst_SP_WAS640.exe
    b)WebAS640SP9.zip
    I have also tried on m/c having Windows 2000 SP4 OS with 2GB of RAM without any success.
    I even tried options such as "cancelling" the Installation and resuming it later without any success.
    Though the installtion is hanging for MaxDB however it was succefull when tried with MS SQL-Server2000.
    Can somebody provide any pointers in resolving this issue?
    Thanks in advance..
    Atul

  • Joker characters in the search and replace function

    Hello everyone,
    Just a quick question :
    I was wondering what character can be used as a joker character in the search and replace function (I did a research in the site, but didn't find any thread)
    To be clear, I have misspelled a word, for example «trouser».
    I know I didn't make any mistake with the first and last letter, but sometimes I wrote it «tourser», «turoser»
    (sorry if there is a weird meaning, i'm french, and for me it won't mean anything, so don't take it personally)
    I would like to be able te replace all the versions of «trouser», even the good ones, using «t*****r» in the search and replace function.
    I tried the «*» character, but it's not the jocker.
    Thank you for your help !

    As I can't edit my first message, just wanted to let you know it's also called «wildcard» characters
    Like here (Careful, it's… Ms Office)

  • Fail-over functions

    I went for an interview. there was a simple test before the interview. One of the questions is:
    What are the Oracle fail-over functions? which of them can only be used in RAC?
    What i can think of is the Transparent Application Failover(TAF). Any other fail-over functions?

    Connect-Time Failover,
    Transparent - Time Failover,
    & you can add Load Balancing as well.
    1 Client-Side Load Balancing
    2. Server-Side Load Balancing.
    & More info on this from ML Note:226880.1
    1) client side connect time load balance only
    2) server side listener connection load balance with client side connect
    time load balance
    3) server side listener connection load balance only
    3) transparent application failover
    Message was edited by:
    Ravi Prakash

  • Search help,F4 function& matchcode object , give difference

    hi guru
    i confuse about this 3 functionlity.
    search help,F4 function& matchcode object ,
    please tell me the differences.
    regards.
    subhasis.

    Hi,
    Search Help
    Use
    With this function you can search for objects, thereby defining and linking different selection conditions for the search help.
    Prerequisites
    You can call this function by:
    · Selecting Object ® Search... () in the main menu bar of the Integration Builder
    · Placing the cursor on a software component version and selecting Search... () in the context menu (only in the Integration Repository)
    In this case the software component version is defined as the search criteria.
    Features
    Defining the Object Type
    You can select the object type in a dropdown list in field Object Type.
    In the design (Integration Repository) you can
    · Select an object type (for example Message Interface)
    · Select a cross-object category (for example Interface Objects)
    In the configuration (Integration Directory) you can select types Values Mapping Group and schema in addition to the individual object types.
    CHECK THIS LINK TO CREATE A SEARCH HELP.
    http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_basic.htm
    CHECK THIS LINK TO CREATE A MATCHCODE OBJECT
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci553386,00.html
    more details...
    Regards,
    Priyanka.

  • Thunderbird search fails, again

    search fails entirely, this happened before and it was some &*() obscure setting
    returns butloads of things that do NOT have the search term
    Also, fyi, it took 20 minutes to just get here, due to logins, usernames, etc (too complex, but nevermind)

    This was not about forgetting a password, but that it was complicated to get in to the forums. I know users get pretty heated up about very minor things but pretty extreme and uncivil reaction here from a 'moderator'.
    I thought someone might just have a tip re a setting, as this had happened before. I believe I said clearly what the issue is, which is that I type in search term "xyz" and many many results are returned that do not contain this term. at all.
    I am switching to postbox so all good, no longer using mozilla for anything.

Maybe you are looking for