Target connection & compatible

dear frnds
1 )how can we connect using rman to target database with sys.We can connect sys directly in server or through OEM.
whehter it is possible to connect
rman> target sys/pass@test catalog rman/rman@rccat
2 ) one more thing i am confiruging rman repoistory database(win2k oralce 9.2.0.1) on windows to connect unix server
(solaris 9,oralce 9.2.0.3).Is there any problem if i using
rman version lower thn target database version.
3 )How can i set NLS_LANG and NLS_DATE_FORMAT variables in windows.Whter its necessary
thanks in advance
shyam

thnks frnd i had few more queries
1) if i using windows server as repository for database in solaris server.How can i set NLS_DATE_FORMAT in windows.
We can set NLS_LANG.
2) If i configure retenion policy for 7 days (recovery window for 7 days).I am not using delete absoulte or
shall i use 8 days before backup.whtehter its valid if i am keeping the catalog without deleting

Similar Messages

  • Hyperlink target connects from Outlook e-mail to file in Oracle database

    Greetings.
    Due to lack of permissions, I cannot create text file on the UNIX server.
    This will not be changed.
    I have stored the file in the Oracle 11g database.
    I want to send e-mail from PL/SQL with attached file.
    No UNIX scripts at all.
    It is a big file.
    Thought crossed my mind.
    Can I send e-mail from PL/SQL containing a hyperlink which connects to the file stored in the Oracle database ?
    The link target is a file stored in the Oracle database.
    Has anyone done this before?
    Let me know your ideas.
    Thank you.

    Oracle Freq wrote:
    I want to send e-mail from PL/SQL with attached file.
    No UNIX scripts at all.Can be done using UTL_SMTP or the newer UTL_MAIL.
    Attachments to e-mails are just that - the contents of the file is attached to the body of the mail. The mail arrives at its destination, the mail reader recognises the attachment and enables it to be saved to disk (or opened/viewed).
    This is standard stuff.. see MIME for details on how to construct a message body that includes attachments.
    Can I send e-mail from PL/SQL containing a hyperlink which connects to the file stored in the Oracle database ?
    The link target is a file stored in the Oracle database.Yes. You need a web server that has been configured with Oracle "+access+" - the default is using Oracle's Apache server that includes a module called mod_plsql. This module enables the web browser to use a URL that refers to a web enabled PL/SQL procedure in a specific database schema - and pass parameters (as part of the URL's query string) to the procedure.
    You can also use Oracle EPG (Extended Procedural Gateway I think is what the acronym means). This provides a web server directly inside the Oracle instance via the XDB (integrated XML database) option in Oracle. It too has a mod_plsql type module that provides an interface (via http) to web enabled PL/SQL procedures.
    This procedure can be a "+document download+" procedure. Oracle provides a system procedure called WPG_DOCLOAD.download_file()+ that you can use inside that web enabled PL/SQL procedure. This will return the contents of blob/clob as a "file" to the web browser.
    For example, a download web-enabled procedure will simplistically look something as follows:
    create or replace procedure downloadFile( fileName varchar2 ) is
            b       blob;
            mimeType varchar2(50);
    begin
            select
                file_content, mime_type  into b, mimeType
            from my_documents where file_name = fileName;
            OWA_UTIL.mime_header( mimeType, false );
            HTP.p('Content-Length: ' || DBMS_LOB.getlength(b));
            OWA_UTIL.http_header_close;
            WPG_DOCLOAD.download_file( b );
    end;The URL will look something like:
    http://my-webserver.my-domain.com:7777/pls/ora/scott.downloadfile?filename=somefile.docwhere:
    scott.downloadfile = name of PL/SQL procedure
    filename=somefile.doc = parameter name values to pass to procedure

  • Configure Target - connection failed

    Hello,
    I have installed 11g Enterprise Manager Grid Control and deployed an agent using the silent install option on a second machine. Once the agent installation completed, it's Oracle 11g Database instances got picked up by EM. The problem is that when I attempt to configure the recognized instance I get the following:
    "Error occurred while getting information for the specified target. Possible reasons include: the target doesn't exist; connection to the target failed."
    looking at the emoms.trc:
    2010-12-10 13:52:53,804 [EMUI_13_52_11_/console/database/instance/sitemap] WARN  perf.sgatarget _getTargetVersionCategory.268 - Failed to get target versionjava.net.ConnectException: Connection timed out: connect
    2010-12-10 13:53:27,002 [EMUI_13_53_05_/console/database/config] ERROR perf.sitemap initialize.291 - CommException: error while getting target info from the repository
    2010-12-10 13:53:27,002 [EMUI_13_53_05_/console/database/config] ERROR perf.sitemap initialize.292 - oracle.sysman.emSDK.emd.comm.CommException: java.net.ConnectException: Connection timed out: connect
    oracle.sysman.emSDK.emd.comm.CommException: java.net.ConnectException: Connection timed out: connect
    2010-12-10 13:53:27,002 [EMUI_13_53_05_/console/database/config] ERROR perf.sitemap logStackTrace.2426 - oracle.sysman.emSDK.emd.comm.CommException: java.net.ConnectException: Connection timed out: connectNow I've had problems with closed ports in this environment before, is it possible that there needs to be another port open for this configuration? If so, which ports do I need to watch out for (considering the default values)?
    Thanks.

    When checking the agent status you will see what ports are used for communication between the Agent
    Check the output of AGENT_HOME/bin/emctl status agent
    Regards
    Rob
    http://oemgc.wordpress.com

  • Reg Target connection failed from catalog

    Hi,
    i am configuring RMAN in my PROD.
    I have seperate catalog database.
    I have added the TNS Entry of both in PROD and CATALOG Server.
    TNSPING from both server is working.
    I have created the password file in PROD.
    When i issue the command
    rman catalog rman/rman target sys/sys@PROD it gives below error.
    RMAN-04005: error from target database:
    ORA-01017: invalid username/password; logon denied
    But when i give
    sqlplus sys/sys@PROD
    it is getting connected.
    One more thing already a test database is registered in the catalog as target.
    Is there any Restriction that only one target can be registered in catalog.
    If so how to deregister the existing target database.
    Kindly help in this regard.
    Regards
    Krishna

    refer the link: i already mentioned:
    Whether if i register the database using the second scenario then if try to connect using first ,will it work?you can connect with any database from rman, but why? no need, you can directly connect with recovery catalog from target.
    you can get the backup information only from registered recovery catalog database.
    IF i deregister the existing target database say TEST will the backup list of TEST will be removed automatically.yes, all information from recovery catalog is removed.
    why you get confusion, register a database with recovery catalog is very simple
    1. create a recovery catalog user and grant recovery catalog owner role to user.
    2. connect the target database with the recovery catalog database
    3. register the database with the recovery catalog database.
    4. connect as recovery catalog datbase user and verify it using rc_database recovery catalog view.
    refer the link i already mentioned.
    else:
    http://arjudba.blogspot.com/2008/05/how-to-create-recovery-catalog-and-use.html
    Edited by: rajeysh on Jul 14, 2010 11:47 AM

  • Target connection at launch

    Concern: VBAI2009, 2010 + Target (EVS RT, smart cam)
    Hi,
    I use NI target with VBAI 2010 on a vision system. When I launch the vision system, VBAI is opening on the home page (see picture) but I would like that VBAI connect directly on the smart camera (and open the inspection interface). Is it possible?
    thanks for your help.
    Solved!
    Go to Solution.

    Good day Mr. Brad,
    Why isn't "\inspect" working for me? When I access "C:\Program Files\National Instruments\Vision Builder AI 2010\Vision Builder.exe" it directs me toward the VBAI Welcome screen but when I add the "\inspect" in the command line, it gives me an error specified in the attached image. Thanks
    Sincerely,
    Andrei K.
    Attachments:
    Run Inspection error.PNG ‏14 KB

  • Target connection not established

    Hi,
    After deployment the target table and package script is getting created in repository rather than target.
    Plzs help..
    Thanks

    You target module has a location associated with it. When you deployed you were prompted to 'register' this location by providing the username, password, host, port and DB service name. This is where target tables and mappings will be created. I suspect you might have provided the wrong credentials when you registered your location. Test this by creating another location, associating the target module with this new location (Properties -> Location) and deploying again, this time entering the correct info when prompted to register the new location.
    Nikolai

  • Backup-Based Duplication with a Target Connection

    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/21/2013 11:03:04
    RMAN-06136: ORACLE error from auxiliary database: ORA-01503: CREATE CONTROLFILE failed
    ORA-01990: error opening password file '/u01/app/db9i/OraHome9i/dbs/orapw'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    My instance name is admi in auxliary and admi in target (source). Should I create a password file on auxiliary?

    Additionally execute next:
    At Auxiliary:
    [oracle@preprod ~]$ env | egrep 'PWFILE|ORACLE_SID'
    ORACLE_SID=admi
    [oracle@preprod ~]$ env | egrep 'PWFILE|ORACLE' | sort
    ORACLE_BASE=/u01/app/db9i/
    ORACLE_HOME=/u01/app/db9i/OraHome9i
    ORACLE_SID=admi
    At Source:
    [oracle@bdnewprod dbs]$ env | egrep 'PWFILE|ORACLE_SID'
    ORACLE_SID=admi
    [oracle@bdnewprod dbs]$ env | egrep 'PWFILE|ORACLE' | sort
    ORACLE_BASE=/u01/app/db9i/
    ORACLE_HOME=/u01/app/db9i/OraHome9i
    ORACLE_SID=admi
    What could be wrong.

  • Conference Connection compatible with UC 7?

    I can't seem to find this information anywhere, does anyone know if Cisco Conference Connection is compatiable with UC 7?

    No, it's not
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/compat/ccmcompmatr.html#wp50165
    HTH
    java
    If this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • Unable to connect to hardware target in Vivado

    I have Vivado 2015.1 running on Ubuntu Linux 64-bit with a Nexys4 DDR board. I've got the board set up to be programmed using the JTAG (see attached image). Running dmesg on the Linux system I see:
    [99537.226929] usb 1-1.2: Product: Digilent USB Device
    [99537.226932] usb 1-1.2: Manufacturer: Digilent
    [99537.226935] usb 1-1.2: SerialNumber: xxxxxxxx
    [99537.229557] ftdi_sio 1-1.2:1.0: FTDI USB Serial Device converter detected
    [99537.229631] usb 1-1.2: Detected FT2232H
    [99537.230127] usb 1-1.2: FTDI USB Serial Device converter now attached to ttyUSB0
    [99537.232437] ftdi_sio 1-1.2:1.1: FTDI USB Serial Device converter detected
    [99537.232483] usb 1-1.2: Detected FT2232H
    [99537.232819] usb 1-1.2: FTDI USB Serial Device converter now attached to ttyUSB1
    I know hw_server is running as I can telnet to port 3121. In the tcl console I have done disconnect_hw_server and connect_hw_server. I do Connect Hardware Target, choose Local Target, but then I see:
    [Labtoolstcl 44-26] No hardware targets exist on the server [TCP:localhost:3121]
    Check to make sure the cable targets connected to this machine are properly connected
    and powered up, then use the disconnect_hw_server and connect_hw_server commands
    to re-register the hardware targets.
    As a Linux user, I am in the dialout group and I can open /dev/ttyUSB0 and /dev/ttyUSB1 with minicom. Can someone with a Nexys4 board let me in on the secret! I can keep programming bitstreams using a USB key, but it would be much easier to use the JTAG across the USB cable.
    Many thanks, Warren
    P.S Hopefully my last question for a while.

    Thanks aher for pointing that web page. On my Ubuntu 15.04 Linux box, as the root user I did this:
    # cd /opt/Xilinx/Vivado/2015.1/data/xicom/cable_drivers/lin64/install_script/install_drivers
    # ./install_drivers
    The install script creates the file /etc/udev/rules.d/52-xilinx-pcusb.rules with contents:
    # version 0002
    ATTR{idVendor}=="03fd", ATTR{idProduct}=="0008", MODE="666"
    ATTR{idVendor}=="03fd", ATTR{idProduct}=="0007", MODE="666"
    ATTR{idVendor}=="03fd", ATTR{idProduct}=="0009", MODE="666"
    ATTR{idVendor}=="03fd", ATTR{idProduct}=="000d", MODE="666"
    ATTR{idVendor}=="03fd", ATTR{idProduct}=="000f", MODE="666"
    ATTR{idVendor}=="03fd", ATTR{idProduct}=="0013", MODE="666"
    ATTR{idVendor}=="03fd", ATTR{idProduct}=="0015", MODE="666"
    After rebooting my box, I started up Vivdado, created a bitstream, went to the Hardware Manager and found that I have a xc7a100t_0 device on localhost. I was able to send the bitstream down to my Nexys4 DDR board.
    Cheers & thanks again, Warren

  • Can not connect to server when open new hardware target in Vivado 2014.2

    hardware manager -> open a new hardware target-> connect to local server, and then the software stay connecting server, if i click cancel, it stay "canceling, please wait..."
    at the same time, process of vcse_server and hw_server can be found in task manger, and the ISE can detect device via usb cable.

    Use the" remote host" is feasible

  • Router Compatible with WRT54G Antenna Connection

    I have to replace our WRT54G router--it's currently connected to a power booster and and omni-directional antenna.  Is there a router with an antenna connection compatible with the WRT54G--preferably a single antenna model?
    Thx in advance,
    David Miller

    Here are some...
    http://www.google.com/search?q=routers+with+antennas&sourceid=ie7&rls=com.microsoft:en-us:IE-SearchB...

  • Can u give clear steps how to load 3 data target at a time by the help of p

    can u give clear steps how to load 3 data target at a time by the help of parllalesim

    hi,
    create the load infopackage type and give the infopack you need to load.
    create 3 similar process types.
    chain should have this flow
    start -> delet index(if cube is the target) -> load target(connect the load process to start process) parallel -> and process -> create index(if cube)/actiavtion of ods(if ods)
    Ramesh

  • Unable to use the Freescale M5329EVB target server

    Hi everybody,
    I have created a new target on Labview embedded which is based on the Freescale M5329EVB example. The target is a powerpc from Xilinx and it runs a linux on it.
    What I want to do is to use the "target server" from the Freescale example. I copied all LEP_plugin VIs of this target example and modified them to work with my target.
    According to the porting guide, the target server needs a TCP connection, Telnet server and a TFTP client. I implement all of this on my embedded linux and test them. I can connect through telnet and get files through tftp from my linux host.
    When I click on the "Download" command, the target starts, connects to the target through telnet and then tries to connect with TFTP. The problem is with the last one, it puts me a message "Awaiting target connection on port 69 ..." but it never connects.
    I tried to look to the target server VI's but its quite difficult to understand. The problem seems to be located in EMB_Utility_TFTPD_Listen.vi at the UDP_Read function.
    Also, when I netstat my windows, the tftp service is started, so port 69 seems to be opened. Netstat on my target tells me that my windows host is connected to it. The windows firewall is also disactivated.
    If anyone has an idea on what's going wrong ...,
    Thanks for your help,
    François
    Attachments:
    pblm target server.JPG ‏30 KB

    Hi, sorry for being long to answer.
    I have two problems, one for the target server and the other for the debug mode.
    In release mode, the executable downloads well and the execution is
    good. The error "failed to execute program" comes from
    "TargetServer_GetFileSize.vi". The "Match Pattern" box doesn't give the
    right information (please see CheckFileSize.JPG). The problem seems to
    come from the "file size regex" wire.
    Then, if I skip the "checkfilesize" step, the program tries to connect
    to the target, but it gives an other error : "Target not found". I set
    breakpoints in the "nitargetStartTCPDebug.vi". The ip address seems
    good (it's 10.0.0.213 converted in decimal) (please see
    TargetNotFound.JPG and Debug.JPG). I wonder if there's a "HOST_IP" to
    set in the compile argument or something else.
    The other problem is when I try to compile a program in debug mode and instrumented debugging. It gives many errors :
    " C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(Debug.o): In
    function `SetDataToControl':
    ../../CCodeGen/libsrc/comms/Debug.c:496: undefined reference to `SetPictFieldValue'
    C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(CCGTimeSupport_unix.o):
    In function `DtToSecs':
    ../../CCodeGen/libsrc/os/unix/CCGTimeSupport_unix.c:91: undefined reference to `PDAClusterGetElemByPos'
    ../../CCodeGen/libsrc/os/unix/CCGTimeSupport_unix.c:92: undefined reference to `PDAClusterGetElemByPos'
    ../../CCodeGen/libsrc/os/unix/CCGTimeSupport_unix.c:94: undefined reference to `PDAClusterGetElemByPos'
    ../../CCodeGen/libsrc/os/unix/CCGTimeSupport_unix.c:96: undefined reference to `PDAClusterGetElemByPos'
    ../../CCodeGen/libsrc/os/unix/CCGTimeSupport_unix.c:98: undefined reference to `PDAClusterGetElemByPos'
    C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(CCGTimeSupport_unix.o):../../CCodeGen/libsrc/os/unix/CCGTimeSupport_unix.c:100:
    more undefined references to `PDAClusterGetElemByPos' follow
    C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(NumText.o):
    In function `NumToTextStatic':
    ../../CCodeGen/libsrc/blockdiagram/NumText.c:676: undefined reference to `StrResize'
    C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(NumText.o):
    In function `NumToTextExpStatic':
    ../../CCodeGen/libsrc/blockdiagram/NumText.c:1145: undefined reference to `StrResize'
    C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(NumText.o):
    In function `NumToTextEngStatic':
    ../../CCodeGen/libsrc/blockdiagram/NumText.c:1271: undefined reference to `StrResize'
    C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(NumText.o):
    In function `StrPadLeft':
    ../../CCodeGen/libsrc/blockdiagram/NumText.c:1407: undefined reference to `StrResize'
    C:\Program Files\National Instruments\LabVIEW
    8.5\Targets\NI\Embedded\unix\ml403TGTS\libs\libppc405rtd.a(NumText.o):
    In function `StrPadRight':
    ../../CCodeGen/libsrc/blockdiagram/NumText.c:1431: undefined reference to `StrResize'
    collect2: ld returned 1 exit status
    I compiled the program with these arguments :  -O0 -g -DCStatic
    -DUsesTCPDebugger=1 -DTCPUDPSupport=1 -w -I. -DCHeadless=1 -Dlinux
    -fno-strict-aliasing -fno-common -fomit-frame-pointer
    and the run time librairies with : -DCHeadless=1 -DNoFileSupport
    -DSocketSupport=1 -DTCPUDPSupport=1 -DCStatic -DUsesTCPDebugger=1
    -D_Include_Scheduler -D_Include_OSScheduler -DPosixFiles=0
    -DFileSupport=0 -DDatalogSupport=0 -DPalm5Earlier=0 -Wall -Dlinux
    -D_LIB -fno-strict-aliasing -fno-common -fomit-frame-pointer -Wa,-Wa,
    -Wno-pointer-sign
    Thanks in advance,
    françoisp
    Attachments:
    Debug1.JPG ‏79 KB
    CheckFileSize1.JPG ‏78 KB
    TargetNotFound1.JPG ‏40 KB

  • Ipod nano and fire wire connection

    Is a fire wire connection compatible with the second generation ipod nano. It came from the factory with a USB 2.0 cable. I have a 20 gig ipod that was supplied with a firewire connection. Are these two interchangeable with either unit? Awaiting a reply, thanks.

    FireWire cables cannot be used to sync an iPod nano or Fifth Generation iPod.
    (22435)

  • Help - LCM Utility Error - Could not connect to source - Null

    Has anyone successfully used LCM to extract BI+ objects to files under 9.3.1?
    I've configured it as per the doc, and it seems to connect to HSS Ok, but fails to connect to BI+ even though I've used the Project name and App ID as shown in Shared Services.
    Attempting to load Log Config File:../conf/log.xml
    main 2009-01-16 11:49:11,823 INFO - ----------- Package file info -------
    main 2009-01-16 11:49:11,839 INFO - Package File Path = W:\Hyperion\common\utilities\LCM\9.3.1\doc\
    Test_ExportPackage.xml
    main 2009-01-16 11:49:20,948 INFO - --------Application Details:---------
    main 2009-01-16 11:49:20,948 INFO - Application Name: Hyperion System 9 BI+:xxxwebdev.pcdir.int.xxx:6800::1
    main 2009-01-16 11:49:20,948 INFO - Application ID: 00000115dc60f0fe-0001-09bc-0a0401e0
    main 2009-01-16 11:49:20,948 INFO - Plugin Type: java
    main 2009-01-16 11:49:20,948 INFO - CallBackURL: xxxwebdev.pcdir.int.xxx:6800
    main 2009-01-16 11:49:20,948 INFO - Product Name: HAVA-9.3.1
    main 2009-01-16 11:49:20,948 INFO - Product Code: HAVA
    main 2009-01-16 11:49:20,948 INFO - Project Name: Hyperion System 9 BI+
    main 2009-01-16 11:49:20,964 INFO - Plugin Class: com.hyperion.expimp.ExportImportManager
    main 2009-01-16 11:49:20,964 INFO - ----------------------------------------------
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    Current date is - Fri Jan 16 11:49:21 GMT 2009
    java.lang.ClassNotFoundException: com.hyperion.expimp.ExportImportManager
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at com.hyperion.lcm.common.manager.ManagerFactory.getManager(Unknown Source)
    at com.hyperion.lcm.handler.util.Migration.getManager(Unknown Source)
    at com.hyperion.lcm.handler.ArtifactHandler.execute(Unknown Source)
    at com.hyperion.lcm.handler.TaskHandler.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Thread-6 2009-01-16 11:49:21,339 ERROR - Could not connect to Source - null
    Thread-6 2009-01-16 11:49:21,401 WARN - Task 1 in package file does not have a valid source manager
    Thread-6 2009-01-16 11:49:21,401 ERROR - There are errors in task 1
    Thread-6 2009-01-16 11:49:21,495 INFO - Migration(s) Completed Successfully.
    the Package Definition is...
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Dongling Ding (Hyperion) --><Package name="" description="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <Credentials user="admin" password="{CSS}gEyoY7EyW6cugoKczYohhQ=="/>
         <Connections>
              <ConnectionInfo name="MyHSS"
                   type="HSS"
                   description="Hyperion Shared Service connection"
                   url="http://xxxwebdev:58080/interop"
              />
              <ConnectionInfo name="FS"
                   type="FileSystem"
                   description="File System Location"
                   filePath="file:/c:/LCM/ExportedOutput"
              />
              <ConnectionInfo name="BI"
                   type="Application"
                   product="HAVA"
                   description="BI Plus Dev"
                   HSSConnection="MyHSS"
                   project="Hyperion System 9 BI+"
                   application="Hyperion System 9 BI+:xxxwebdev.pcdir.int.xxx:6800::1"
              />
         </Connections>
         <Tasks>
              <Task seqID="1">
                   <Source connection="BI">
                        <!-- the options listed would match some option specified in product registration -->
                        <Options>
                             <!-- Set to "true" if Job Outputs should be exported alone with the job -->
         <optionInfo name="exportJobOutput" value="true"/>
    </Options>
                   <!-- Following demonstrates retrieving the objects using the filtering by type -->
              <Artifact parentPath="/Repository Objects" type="folder" recursive="true" pattern="*"/>
              <Artifact parentPath="/Repository Objects" type="application/x-brioquery" recursive="true" pattern="*"/>
              <Artifact parentPath="/Repository Objects" type="application/x-SQR" recursive="true" pattern="*"/>
              <Artifact parentPath="/Repository Objects" type="application/hyperion-analyzer-report" recursive="true" pattern="*"/>
              <Artifact parentPath="/Repository Objects" type="application/hyperion-reports-report" recursive="true" pattern="*"/>
              <!-- Non-repository objects -->
                        <Artifact parentPath="/Product Preferences" recursive="true" pattern="*"/>
                        <Artifact parentPath="/Schedule Objects" recursive="true" pattern="*"/>
                        <Artifact parentPath="/Physical Resources" recursive="true" pattern="*"/>
                        <Artifact parentPath="/Security" recursive="true" pattern="*"/>
                   </Source>
                   <Target connection="FS">
                        <Options>
                        </Options>
                        <Transforms>
                        </Transforms>
                   </Target>
              </Task>
         </Tasks>
    </Package>
    Any advice would be great.
    Dave.
    Edited by: djhogg on 16-Jan-2009 04:22

    Soban,
    I was with the same problem and it worked using LCMUtility in BIPlus\bin directory.
    Thanks !
    Raphael
    Edited by: user4506039 on 11/05/2009 11:10

Maybe you are looking for

  • Urgent help need to solve wlst  RuntimeMBeanServer is not enabled

    I am using wlst to connect to a osb but I am getting the following errors: How can enable RuntimeMBeanServer using the console ? [wlst] The CompatabilityMBeanServer is not initialized properly. [wlst] This might happen if the CompatabilityMBeanServer

  • OSD Tasksequence from OS failing 0x80070002

    Hello, I have read other threads about the network access account, or the NTFS share permissions not being correct. Problem is I have 1 model out of 10 that are failing with the below error, so I am unsure what the real problem is here. Other compute

  • IMT - Error in query usind wild card character

    This with XML doc Whenever I use following query select * from temp where contains(col_1, '% within col_1_tag', 1)> 0 I get following error ORA-29902: error in executing ODCIIndexStart() routine ORA-20000: interMedia Text error: DRG-50937: query too

  • New version of Numbers v. 1.0.2

    Today a new version of Numbers came out, version 1.0.2. Software update didn't give much detail: "This update addresses compatibility with Mac OS X." Anyone know what changed?

  • How do I get a stolen Ipod back?

    My iPod has been stolen but I hadn't installed mobileMe or anything and the battery is probably dead now. Any tips?