Arch with Xen-server patch

Okey, here's my problem:
I want to run Arch with the Xen patch, unfortunatly the latest version if it only supports kernel 2.6.13.x.
This means that I somehow need to get udev to work with this kernel setup, my problem right now is that downgradeing udev to a version that doesn't require 2.6.15 reaks havoc over my system since it seems the initscripts are not adjusted to handle this. I tried downgradeing udev resulting in a machine that went ballistic whenever I booted it.
Does anyone have a nice, simple and good solution on how to make Archlinux run with 2.6.13, the Xen patch and a udev version that's satisfactory by todays standards and requirements?
PS. I heard a rumor about a patch that gave the 2.6.13 kernel the uevent stuff needed for running newer versions of udev, is this just a rumor or is there acctually such a patch? (And ofcourse I've googled around quite abit before I asked here) DS.

Hi!
I might have an answer to your problem, but not exactly what you are expecting.
- I found on xen newsgroups that as soon as the kernel 2.6.16 is available they will update their binary packages, so you can wait for this one to happen.
- I modified xen-unstable package from AUR, so it compiles Xen kernel 2.6.15 in the process and one does not have to change almost anything (one has to rename /lib/tls to improve Xen performance).
If you have time give a try to the following package (maintainer is the name of the guy who put it in AUR - don't ask him for help please). As you can see I'm building full kernel with /usr/src/ stuff so one can compile modules for Xen. I have not tested it fully, I compiled it, booted and started creating virtual machine and then went snowboarding and came back last weekend. I give absolutely no warranty that it will work it did for me though:
PKGBUILD
# $Id$
# Maintainer: Charles Mauch <[email protected]>
pkgname=xen
pkgver=unstable
pkgrel=3
pkgdesc="Enterprise Open-Source Virtualization, unstable branch"
url="http://www.xensource.com/"
depends=( 'iproute' 'bridge-utils' 'zope' 'python' 'twisted-web' )
source=(http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads/$pkgname-$pkgver-src.tgz xend xen_Makefile.patch vsyscall-note-xen.S.patch)
install=('xen.install')
build() {
cd $startdir/src/$pkgname-$pkgver
# patch to build full xen kernel with all modules
patch < ../xen_Makefile.patch
# patch vsyscall-note-xen.S to get it working with ArchLinux
patch -p0 < ../vsyscall-note-xen.S.patch
make world
cp -a $startdir/src/$pkgname-$pkgver/dist/install/* $startdir/pkg
mv $startdir/pkg/etc/init.d $startdir/pkg/etc/rc.d
mv $startdir/pkg/usr/lib/python $startdir/pkg/usr/lib/python2.4
install -m0755 $startdir/src/xend $startdir/pkg/etc/rc.d/xend
_kernver=`find . -name linux-2.6.*-xen | sed 's|./linux-||'`
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}
# copy files necessary for later builds, like nvidia and vmware
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/Module.symvers $startdir/pkg/usr/src/linux-${_kernver}/
cp -a $startdir/src/$pkgname-$pkgver/linux-${_kernver}/scripts/ $startdir/pkg/usr/src/linux-${_kernver}/
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/.tmp_versions
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/kernel
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/arch/i386/Makefile $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/arch/i386/Makefile.cpu $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/arch/i386/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/kernel/
# add headers for lirc package
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/drivers/media/video/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/
# add dm headers
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/md
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/drivers/md/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/md/
# add inotify.h
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include/linux
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/include/linux/inotify.h $startdir/pkg/usr/src/linux-${_kernver}/include/linux/
# copy in Kconfig files
cd $startdir/src/$pkgname-$pkgver/linux-${_kernver}/
for i in `find . -name "Kconfig*"`; do
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
cp $i $startdir/pkg/usr/src/linux-${_kernver}/$i
done
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/Makefile $startdir/pkg/usr/src/linux-${_kernver}/
cp $startdir/src/$pkgname-$pkgver/linux-${_kernver}/.config $startdir/pkg/usr/src/linux-${_kernver}/
cd $startdir/pkg/usr/src/linux-${_kernver}/include && ln -s asm-i386 asm
chown -R root.root $startdir/pkg/usr/src/linux-${_kernver}
md5sums=('b6ae36dcdc74c0810c0c0defaaddad9c'
'9c6b2a6dd88e4ca68689dd063ff51a72' '00dd41afa731a0f6a1bbc4cb90e75b02')
I created 2 patches to have usable package. The source code from the xen website builds linux-2.6-xen0 and linux-2.6-xenU which are development kernels - they have almost no modules except for the basic ones. One should build the kernel linux-2.6-xen that can work as xen0 or xenU and has all modules.
take a look here
http://wiki.xensource.com/xenwiki/Insta … 2.6-xen%29
under "Using the -xen kernel rather than -xen0/U"
xen_Makefile.patch
--- Makefile 2006-03-03 05:58:36.000000000 +0100
+++ Makefile.new 2006-03-09 09:17:01.000000000 +0100
@@ -2,7 +2,7 @@
# Grand Unified Makefile for Xen.
-KERNELS ?= linux-2.6-xen0 linux-2.6-xenU
+KERNELS ?= linux-2.6-xen
# You may use wildcards in the above e.g. KERNELS=*2.6*
XKERNELS := $(foreach kernel, $(KERNELS), $(patsubst buildconfigs/mk.%,%,$(wildcard buildconfigs/mk.$(kernel))) )
the second patch is to solve this problem:
http://lists.xensource.com/archives/htm … 00023.html
vsyscall-note-xen.S.patch
--- linux-2.6-xen-sparse/arch/i386/kernel/vsyscall-note-xen.S 2006-03-09 06:15:52.000000000 +0100
+++ linux-2.6-xen-sparse/arch/i386/kernel/vsyscall-note-xen.S.new 2006-03-09 09:47:37.000000000 +0100
@@ -27,6 +27,6 @@
.byte bit; .asciz name
#define NOTE_KERNELCAP_END ASM_ELF_NOTE_END
-NOTE_KERNELCAP_BEGIN(1, 1)
-NOTE_KERNELCAP(1, "nosegneg") /* Change 1 back to 0 when glibc is fixed! */
-NOTE_KERNELCAP_END
+#NOTE_KERNELCAP_BEGIN(1, 1)
+#NOTE_KERNELCAP(1, "nosegneg") /* Change 1 back to 0 when glibc is fixed! */
+#NOTE_KERNELCAP_END
besides of that you need 2 more files: xend and xen.install form AUR
http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
waldek

Similar Messages

  • I think I did something weird with foundation/server patching

    We've built many SP sites over the last 3 years.  We're now moving in to 2013.  most of our sites are 2010.
    For the old sites, both myself and my colleagues were just learning on the fly how to deploy and patch.  Over the years we've gained a better understanding of both.
    Something I've done though in the past, i don't know how it affects the deployments and I was wondering if someone could shed some light on it.
    We used SharePoint server with internet, mostly.  When patching, we saw that there were two sets of patches, foundation and server.
    We didn't have a full understanding of both but now do.  They are stand alone products.  However, we though they were component levels of the same installation, and for years we've been applying both the foundation patches, and the server patches
    right behind that.  It's worked fine.  We've never received any errors about patching.
    Now that I know better, i'm only deploying server patches to the new 2013 deployments.
    I was asked to add a 3rd server to one of our old farms.  I ran in to a patching mismatch warning when trying to join the farm.  This made me think about how we patched foundation and server even though we're running server.  One of the warnings
    was that those foundation patches were missing.
    So I restarted and used the exact same patches and it worked fine.  Still, i'm wondering what the overall impact of our old patching methods has on the product?
    My hope is that everything in SP foundation is part of SP server, so the patches I made, assuming the same level of patching, only duplicated patching effort, and there are no technical drawbacks to having patched foundation then server on the same environment.
    Anyone know?

    Hi,
    There are some different patches for SharePoint, to better understanding the different patches, I think you can have a look at the following articles which contains the different patches in SharePoint.
    Hey! Should I install this SharePoint patch?
    http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=433
    For example, the “cumulative” part means if you install the August 2012 CU you don’t need install the June 2012 CU first.
    CUs are also cumulative in the sense that the SharePoint Server patch includes the patches for SharePoint Foundation.
    The Project Server CU includes the SharePoint Server and SharePoint Foundation patches as well. You only need to install the CU for the product you have.
    This is a welcome change from SharePoint 2007 where we had to stack the patches.
    Also, CUs contains the patches for all the supported languages which is why they’re so large.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Citrix Xen Server on UCS-B with Palo Adapter

    All
    I am attempting to install Citrix Xen server (tried 5.6 and 5.5) on a UCS-B series blade running the Palo Adapter.
    During the install we are asked to install drivers.
    I used "kmod-enic-xen-1.1.1j-0.x86_64.rpm" from virtual media and it stated no drivers were found.
    I tried extrating this to .gz and further to .cpio with the same results.
    Any input or direction would be appreciated.
    Thanks in advance
    DaveO

    Cisco B-series support on Xenserver 5.6 can be found at -
    http://hcl.vmd.citrix.com/BrowsableServerList.aspx?__EVENTTARGET=&__EVENTARGUMENT=&__VIEWSTATE=%2FwEPDwUJNDE0NjI1MDY5ZBgCBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WBQUiY3RsMDAkY3BoTGVmdCRQcm9kdWN0TmFtZVNlbGVjdGlvbgUlY3RsMDAkY3BoTGVmdCRQcm9kdWN0RWRpdGlvblNlbGVjdGlvbgUlY3RsMDAkY3BoTGVmdCRQcm9kdWN0VmVyc2lvblNlbGVjdGlvbgUjY3RsMDAkY3BoTGVmdCRTZXJ2ZXJWZW5kb3JTZWxlY3Rpb24FIWN0bDAwJGNwaExlZnQkRm9ybUZhY3RvclNlbGVjdGlvbgUdY3RsMDAkY3BoTWFpbiRTZXJ2ZXJMaW5rVGFibGUPPCsACgEIAgFktUOxaVqPQ0ve39xhDIByQCg50Ys%3D&ctl00%24cphLeft%24ProductEditionSelection=&ctl00%24cphLeft%24ProductVersionSelection=5.6.0&ctl00%24cphLeft%24ProductVersionSelection=5.5.0&ctl00%24cphLeft%24ServerVendorSelection=Cisco+Systems&ctl00%24cphLeft%24FormFactorSelection=&ctl00%24cphLeft%24ctl00=Apply+Filters
    Palo or CIsco VIC is not currently supported on XenServer 5.6, we are currently engaged with Citrix to add that support, timelines unknown at this point.
    Qlogic CNA (M71KR-Q) and EMulex CNA (M71KR-E) both work fine with XS 5.6

  • Upgrading both SharePoint 2010 server and DB server with latest available patch

    We have 2 servers in the farm ( SharePoint server and Database server)
    We are planning to patch the database server and SharePoint server as well at the same time.
    For this activity I have found some ways :
    Way 1:  
    First I will do the patching in SP server and run the configuration wizard.
    Once it's finished , I will shutdown the SP server.
    Start patching in SQL server
    After done in Sql server , I will restart the SP server.
    Way 2:
    First I will do the patching in SP server and run the configuration wizard.
    Once it's finished , I will disconnect the SP server from SQL server by using the configuration wizard.
    Start patching in SQL server
    After done in Sql server , I will reconnect both the server's.
    Way 3:
    I don't follow any one of the above ways. Simply patch both the server's one by one (Here might be, when we do the DB server patch upgrade database connection failed entries will be track into event viewer because of DB server unavailability )
    Here my questions are :
    If disconnect the server's from each other , can I reestablish the connection again ?? Is there that option ???
    Is it compulsory to disconnect / shutdown the SP server while patching in DB server ???????
    Suppose I don't follow any of the above way , cause any issues ?????
    If any DB connection related entries will track into Event Viewer, is this cause any issues ?????
    Any suggestions would be appreciated.
    RameshNK

    Patching order will not matter. You also do not necessarily have to shutdown SharePoint while patching SQL. Yes, SharePoint will throw errors in the Event Log and ULS log.
    I might suggest patching SQL Server first, simply because it is quick and in my experience, "safe". That is, the patching process works and works well. It is unlikely you'll come out with an unserviceable SQL Server instance.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • 10.1.3.3 patch set 3 compatible with Win2003 server?

    Oracle® Application Server Patch Set Notes
    10g Release 3 (10.1.3) Patch Set 3 (10.1.3.3.0) for Linux and Microsoft Windows
    Is this compatible/certified for both Windows XP and Windows 2003 server? My dba/sysadmin wants to know this before we even install.

    Hi,
    First, yes it is certified, see [http://www.oracle.com/technology/software/products/ias/files/oracle_soa_certification_r3_10.1.3_matrix.xls] for all certification information. But i would install 10.1.3.4 right away instead of installing 10.1.3.3. It has a lot of bug fixes in it.
    Kind Regards,
    Andre

  • SDM agent is not registered with SDM server of Solution Manager server

    Hi,
    We are in process of configuring EWA report for JAVA stack of SAP system along with ABAP stack. For ABAP stack the EWA report generation is straight forward and it is working fine. We are facing the problem while configuring EWA report for JAVA stack. Pls. find below the steps that we have followed and currently where we are stuck,
    1) Installation of Willy introscope on Solman server.
    2) Define JAVA component for each SAP system in SMSY
    3) Installation of SDM Agent on all managed systems
    4) Trying to attach SDM Agent to SDM server(solman) with the use of smdsetup.bat (managingconf & sldconf ).still we are getting error in smd agent log file as given below:
    ===============
    Nov 24, 2011 6:16:09 PM [Thread[Connector,5,main]] Info       [p4://xxxx.xxxx.int:8103] Checking server availability...
    Nov 24, 2011 6:16:39 PM [Thread[Connector,5,main]] Error      Failed to connect to SMD server - user: SMD_ADMIN
    Nov 24, 2011 6:16:39 PM [Thread[Connector,5,main]] Warning    Connecting to SMD server p4://xxx.xxx..int:8103 failed - error counter: 0 - com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.interfaces.cross.DestinationException: cannot establish connection with any of the available instances
    *     Nested exceptions are:*
    *     com.sap.engine.services.rmi_p4.P4IOException: Cannot open connection on host: xx.xx.xx.xx and port: 8103*=================
    5) The solman_setup t-code execution is successful in Solman server.
    6)  Trying to configure Technical system for JAVA system type through solman_setup : At this time we are getting another error as shown below:
    ========
    The Managed System does not fulfil the Diagnostics prerequisites
    Software with prerequisite are incorrect: Found SAP J2EE ENGINE 7.00 with sp level 0, minimum sp level required is 9: Please install or upgrade the required software component.========
    I have gone through the SAP note: 1274287 : My solman system is already on the required patch level for LMservice and St 400 SP. Also, the managing systems Java patch level is more then sp06 which is minimum level required.
    I need your help to know, why i am getting this SAP J2EE ENGINE 7.00 patch level error although my Java stack is up to date with the required patches.
    Waiting for your reply friends.
    Regards,

    Hi,
    please let us know your solman version.
    check and apply the sap note
    [Note 1277258 - Diagnostics prerequisite check failure|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1277258]
    Thanks,
    Jansi

  • Error in Communicating with DCR Server LMS 4.0

    I´m receiving this error when I try do add a device in isolated form or by discovery:
    Error in communicating with DCR Server.
    DCR Server may be down. Please start the DCR Server and then refresh the page.
    I am using windows 2008 standard server RC1 SP1, and CiscoWorks LMS 4.0.
    I had applied all of patches includes.
    The DCRserver is running. ( I did restart it)

    You're using Windows 2008 RC1 (a release candidate version)?  LMS is only supported on the final shipping version of Windows 2008, and not yet on R2.
    If you're running on the final version of 2008 server, post the output of the pdshow command as well as the dcr.log, DCRServer.log, NMSROOT/MDC/tomcat/logs/stdout.log and stderr.log.

  • Dispatcher stopped and not able to connect with sql server

    Hi ,
                       In one of test system disp+work is started and then within no time its stopped.
    I am able to connect with  sql server 2005 database but while starting sap  dispatcher is stopping.
    Here is the log of  dev_wo
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Jan 05 07:24:02 2012
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\DE1\SYS\exe\uc\NTI386\dbmssslib.dll' ...
    B  Library 'C:\usr\sap\DE1\SYS\exe\uc\NTI386\dbmssslib.dll' loaded
    B  Version of 'C:\usr\sap\DE1\SYS\exe\uc\NTI386\dbmssslib.dll' is "700.08", patchlevel (0.72)
    B  New connection 0 created
    M sysno      11
    M sid        DE1
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    75
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        988
    M
    M  kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 988) [dpxxdisp.c   1299]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          23936     (1408)
    M  DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1440)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 07F90040, size: 4659000)
    M  DpShMCreate: allocated sys_adm at 07F90040
    M  DpShMCreate: allocated wp_adm at 07F91E40
    M  DpShMCreate: allocated tm_adm_list at 07F97BC0
    M  DpShMCreate: allocated tm_adm at 07F97BF0
    M  DpShMCreate: allocated wp_ca_adm at 08366E90
    M  DpShMCreate: allocated appc_ca_adm at 0836CC50
    M  DpShMCreate: allocated comm_adm at 0836EB90
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 083EFA50
    M  DpShMCreate: allocated gw_adm at 083EFA90
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 083EFAC0
    M  DpShMCreate: allocated wall_adm at 083EFAC8
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Thu Jan 05 07:24:03 2012
    M  ThInit: running on host sugarland

    M Thu Jan 05 07:24:04 2012
    M  calling db_connect ...
    C  Warning: Env(MSSQL_SERVER) [SUGARLAND\DE1] <> Prof(dbs/mss/server) [SUGARLAND]. Profile value will be used.
    C  Thread ID:708
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'C:\usr\sap\DE1\SYS\exe\uc\NTI386\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      72
    C    patchcomment MSSQL: Thread check in DbSlDisconnect (969143)
    C  np:(local) connection used on SUGARLAND
    C  CopyLocalParameters: dbuser is 'de1'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.

    C Thu Jan 05 07:24:19 2012
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login timeout expired
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Login timeout expired
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), Named Pipes Provider: Could not open a connection to SQL Server [2].
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.

    C Thu Jan 05 07:24:34 2012
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login timeout expired
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Login timeout expired
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), Named Pipes Provider: Could not open a connection to SQL Server [2].
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.

    C Thu Jan 05 07:24:49 2012
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login timeout expired
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Login timeout expired
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), Named Pipes Provider: Could not open a connection to SQL Server [2].
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  failed to establish conn to np:(local).
    C  Retrying without protocol specifier: (local)
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.

    C Thu Jan 05 07:25:05 2012
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login timeout expired
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Login timeout expired
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), Named Pipes Provider: Could not open a connection to SQL Server [2].
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.

    C Thu Jan 05 07:25:21 2012
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login timeout expired
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Login timeout expired
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), Named Pipes Provider: Could not open a connection to SQL Server [2].
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.

    C Thu Jan 05 07:25:37 2012
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login timeout expired
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Login timeout expired
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), Named Pipes Provider: Could not open a connection to SQL Server [2].
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  failed to establish conn. 0
    B  ***LOG BY2=> sql error 0      performing CON [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> <message text not available> [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 0      performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> <message text not available> [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1411]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10156]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = V-1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sugarland_DE1_11 on host sugarland (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Jan 05 07:25:37 2012
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10354
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 988) [dpnttool.c   327]
    Please help me on this
    Thanks
    Srikanth

    Hi Amit, 
                 I restarted the system but dispatcher still in same stage.
    Here is the log for dev_w0
    ========================================
    Fri Jan 06 03:41:06 2012
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login timeout expired
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Login timeout expired
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 2, sev 0), Named Pipes Provider: Could not open a connection to SQL Server [2].
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  failed to establish conn. 0
    B  ***LOG BY2=> sql error 0      performing CON [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> <message text not available> [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 0      performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> <message text not available> [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1411]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10156]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = V-1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sugarland_DE1_11 on host sugarland (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Fri Jan 06 03:41:06 2012
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10354
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3632) [dpnttool.c   327]

  • Memory leak issue with link server between SQL Server 2012 and Oracle

    Hi,
    We are trying to use the linked server feature with SQL Server 2012 to connect SQL server and Oracle database. We are concerned about the existing memory leak issue.  For more context please refer to the link.
    http://blogs.msdn.com/b/psssql/archive/2009/09/22/if-you-use-linked-server-queries-you-need-to-read-this.aspx
    The above link talks about the issues with SQL Server versions 2005 and 2008, not sure if this is still the case in 2012.  I could not find any article that talks about if this issue was fixed by Microsoft in later version.
    We know that SQL Server process crashes because of the third-party linked server provider which is loaded inside SQL Server process. If the third-party linked server provider is enabled together with the
    Allow inprocess option, the SQL Server process crashes when this third-party linked server experiences internal problems.
    We wanted to know if this fixed in SQL Server 2012 ?

    So your question is more of a information type or are you really facing OOM issue.
    There can be two things for OOM
    1. There is bug in SQL Server which is causing the issue which might be fixed in 2012
    2. The Linked server provider used to connect to Oracle is not upto date and some patch is missing or more recent version is to be used.  Did you made sure that you are using latest version.
    What is Oracle version you are trying to connect(9i,10g, R2...)
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Hidden Contact Subfolders are visible on iPhone after sync with Exchange Server 2007

    Hello,
    We have encountered an issue where synchronizing the iPhone with Contacts from an Exchange Server 2007 mailbox, causes hidden contact subfolders (from Outlook) to be visible and appear in the Groups list in the Contacts App on the iPhone.  This does not occur with Exchange Server 2010 mailboxes.
    We have a 3rd party application that creates hidden subfolders in the default Contacts folder on Exchange Server 2007 mailboxes.  The hidden folders do not display in the Outlook client, Blackberry or on an Android phone.  We did see that they were showing up in Outlook Web Access until we applied this Microsoft Exchange Server 2007 Service Pack 3 Rollup 2 patch unto the Exchange server:
    http://support.microsoft.com/kb/2210042 - A sub contact folder is still visible after you set the "PR_ATTR_HIDDEN" attribute to "True" in an Exchange Server 2007 environment.
    After the patch was applied, the hidden contacts do not show up anywhere else.  However, when we synced the mailbox to an iPhone and synced existing contacts, all of the hidden folders appear in the Contact Groups list.  Is there a way to hide the hidden sub contact folders on the iPhone and prevent them from appearing in the Contact Group lists?
    Any help provided would be most appreciated.
    Thanks and Best Regards

    Hi SBuchan,
    I have an open case with Microsoft about it.  It is an issue with ActiveSync in Exchange 2007 that sends the hidden objects.  Microsoft tried to resolve this in Exchange 2010 by sending a delete message after sending the hidden objects to remove them from the device.  Am awaiting to see if they will approve a design change to Exchange 2007 ActiveSync to prevent the synching of hidden objects.

  • Connecting to XEN Server

    Trying to connect an XServe RAID to a XEN Server. There is a QLogic 5600 SAN box in between. I can see the XServe on both HBAs, but it reports 0 LUNs in the QLogic CLI. The XServe admin says that is because how he set it up and that I should not need to see any to attach to it. When the qla2xxx module loads, it detects the XServe and adds it as sg0 and sg3 as type 0. From what I've seen elsewhere on the net, it should be attaching the two paths as different drives. Should I be seeing LUNs on the XServe?
    from dmesg:
    qla2400 0000:14:00.0:
    QLogic Fibre Channel HBA Driver: 8.01.07.15
    QLogic HPAE312A -
    ISP2432: PCIe (2.5Gb/s x4) @ 0000:14:00.0 hdma+, host#=2, fw=4.00.26 IP
    Vendor: APPLE Model: Xserve RAID Rev: 1.51
    Type: Direct-Access ANSI SCSI revision: 05
    qla2400 0000:14:00.0: scsi(2:0:0:0): Enabled tagged queuing, queue depth 32.
    Vendor: IBM Model: ULTRIUM-TD3 Rev: 7AP1
    Type: Sequential-Access ANSI SCSI revision: 03
    qla2400 0000:14:00.0: scsi(2:0:1:0): Enabled tagged queuing, queue depth 32.
    Vendor: EXABYTE Model: MAGNUM 224 Rev: C240
    Type: Medium Changer ANSI SCSI revision: 04
    qla2400 0000:14:00.0: scsi(2:0:1:1): Enabled tagged queuing, queue depth 32.
    ACPI: PCI Interrupt 0000:14:00.1 -> GSI 18 (level, low) -> IRQ 18
    qla2400 0000:14:00.1: Found an ISP2432, irq 18, iobase 0xf0030000
    qla2400 0000:14:00.1: Configuring PCI space...
    PCI: Setting latency timer of device 0000:14:00.1 to 64
    qla2400 0000:14:00.1: Configure NVRAM parameters...
    qla2400 0000:14:00.1: Verifying loaded RISC code...
    ts: Compaq touchscreen protocol output
    qla2400 0000:14:00.1: Allocated (64 KB) for EFT...
    qla2400 0000:14:00.1: Allocated (1413 KB) for firmware dump...
    qla2400 0000:14:00.1: Waiting for LIP to complete...
    scsi 2:0:0:0: Attached scsi generic sg0 type 0
    scsi 2:0:1:0: Attached scsi generic sg1 type 1
    scsi 2:0:1:1: Attached scsi generic sg2 type 8
    st: Version 20050830, fixed bufsize 32768, s/g segs 256
    st 2:0:1:0: Attached scsi tape st0
    st0: try direct i/o: yes (alignment 512 B)
    qla2400 0000:14:00.1: LIP reset occured (f8f7).
    qla2400 0000:14:00.1: LIP occured (f8f7).
    qla2400 0000:14:00.1: LIP reset occured (f7f7).
    qla2400 0000:14:00.1: LOOP UP detected (4 Gbps).
    qla2400 0000:14:00.1: Topology - (F_Port), Host Loop address 0x0
    scsi3 : qla2xxx
    qla2400 0000:14:00.1:
    QLogic Fibre Channel HBA Driver: 8.01.07.15
    QLogic HPAE312A -
    ISP2432: PCIe (2.5Gb/s x4) @ 0000:14:00.1 hdma+, host#=3, fw=4.00.26 IP
    Vendor: APPLE Model: Xserve RAID Rev: 1.51
    Type: Direct-Access ANSI SCSI revision: 05
    qla2400 0000:14:00.1: scsi(3:0:0:0): Enabled tagged queuing, queue depth 32.
    scsi 3:0:0:0: Attached scsi generic sg3 type 0
    The device info on both ports is as follows:
    HBA 0: HPAE312A Port 1 WWPN 50-01-43-80-01-33-5B-DC Port ID 01-0E-00
    Path : 0
    Target : 0
    Device ID : 0x81
    Product Vendor : APPLE
    Product ID : Xserve RAID
    Product Revision : 1.51
    Serial Number : 1.51
    Node Name : 50-00-39-30-00-02-0C-47
    Port Name : 60-00-39-30-00-02-0C-47
    Port ID : 01-01-00
    Product Type : Disk
    Number of LUN(s) : 0
    Status : Online

    On 10/07/2013 15:26, chas wrote:
    > Downgrade of kernel fixed the nss fault, and traced the iSCSI fault to
    > the XEN server. Posted solution on the SUS sles11 board.
    As noted in TID 7012634 which Thomas (thsundel) posted, a newer
    kernel-xen has now been released which addresses this issue.
    HTH.
    Simon
    Novell Knowledge Partner
    Do you work with Novell technologies at a university, college or school?
    If so, your campus could benefit from joining the Technology Transfer
    Partner (TTP) program. See novell.com/ttp for more details.

  • Failing - SQL Server Patch Installation

    Hi Team:
    We are trying to install SQL Server Patch --> SQL Server 2012 SP1 CU3 --> KB2812412 but it is failing with the below issue (error message find in screen shot)
    Our Database Engine is running with --> SQL Server 11.0.3350
    SSAS is running with --> SSAS 11.0.21600.60
    Please through some lights on this...
    Thanks,
    Satish Kumar.
    Thanks, Satish Kumar. Please mark as this post as answered if my anser helps you to resolves your issue :)

    Hi Team:
    We are trying to install SQL Server Patch --> SQL Server 2012 SP1 CU3 --> KB2812412 but it is failing with the below issue (error message find in screen shot)
    Our Database Engine is running with --> SQL Server 11.0.3350
    SSAS is running with --> SSAS 11.0.21600.60
    Please through some lights on this...
    Thanks,
    Satish Kumar.
    Thanks, Satish Kumar. Please mark as this post as answered if my anser helps you to resolves your issue :)
    Hello Satish,
    I guess when you installed SP1 for SQL server 2012 you missed  to apply for Analysis service .Now what you have to do is first run SQL serevr 2012 SP1 setup and update Anaysis service to latest SP i.e SP1 .After you are done with SP1 installation for
    Analysis service then proceed with SQL server 2012 CU3 installation
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • JTDS not connecting with SQL Server 2008 R2 SP2 + SSL with Java 6 U34-35

    Environment:
    Windows 7 Pro 32-bit
    SQL Server 2008 R2 SP2 (Forced Encryption = Yes, No Certificate provided to server)
    Java 6 Update 27-35 and Java 7 Update 2-7
    jTDS 1.2.2 and 1.2.6
    Under the following setup, our Java application is able to connect to the SQL Server database:
    - SQL Server 2008 R2 SP2
    - Java 6 Update 27-33 or Java 7 Update 2-5
    just switching the JVM to the following would cause the application to be unable to connect to the database:
    - Java 6 Update 34 or 35, or Java 7 Update 6 or 7
    Browsing through the Java 6 Update 34 release notes, it looks like nothing big was changed, so I'm wondering what has changed with Java 6 U34 and Java 7 U6. I was also looking through a packet sniffer, and indeed the behavior of Java 6 Update 33 and lower was different from Java 6 Update 34 (although I couldn't understand the messages being passed, the number of connections and messages were different).
    * This is different from the issue with Java 6 Update 29-30 and Java 7 wherein they were patched for the BEAST SSL vulnerability. That was fixed with the SP2 patch for SQL Server 2008 R2, and for SQL Server 2008 you'd need a hotfix aside from SP3. After patching the server with those updates, Java 6 Update 29-33 and Java 7 U1-5 should be able to connect to the database.
    * If I do switch off Force Encryption, all Java versions are able to connect to the database.
    Edited by: user1357749 on Oct 12, 2012 1:20 AM

    Hi,
    It's four months later, but my colleague and I have reproduced the same behavior in both our commercial product, and a very simple example class. It's exactly as you describe it, where the latest versions of both Java 6 and 7 (and several previous versions) hang during the first jTDS SQL query to the DB (immediately after the SSL and handshake). It also happens with the Microsoft JDBC driver.
    If you disable the BEAST SSL fix (-Djsse.enableCBCProtection=false), then the connections work without any problems. So, while this is different from the original BEAST SSL problem and subsequent fix, it really seems like some additional changes were made to the fix in a later Java release that broke things.
    My colleague has filed a bug with Oracle, and is awaiting a response. We also filed a bug at the jTDS project (#690 - http://sourceforge.net/p/jtds/bugs/690/) that has simple reproduction steps. A contributer at the jTDS project agrees that this seems to be a problem with the JRE, and is not specific to jTDS.
    I hope that Oracle will address this issue soon. We need to periodically update the JRE due to vulnerabilities, and we need to have SSL for our JDBC connections for security reasons. This bug puts us and others in a difficult position.

  • Proxy Server 3.6 with Identity Server 5.1!

    Hi All,
    I'm doing a Proof of Concept on integrating Identity Server 5.1 with proxy server 3.6. The proxy server is configured as a reverse proxy for another web server (since the web server is not supported by agent pack).
    I've configured the reverse proxy and add the agent to the proxy. However, each time after auth. in the Identity server and return back to the reverse proxy, it'll go to http://rproxy.domain.com/.domain.com not http://rproxy.domain.com.
    Moreover, even the user session is invalid, the user can go to the reverse proxy without re-auth even I've disable all the cache in the proxy server.
    Is it possible to use reverse proxy with identity server? If yes, how to config?
    Thanks
    Clive Chan

    Hi Clive Chan,
    i am also have the same problem, can you tell me which patch have you add to solve the problem?
    Thanks a lot!
    Angus

  • RH Server 9 compatibility with Windows Server 2008 SP2/SQL Server

    Our tech support people are preparing for a first install of RH Server 9. They have asked me to find out whether there is a recent patch that would enable it to work with Windows Server 2008 SP2 64 bit and MS SQL Server 2008.
    If there is not yet a patch, will there be one for this OS/DB combination in the future, and when?
    This is in reference to the knowledgebase article at http://kb2.adobe.com/cps/884/cpsid_88483.html which gives a "not recommended" status to this combination.
    Our infrastructure team would prefer to use this combination if it is possible.
    Second question from the tech team: Do we need to separate the RoboHelp application from the database or can they both reside on the same server?

    To answer your first question, no there is no patch to allow SQL Server 2008 to run on a 64 bit server. To answer your second question, I don't know. This is a user to user forum and therefore we are not party to any discussions on when or if a patch will be released. You could sumbit a feature request which the Adobe RoboHelp Product Manager will get. This will help advance your case. You can submit it here:
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

Maybe you are looking for

  • National characters (code page) problem

    I made JSP page with code page 1250 with characters specific to this code page. In JDeveloper everything looks OK. Compiled page (Java file) also shows good, but when I open it in Web browser all national characters are lost (question marks instead o

  • Multiple selection screen is blank in screen personas SP2..

    Hi, When i click on multiple selection button, in the next pop-up screen getting blank data. Unable to enter the values to execute the transaction. Please suggest.. Regards, Govind

  • EXPORT & IMPORT Memory ID

    Hi experts. I have a strange problem: Within the PI-Sheet I get a serial number and activate a FM that has the following command: EXPORT LWA_SERIAL-SERIALNO TO MEMORY ID 'SER'. (LWA_SERIAL-SERIALNO has the requested value). At the end of the process

  • Bapi function module for clearing

    Hi,   This is pravakar ,Any body can help me  is their any function module  in BAPI for clearing the invoice?

  • How to recover iphone settings after crash iOS 7.1.1

    installation of 7.1.1 crashed and iphone is now demanding to run recovery procedure via itunes. However, i cannot find any recovery option via itunes...