Unmanaged disk destination - overwrite file possible?

Hi,
I have defined an unmanaged disk location for my Crystal Reports Server XI system.  The dozen or so reports that I have scheduled daily write to that destination fine -- unless an existing file with the same name already exists in that location.
Since i have defined specified filenames (%SI_NAME%.%EXT), rather than the randomly generated name, each day's report is generated with the same name as any other day's.  However, the new reports do not overwrite the old, which I would like to enable if possible.  Please do not suggest adding %SI_STARTTIME%, to make the filename unique, for I need to retain a consistent filename for manually uploading (and overwriting) to Sharepoint (another topic of discussion).
Is it possible to configure the unmanaged disk destination to overwrite existing files if same filename exists?
Thank you,
G.Brown

Hi Greg,
We're not using Crystal reports but do schedule BO Deski documents to publish as pdf files to a networked drive and we are using '%SI_NAME%.%EXT%' to specify the filename and it does automatically overwrites the existing files.  Does the username that your job is running under have full permissions on the folder in question on your unmanaged disk? 
Regards,
Anne.

Similar Messages

  • Split a PDF by sections and name them into one unmanaged disk destination

    Hi,
    I have a report wich I export as a PDF to an unmanaged disk destination. The report is grouped by geographic area, and I want to separate the PDF into each of the 200 geographic areas. Is there any way to do this without having 200 versions of the report or without having 200 instances with a different parameter?
    Thanks,

    Thanks Bashir,
    It is a Crystal report, and I already have the sections with the tree in the left part to get to the appropiate section, the problem is that the report is too big and users prefer to access just the file they need; that is why I want to split into separate PDFs.  The other advantage is that it make it easier to link from my Intranet just to the part each group need, and for users who access remotly, opening a small file takes less time than opening a huge file, so there are many reson to split it.
    Any ideas?

  • Error Scheduling Crystal Report to save to Unmanaged Disk destination

    When trying to schedule a Crystal Report to save to an "Unmanaged Disk" destination using the "Plain Text" format, and using the "Run Now" option, I receive the following error message  "Error Message: Invalid export options. D:\Business Objects\BusinessObjects Enterprise 11.5\Data\procSched\OUT-PHOENIX.reportjobserver\~tmp17105a42ccb5ae4.rpt"  I have enabled "Unmanaged Disk" capabilities within the ReportJobServer thru the CMC, and I have stopped and started the service.  I still receive the error message...Help!

    Hi Karla,
    do you have any service packs installed on your BOBJ server? Does your destination folder reside on a network drive?
    Regards,
    Stratos

  • Set 'Use Job server default' for Unmanaged disk destination

    Hi,
    I am using BO XI R2 SDK to schedule reports.
    I want to set all my reports destinations to Unmanaged disk to a particular folder. I have set these in reportjobserver's destination configuration too.
    Now i want create schedules through code for all my reports. I want these reports to use the job server defaults. I am unable to find a solution for this. The code i am currently using is as follows:
    Code:
    InfoObject diskObj = tempStoreForDisk.Query("SELECT * FROM  ci_systemobjects where si_name='CrystalEnterprise.DiskUnmanaged'")[1];
                    DestinationPlugin destDiskPlugin = (DestinationPlugin)diskObj;
                    DiskUnmanaged diskUnmanaged = (DiskUnmanaged)destDiskPlugin;
                    DestinationOptions destinationOptions = (DestinationOptions)diskUnmanaged.ScheduleOptions;
                    DiskUnmanagedOptions diskUnmanagedOptions = new DiskUnmanagedOptions(destinationOptions);
                    diskUnmanagedOptions.DestinationFiles.Add(path);
                    schedulingInfo.Destinations.Add("CrystalEnterprise.DiskUnmanaged");
                    schedulingInfo.Destinations[1].SetFromPlugin(destDiskPlugin);
    I want the italics line of code to be replaced with some code that enables the instance to use job server defaults.
    If a solution for the above query is not available, is it possible to set 'specific filename with extension' in the unmanaged destination through code?
    Could anyone please help me with any pointers?
    Thanks.

    Hello, Gayathri;
    I am not aware of a method to get defaults from the Job Server.
    You can use Visual Studio .NET to schedule to a disk file. We do have samples associated with our Developers Library on line.
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    The sample I am thinking of is "Schedule Report".
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/BOE_SDK/sampleList.htm
    Here is a simple sample that schedules to disk:
    Imports CrystalDecisions.Enterprise
    Imports CrystalDecisions.Enterprise.Desktop
    Imports CrystalDecisions.Enterprise.Dest
    Public Class ScheduleDisk
        Inherits System.Web.UI.Page
        Dim ceSession As EnterpriseSession
        Dim ceEnterpriseService As EnterpriseService
        Dim ceInfoStore As InfoStore
        Dim ceReportObjects As InfoObjects
        Dim ceReportObject As InfoObject
        Dim ceReport As Report
        Dim sQuery As String
    #Region " Web Form Designer Generated Code "
        'This call is required by the Web Form Designer.
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        End Sub
        Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
            'CODEGEN: This method call is required by the Web Form Designer
            'Do not modify it using the code editor.
            InitializeComponent()
        End Sub
    #End Region
        Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            'Put user code to initialize the page here
            Try
                'grab the Enterprise session
                If TypeOf Session.Item("ceSession") Is Object Then
                    ceSession = Session.Item("ceSession")
                    'Create the infostore object
                    ceEnterpriseService = ceSession.GetService("", "InfoStore")
                    ceInfoStore = New InfoStore(ceEnterpriseService)
                    'Create query to grab the desired report
                    sQuery = "Select SI_ID From CI_INFOOBJECTS Where SI_PROGID = 'CrystalEnterprise.Report' AND SI_Name='Consolidated Balance Sheet' AND SI_INSTANCE=0"
                    ceReportObjects = ceInfoStore.Query(sQuery)
                    'check for returned reports
                    If ceReportObjects.Count > 0 Then
                        ceReportObject = ceReportObjects.Item(1)
                        ceReport = CType(ceReportObject, Report)
                        'Create an interface to the scheduling options for the report.
                        Dim ceSchedulingInfo As SchedulingInfo
                        ceSchedulingInfo = ceReport.SchedulingInfo
                        'run the report right now
                        ceSchedulingInfo.RightNow = True
                        'run the report once only
                        ceSchedulingInfo.Type = CeScheduleType.ceScheduleTypeOnce
                        'When scheduling to all destinations except the printer, you must first retrieve
                        'the appropriate destination object. Each destination InfoObject is stored in the
                        'CMS system table (CI_SYSTEMOBJECTS) under the Destination Plugins folder
                        'Retrieve the DiskUnmanaged Plugin from CI_SYSTEMOBJECTS
                        Dim ceDestinationObjects As InfoObjects
                        Dim ceDestinationObject As InfoObject
                        ceDestinationObjects = ceInfoStore.Query("Select * from CI_SYSTEMOBJECTS Where SI_NAME = 'CrystalEnterprise.DiskUnmanaged'")
                        ceDestinationObject = ceDestinationObjects.Item(1)
                        'Create the DestinationPlugin object
                        Dim ceDisk As New DestinationPlugin(ceDestinationObject.PluginInterface)
                        'Create a diskUnmanagedOptions object and its ScheduleOptions from the Destination plugin
                        Dim ceDiskOpts As New DiskUnmanagedOptions(ceDisk.ScheduleOptions)
                        ceDiskOpts.DestinationFiles.Add("c:\ScheduledReports\ScheduledToDisk.rpt")
                        'Copy the properties from the Destination Plugin object into the report's scheduling
                        'information.  This will cause the file to be transfered to Disk after it has been run.
                        Dim ceDestination As Destination
                        ceDestination = ceSchedulingInfo.Destination
                        ceDestination.SetFromPlugin(ceDisk)
                        'schedule report
                        ceInfoStore.Schedule(ceReportObjects)
                        Response.Write("Report Scheduled Successfully with an Object ID of : " + ceReportObject.Properties("SI_NEW_JOB_ID").ToString)
                        Response.Write("<br>Report Scheduled to the following location: " + ceDiskOpts.DestinationFiles(1).ToString)
                    Else
                        'no objects returned by query
                        Response.Write("No report objects found by query <br>")
                        Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
                    End If
                Else
                    'no Enterprise session available
                    Response.Write("No Valid Enterprise Session Found!<br>")
                    Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
                End If
            Catch err As Exception
                Response.Write("There was an error scheduling the report: <br>")
                Response.Write(err.Message.ToString + "<br>")
                Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
            End Try
        End Sub
    End Class
    Elaine

  • Unmanaged Disk Destination settings Default

    Hi,
    How can one change the u201CUnmanaged Disk Destination settings Defaultu201D option in any job servers to False?
    I need all the users to provide their domain username and password while scheduling reports to the unmanaged disk. Present value of the metric is "True". I don't find any way to change it back to false. I cant also use the reset to default option in case needed, as other configurations will get affected.
    Thanks & Regards
    Karuppiah N

    Hi Karuppiah!
    I think there is no way to deselect the standards for the output formats.
    You have following possibilities:
    1. Teach your users, that they have to unmark the default, and have to provide their own entries.
    2. Enter defaults for each report.
    I thought about the file output for a standard user, but I came to the conclusion that it would be better if the users only use the email output for their purpose. The file output is only used by the admin to deliver reports to different systems.
    ciao

  • Batch converting mp3's (overwriting files possible?)

    I have many mp3s in a very high bitrate (320) and personally, for me I cannot tell much difference between 320 kbps and 192 kbps, to be honest, even 128 kbps is good enough for me; i just burn cds and play them in my car, maybe an audiophile might tell the diference, but whatever.
    My problem is this. I have over 500 tracks over 192kbps, and want them all at that level. If I choose iTunes to convert them, I have to re-organize all the files to their original places. I have an external with folders, labeled in genres, years, etc, if I used itunes then i have to move again every file into their respective folders, this is why i haven't done this. Anybody know of a script or even an app that can overwrite the original or maybe add a number at the end: (ie, Duran Duran - Girls on Film.mp31)
    Thanks,
    Paul

    Don't change the extension mp3 to mp31 that won't work.
    I have 11,000+ tunes and use the 'keep' and 'copy' features to organize it all. If you use the 'keep' feature then iTunes will rename the file on the HD to match the info in the "name' column in the main iTunes window. To keep track of it all I use a variety of PlayList's and rely heavily on the 'compilation' feature.
    When using the 'keep' feature - if there is more than one tune in the same folder with the same name - iTunes will rename the tune from "9 pm (till I Come)(Matt Darey Mix).mp3" to "9 pm (till I Come)(Matt Darey Mix) 1.mp3".
    I may have more that one copy of a tune - one is mp3 and the other is mp4(AAC) - I will add AAC to the song title in the 'name' column to help me as I browse.
    You can find scripts at http://www.dougscripts.com/itunes/index.php
    MJ

  • Problem with Scheduling a Report to an Unmanaged disk destination

    I am trying to schedule a Crystal report to a file share.  I have supplied the UNC path in the Directory field.  Supplied a user name (using domainname\userid) and password that has write rights to the file share.  When I schedule the report, I get the following error:
    login error. CrystalEnterprise.DiskUnmanaged: Logon failure: the user has not been granted the requested logon type at this computer.
    What kind of rights do I need to make it work?
    Using BOE XI R2 Fix Pack 2.4
    Regards,
    Maureen

    Are you running the Crystal Report Job Server under an account that has access to the share? Try doing that if not. (CCM > stop job server > properties > change to an AD user with access to both the file share and local Admin to run the service)
    Regards,
    Tim

  • Issue on Java Run Deski document, save format in a unmanaged disk location

    Post Author: usaitconsultant
    CA Forum: JAVA
    m developing an java application-based that will
    run deski report/document in a window machine and save output formatted
    report/document (pdf, etc.) to a local destination (unmanaged disk).
    However, no physical file was created after I execute my program. Note
    that BO XI server is on the other machine. Below is the code. Please
    let me know whats the problem? Thanks.
              sql = "SELECT SI_ID, SI_NAME, SI_PROCESSINFO.SI_PROMPTS " +
                   "FROM CI_INFOOBJECTS " +
                   "WHERE SI_NAME = '" + reportName + "'";
              infoObjects = infoStore.query(sql);
              if (infoObjects.size() < 1) {
                   System.out.println("Report does not exist.");
                   reportFound = false;
              if (reportFound) {
                   infoObject = (IInfoObject) infoObjects.get(0);
                   //Set Report Schedule
                   ISchedulingInfo schedulingInfo = infoObject.getSchedulingInfo();               
                   schedulingInfo.setType(0);
                   schedulingInfo.setRightNow(true);
                   System.out.println("Schedule report successful.");
                   //Set report type format (3 is for PDF -- need to identify int per report type format)
                   IFullClientFormatOptions reportFormatOptions = ((IFullClient)infoObject).getFullClientFormatOptions();
                   reportFormatOptions.setFormat(3);
                   //Set parameters
                   //Code here
                   // Get the destination object from schedulingInfo
                   IDestination destinationObject = schedulingInfo.getDestination();
                   // Specify that we are writing to disk               destinationObject.setName("CrystalEnterprise.DiskUnmanaged");
                   // Get the Destination plugin. Note that the SI_PARENTID will always be 29.
                   sql = "SELECT * " +
                             "FROM CI_SYSTEMOBJECTS " +
                             "WHERE SI_PARENTID=29 " +
                             "AND SI_NAME='CrystalEnterprise.DiskUnmanaged'";
                   IDestinationPlugin destinationPlugin = (IDestinationPlugin) infoStore.query(sql).get(0);               
                   destinationObject.copyToPlugin(destinationPlugin);
                   IDiskUnmanagedOptions diskUnmanagedOptions = (IDiskUnmanagedOptions)
                        destinationPlugin.getScheduleOptions();
                   diskUnmanagedOptions.getDestinationFiles().add("c:/sample.pdf");
                                  destinationObject.setFromPlugin(destinationPlugin);
                   schedulingInfo.setRightNow(true);
                   //Tells the CMS to schedule the report.
                   infoStore.schedule(infoObjects);

    Post Author: usaitconsultant
    CA Forum: JAVA
    Hi Ted,
    Thanks for the reply.The file is not available in the server. Though, I checked CMS and I found an instance in history tab and the status is failed with error below. 
                Error Message:
                A variable prevented the data provider Query 1 with BANRRD30 from being refreshed. (DMA0008).When I checked my codes, I found out that the object Im using is for web intelligence data provider. However, I cannot find any documentation and example for passing parameter values in desktop intelligence data provider. Any idea on this? You think this is not suported by Report Engine SDK?Thanks.    

  • CE10 - Report to Unmanaged Disk perpetual pending

    Hello,
    I am a report writer who has had to assume distribution responsibilities so I don't have much experience in troubleshooting Crystal Enterprise.
    I am attempting to schedule a report that is intended to write to a folder on a Linux server.
    1. The host file on my Crystal Enterprise server has been edited to see the Linux server as having a name recognizable to Windows:
    rdfun01
    2. I can, while using Windows Explorer from the Crystal Server, go to the appropriate folder
    rdfun01\datapump\
    3. I thusly scheduled the report destination as follows:
    -Unmanaged Disk
    -//rdfun01/datapump
    -billing.%ext%
    -Login information applied
    4. When I run the report it sits at a perpetual pending status
    Does anybody have any ideas?
    Thank you,
    Michael Hargett
    Disetronic Medical Systems

    Try Mapping the drive first

  • Overwrite files BUG! Save PDF to Web Receipts Folder

    In Safari, I will often want to save receipts of bank transactions. So I hit Command-P to print, then in the PDF menu button, I'll choose "Save PDF to Web Receipts Folder."
    When I look in my Web Receipts folder, it has saved the file, but if there was already a file there with that file's name, the old one is replaced by the new one. I found this out the hard way, as my bank's page title is always "National Bank," and Safari uses the page title as the file name. So instead of accumulating receipt PDFs there, I merely had the most recent one.
    This is certainly a bug: the Mac shouldn't be overwriting files without telling me. If it's going to save PDFs in the Web Receipts folder, then I should have the option to choose a name or approve the name that it generates from the HTML title.

    Yes I agree this is an intentional bug.
    Other things you can do to get around this issue:
    1) Disable the "Save PDF to Web Receipts.workflow" located at /Library/PDF Services. This is at the root level of your disk and you will need Admistrator level authority to accomplish this task.
    2) After you disable the workflow you could build your own without the: "with replacing" (save file) option enabled in the script. However, I believe this will not work, as you are already in a dialog box (printer), and the script will generate an error, and prompt a dialog box for you to enter a new name. I am not sure if this is the conduct, as I do not use this workflow or "feature."
    3) After you disable (or just plain not use) the above workflow: Instead create a folder in your Home Directory called "Online Receipts" or whatever memorable name you like. You can place this folder anywhere.
    Next, navigate to ~/Library/PDF Services (that is the folder in your Home folder, not at the root level as in (1) above. If this folder is not there, create it.
    Next create and drag an alias of your "Online Receipts" folder into this PDF Services folder.
    The next time you pull up a print dialog, and hit the PDF button, you will see this newly created folder in the menu. Just select it to save a PDF of your document to it. Files with identical names will be handled by the Finder's naming convention: (eg. file.pdf, file 2.pdf, file 3.pdf, etc.) and no files will be overwritten.
    I hope this helps,
    Zac
    PBG4, iMacs & 99-44/100 wireless   Mac OS X (10.4.3)  

  • Newbie: BW Export to Excel/CSV file destination and file name

    Is it possible to control where the export of a BW web query is sent by appending the url with some tag voodoo? Also, can I create the file name of the exported file? I figured out how to kick off the export process, but haven't found any code to control the export destination or file name. I wish to skip over the save dialog and write the file to a specific location.

    Hello John,
    BW provides several ways to export data. Please look into Open Hub for example.
    Other options include Information Broadcasting in SAP NetWeaver '04 or MDX, XML Webservices, or OLAP BAPI.
    Regards,
    Marc
    SAP NetWeaver RIG, US BI

  • [SOLVED] Overwrite files with pacman.

    Hello all
    I know that pacman, as a design feature, does not overwrite files by default. I've read the post and the wiki about it.
    But I've a situation where I would need to overwrite dozens of files, in different directories, and it would be very nice, If possible, to make an exception to this rule.
    I dont know how, but I've messed up an Kdemod upgrade. It stopped working and I cant uninstall it, because pacman doesnt find the appropriate groups (Kdemod-complete and Kdemod-uninstall).
    On the other hand, I cant simply reinstall it, or kde[extra], because pacman gives dozens "leftover file" messages in different directories, and refuses to overwrite them.
    I just want a way to reinstall KDEmod, at least to try to remove everything with "pacman -Rd kdemod-uninstall" and start from scratch, if it doesnt work. And, I would like to escape manually removing all the files in different directories or a full system reinstall.
    Any Ideas?
    Thanks in advance for any help.
    Last edited by Raws (2009-12-09 03:44:51)

    falstaff_ch wrote:
    Just in case someone Googles this Thread, nowadays its
    # pacman -S --force <package>
    Moderator comment:  That is true as far as the synatax of Pacman command is concerned -- BUT -- using 'force', unless you know exactly what you're doing, is not recommended.  It can cause serious breakage.
    In fact, the -f flag was deliberately deprecated in favor of --force specifically to make it less likely that someone will try using it.
    Closing this old thread....

  • Standby destination control file enqueue unavailable

    Hi,
    more than two days ..totally i tried 3 times for creating standby database in oralce 10g ..everthing working fine but i didnt get archive log from primary database..please help me
    NOTE: both primary and standby database on same system
    *#standby database 'stby' (omitted common parameters)*
    *.compatible='10.2.0.3.0'
    *.control_files='d:\oracle\product\10.2.0\oradata\stby\controlsb01.ctl','d:\oracle\product\10.2.0\oradata\stby\controlsb02.ctl','d:\oracle\product\10.2.0\oradata\stby\controlsb03.ctl'
    *.db_file_name_convert='D:\oracle\product\10.2.0\oradata\live','D:\oracle\product\10.2.0\oradata\stby'
    *.db_name='live'
    *.fal_client='stby'
    *.fal_server='live'
    *.log_archive_config='DG_CONFIG=(live,stby)'
    *.log_archive_dest_1='LOCATION=D:\oracle\product\10.2.0\flash_recovery_area\stby VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=stby'
    *.log_archive_dest_2='SERVICE=live ARCH ASYNC VALID_FOR=(ONLINE_LOGFILE,PRIMARY_ROLE) DB_UNIQUE_NAME=live'
    *.log_file_name_convert='D:\oracle\product\10.2.0\oradata\live','D:\oracle\product\10.2.0\oradata\stby'
    *.remote_login_passwordfile=EXCLUSIVE
    *.standby_file_management='AUTO'
    *.instance_name=stby
    *.db_unique_name=stby
    *#primary database 'live'*
    *.compatible='10.2.0.3.0'
    *.control_files='d:\oracle\product\10.2.0\oradata\live\control01.ctl','d:\oracle\product\10.2.0\oradata\live\control02.ctl','d:\oracle\product\10.2.0\oradata\live\control03.ctl'
    *.db_file_name_convert='D:\oracle\product\10.2.0\oradata\stby','D:\oracle\product\10.2.0\oradata\live'
    *.db_name='live'
    *.fal_client='live'
    *.fal_server='stby'
    *.log_archive_config='DG_CONFIG=(live,stby)'
    *.log_archive_dest_1='LOCATION=D:\oracle\product\10.2.0\flash_recovery_area\live VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=live'
    *.log_archive_dest_2='SERVICE=stby ARCH ASYNC VALID_FOR=(ONLINE_LOGFILE,PRIMARY_ROLE) DB_UNIQUE_NAME=stby'
    *.log_file_name_convert='D:\oracle\product\10.2.0\oradata\stby','D:\oracle\product\10.2.0\oradata\live'
    *.remote_login_passwordfile=EXCLUSIVE
    *.standby_file_management='AUTO'
    *.instance_name=live
    *.DB_UNIQUE_NAME=live
    *#standby database*
    SQL> STARTUP MOUNT
    ORACLE instance started.
    Total System Global Area 251658240 bytes
    Fixed Size 1290012 bytes
    Variable Size 159383780 bytes
    Database Buffers 83886080 bytes
    Redo Buffers 7098368 bytes
    Database mounted.
    SQL> alter database recover managed standby database disconnect from session;
    Database altered.
    SQL> select group#,member from v$logfile;
    GROUP#
    MEMBER
    3
    D:\ORACLE\PRODUCT\10.2.0\ORADATA\STBY\REDO03.LOG
    2
    D:\ORACLE\PRODUCT\10.2.0\ORADATA\STBY\REDO02.LOG
    1
    D:\ORACLE\PRODUCT\10.2.0\ORADATA\STBY\REDO01.LOG
    GROUP#
    MEMBER
    4
    D:\ORACLE\PRODUCT\10.2.0\ORADATA\STBY\SREDO04.LOG
    5
    D:\ORACLE\PRODUCT\10.2.0\ORADATA\STBY\SREDO05.LOG
    6
    D:\ORACLE\PRODUCT\10.2.0\ORADATA\STBY\SREDO06.LOG
    6 rows selected.
    *#primary database*
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    SQL> select SEQUENCE#, applied from v$archived_log;
    SEQUENCE# APP
    15 NO
    16 NO
    17 NO
    18 NO
    19 NO
    20 NO
    SQL> SELECT SEQUENCE#,STATUS FROM V$MANAGED_STANDBY;
    SEQUENCE# STATUS
    0 CONNECTED
    19 CLOSING
    20 CLOSING
    0 CONNECTED
    0 CONNECTED
    0 CONNECTED
    0 CONNECTED
    0 CONNECTED
    *#standby database*
    SQL> select * from v$archived_log;
    no rows selected
    *#see even my standby database open .*
    SQL> alter database open;
    Database altered.
    *# listener.ora*
    STBY =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = selvaPC)(PORT = 2031))
    LIVE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = selvaPC)(PORT = 2030))
    SID_LIST_STBY =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = live)
    (SID_NAME = stby)
    SID_LIST_LIVE =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = live)
    (SID_NAME = live)
    *# tnsnames.ora*
    STBY =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = selvaPC)(PORT = 2030))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = live)
    LIVE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = selvaPC)(PORT = 2031))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = stby)
    *#Error in alert file..during startup primary database*
    Controlfile lock conflict at host 'stby'
    Possible invalid cross-instance archival configuration
    ORA-16146: standby destination control file enqueue unavailable
    thanks
    selva..

    If you user this then a lot of information ( threads) can be found with the same problem.
    Anyway the original ORA-message/solution is:
    Error:     ORA-16146 (ORA-16146)
    Text:     standby destination control file enqueue unavailable
    Cause:     The target standby destination control file is currently
         unavailable to the Remote File Server (RFS) process. This
         indicates that the target destination is the primary database
         itself.
    Action:     Check for and eliminate the standby destination archive log
         parameter in question.
    This means you have an error in the log_archive_dest entries on the standby server.
    Can you use Dataguard Manager (dgmgrl) to verify the configuration?
    Edit:
    Our Dataguard config e.g. has on primary:
    log_archive_config='dg_config=(STDBY)'
    On the standby it is:
    log_archive_config='dg_config=(PRIMARY)'

  • "Couldn't create destination temporary file:Permission denied"

    I am running the latest version of Final Cut Server on a Mac Pro Tower running Mac Server 10.6.X.
    I keep getting 2 Error messages every time my users are trying to send content to the server via Final Cut Server client application:
    (1) "Broken Pipe" and (2) "Couldn't create destination temporary file:Permission denied"
    Anybody have any Ideas on how I could correct this?
    Thanks

    Can you elaborate on what you did to fix this? I am getting the same error. Everything was fine about a week ago. I tried repairing the disk permission in Disk Utility.

  • Dr. Brown 1-2-3 PS CS5 (to overwrite files)

    I have been a lot of issues on CS5 using Save for Web as a part of recorded action to create 3 jpg sizes. Results are images at 300 ppi instead 72 ppi. (No problems on CS4 running the same steps in the action) One day it works & the other don't. A lot people on this forum suggest me Dr. Brown 1-2-3 process. WOW! it is really good but it doesn't overwrite files with the same name on the destination folders. For example if I have a  photo named ABC1. jpg & run the 1-2-3 script again it creates another file ABC1_1. jpg. Is there any way to change that behaviour?

    Is the Script »scrambled« or can you open it in ExtendScript Toolkit and get the proper text?
    If the latter you could ask for help in the Scripting Forum.

Maybe you are looking for

  • Javaws 64-bit fails to installer newer JRE  (Java7u6 auto-upgrading to u7)

    Hi, I have a machine with an previous version of java installed (tried with 1.7.0_06). My Jnlp file is set to automatically download the latest JRE. This works fine if the JRE installed is 32-bit. But if the user has downloaded the x64 bit version (o

  • NO DATES appear in my iCal!

    I can no longer see dates when in the week or day view. But I can see it in the month menu. go here: http://www.bingwalker.com/ical.jpg

  • TS1538 Why isn't my iPhone being recognized by iTunes??

    I recently updated my iTunes software with the latest version (10.6.3) and suddenly iTunes is no longer recognizing my iPhone when I plug it in via USB (and neither is Windows for that matter).  I've tried to troubleshoot using tips from Apple Suppor

  • F-44 vendor clearing dump

    Dear All, Runtime Errors         CONVT_NO_NUMBER Exceptn                CX_SY_CONVERSION_NO_NUMBER Date and Time          03.12.2009 12:08:30 ShrtText      Unable to interpret "*0" as a number. What happened?      Error in ABAP application program.  

  • Belated costs during a make-to-order/sales order controlling process

    Hello Experts, We implemented a make-to-order process where we collect actual costs of a repackaging process. The cost object of that process order is the sales order item (VBP, Vertriebsbelegposition). So far that cost collection works absolutely fi