SPFile.MoveTo Thicket Exception

I'm getting Thicket file exception on SPFile.MoveTo call. But I'm not processing htm or mht file or frontpage files. Is there any other case it throws below exception? System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> Microsoft.SharePoint.SPException: You cannot copy or move a thicket file. To change the file name or create a copy of the file, open the file and save as to a new name. ---> System.Runtime.InteropServices.COMException (0x800700D6): <nativehr>0x800700d6</nativehr><nativestack></nativestack>You cannot copy or move a thicket file. To change the file name or create a copy of the file, open the file and save as to a new name.
at Microsoft.SharePoint.Library.SPRequestInternalClass.MoveUrl(String bstrUrl, String bstrWebRelOldUrl, String bstrWebRelNewUrl, Int32 grf)
at Microsoft.SharePoint.Library.SPRequest.MoveUrl(String bstrUrl, String bstrWebRelOldUrl, String bstrWebRelNewUrl, Int32 grf)
--- End of inner exception stack trace ---
at Microsoft.SharePoint.SPFile.MoveCopyInternal(String strNewUrl, Int32 grf, Boolean requireWebFilePermission)
at Microsoft.SharePoint.SPFile.MoveTo(String newUrl, SPMoveOperations flags)
Bala

Hi,
According to your post, an exception occurred when you used SPFile.MoveTo method.
A workaround is that we can create a local working folder and download the content, then create new folder at SharePoint and re-upload everything, finally delete the old folder.
More information:
http://sharemypoint.wordpress.com/2007/07/24/_files-folder-part-2-you-cannot-copy-or-move-a-thicket-file-how-to-rename/
Best Regards
Dennis Guo
TechNet Community Support

Similar Messages

  • Sharepoint 2013, event receiver to rename files not working

    I coded an event receiver (ItemAdding) that renames for example a .txt file to a .text file (it does not matter the extensions, it is just an example). In my code what I do is to an SPFile.MoveTo operation. It works fine in SP2010 but when I execute
    the same code in SP 2013, when the operation is done using IE I get the text "Sorry, something went wrong" and then "File Not Found".
    In the logs this is what I see:
    12/23/2013 15:48:49.16  w3wp.exe (0x17B0)                        0x0AC8 SharePoint Foundation        
     General                        ai1wu Medium   System.IO.FileNotFoundException: The system cannot find the file specified.
    (Exception from HRESULT: 0x80070002), StackTrace:    at Microsoft.SharePoint.SPWeb.GetFileOrFolderProperties(String strUrl, ListDocsFlags listDocsFlags, Boolean throwException, SPBasePermissions& permMask)     at Microsoft.SharePoint.SPFile.PropertiesCore(Boolean
    throwException)     at Microsoft.SharePoint.SPFile.get_Length()     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadPage.OnSubmit(Object o, EventArgs e)     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadExPage.OnSubmit(Object
    o, EventArgs e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessReque... f72b639c-77b1-5045-c3a2-b23f24ae71c0
    It's clear that the Sharepoint upload code tries to do things with the original name and it does not realize that it was renamed.
    Can I do something from my event receiver code like using the AfterProperties to bypass this error?
    Thanks

    Hi Dennis,
    The issue still persists. Here is the code:
            public override void ItemAdded(SPItemEventProperties properties)
                SPSecurity.RunWithElevatedPrivileges(delegate()
                    try
                        OutputDebugStringA("Inside ItemAdded");
                        string szHttpUrl = properties.WebUrl + "/" + properties.AfterUrl;
                        SPWeb openedWeb = properties.Web.Site.OpenWeb(properties.Web.ID);
                        SPFile spf = openedWeb.GetFile(szHttpUrl);
                        EventFiringEnabled = false;
                        string szUrl = properties.AfterUrl;
                        szUrl = szUrl + ".renamed";
                        string szNewFileName;
                        if (szUrl.LastIndexOf('\\') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('\\') + 1);
                        else if (szUrl.LastIndexOf('/') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('/') + 1);
                        else szNewFileName = szUrl;
                        if (properties.ListItem != null)
                            properties.ListItem["Title"] = szNewFileName;
                            properties.ListItem.Update();
                        spf.MoveTo(szUrl);
                        EventFiringEnabled = true;
                        base.ItemAdded(properties);
                        OutputDebugStringA("Renaming to " + szUrl);
                    catch (System.Exception exception)
                        OutputDebugStringA("ItemAdded ERROR: " + exception.ToString());

  • How can I force a Word document to be routed immediately from Word

    When using Word to create and save a document to SharePoint Library that is using Content Organizer (Drop Off Library), Word displays a common Routing information status, and also asks you to check in a document if check out is enabled. My question is how
    do you make the content organizer route Your document immediately and not wait for the content Processing job, like it does for all other scenarios than saving from Word?
    What happens now is that Word saves the file directly to the Drop Off Library, tells you it Will be routed to the correct Library, then just leaves it inside Drop Off Library, waiting for the daily Content Processing job to run.
    User friendly would mean that Word stores the document directly to the correct Library based on Content Organizer. I know SharePoint Code that would solve this server side, but not using Client context. Anyone have any suggestions?
    [email protected]

    Hi,
    If you want to move the document to other library immediately, the following workarounds for your reference:
    1.Create an Event Receivers for document library and use SPFile.MoveTo
    method to move file to the other document library.
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfile.moveto.aspx
    http://www.learningsharepoint.com/2010/07/04/programmatically-copy-and-move-documents-in-sharepoint-2010/  
    2.Create a workflow using SharePoint designer and use Copy List Item Action to copy file, then delete the current document.
    Thanks,
    Dennis Guo
    TechNet Community 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]
    Dennis Guo
    TechNet Community Support

  • How do I change the name property of a file in a document library?

    I am trying to come up with an Event Receiver that will change the name property of an file when it is uploaded. For instance when a file is uploaded into a document Library, currently the Title is being generated (which is fine)...I want to be able to
    change the "Name" property from whatever it is, to match exactly what is in the "Title" property. Are there any sample codes/blogs out there that I can take a look at? Has anyone  had any experience doing this? It seems like something
    that should be straight forward, to change the "Name" property to match what is in the "Tilte" property.

    Hi,     
    You can try the code below which use the SPFile.MoveTo() function to change the name of the file.
    EventFiringEnabled = false;
    SPFile f = properties.ListItem.File;
    string spfileExt = new FileInfo(f.Name).Extension;
    f.MoveTo(properties.ListItem.ParentList.RootFolder.Url +
    "/" + properties.ListItem["Title"]+ "_new" + spfileExt);
    f.Update();
    EventFiringEnabled = true;
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/5cafb8e4-bb85-4147-9bda-4ab42a4d4817/sharepoint-2013-event-receiver-to-rename-files-not-working?forum=sharepointdevelopment
    A link about rename uploaded file using Event Receiver for your reference:
    http://paulgalvinsoldblog.wordpress.com/2008/01/25/quick-easy-rename-uploaded-file-using-sharepoint-object-model-via-an-event-receiver/
    Best regards
    Patrick Liang
    TechNet Community Support

  • How can I view a Word document  when it tells me that someone else is using the document? This is not true as I am the only one using this Word document which is on my desktop?

    I am working on my Ancestry and today when I tried to view my Word document which awaits me on my desktop, I was told that someone else was using it. There is only me to use it, so there couldn't be anyone else. What can I try to open this document again?

    Hi,
    If you want to move the document to other library immediately, the following workarounds for your reference:
    1.Create an Event Receivers for document library and use SPFile.MoveTo
    method to move file to the other document library.
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfile.moveto.aspx
    http://www.learningsharepoint.com/2010/07/04/programmatically-copy-and-move-documents-in-sharepoint-2010/  
    2.Create a workflow using SharePoint designer and use Copy List Item Action to copy file, then delete the current document.
    Thanks,
    Dennis Guo
    TechNet Community 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]
    Dennis Guo
    TechNet Community Support

  • Exception has been thrown by the target of an invocation error while updating picture in user Profile

    Hi,
    I am working on updating picture of user profile in sharepoint 2013.
    I am getting error "exception has been thrown by the target of an invocation" while creating Thumbnail at the below line.
    "file = (SPFile)mi_CreateThumbnail.Invoke(null, new object[] { original, idealWidth, idealHeight, folder, fileName, null });"
    I have added SPUtility.ValidateFormDigest() before calling this method. but no luck.
    Please help me on this.
    Thanks
    Hareesh

    Hi,
    According to your post, my understanding is that you want to update picture in user Profile.
    If we are giving an option to change the Profile picture in our custom component, we need to create 3 different files and update the reference in User Profile property.
    To create Thumbnail, we can use the code as below:
    /// Get sealed function to generate new thumbernails
    public SPFile CreateThumbnail(Bitmap original, int idealWidth, int idealHeight, SPFolder folder, string fileName)
      SPFile file = null;
      Assembly userProfilesAssembly = typeof(UserProfile).Assembly;
    Type userProfilePhotosType = userProfilesAssembly.GetType("Microsoft.Office.Server.UserProfiles.UserProfilePhotos");
      MethodInfo [] mi_methods = userProfilePhotosType.GetMethods(BindingFlags.NonPublic | BindingFlags.Static);
      MethodInfo mi_CreateThumbnail = mi_methods[0];
      if (mi_CreateThumbnail != null)
        file = (SPFile)mi_CreateThumbnail.Invoke(null, new object[] { original, idealWidth, idealHeight, folder, fileName, null });
      return file;
    Then we can invoke the method as below:
    using (MemoryStream stream = new MemoryStream(buffer))
    using (Bitmap bitmap = new Bitmap(stream, true))
    CreateThumbnail(bitmap, largeThumbnailSize, largeThumbnailSize, subfolderForPictures, accountName + "_LThumb.jpg");
    CreateThumbnail(bitmap, mediumThumbnailSize, mediumThumbnailSize, subfolderForPictures, accountName + "_MThumb.jpg");
    CreateThumbnail(bitmap, smallThumbnailSize, smallThumbnailSize, subfolderForPictures, accountName + "_SThumb.jpg");
    More information:
    Update User Profile picture programmatically in SharePoint
    Upload User Profile Picture programmatically in SharePoint 2013
    Upload User Profile Pictures Programmatically – SharePoint 2013
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Exception calling "Update" with "0" argument(s): "To add an item to a document library, use SPFileCollection.Add()"

    Hi i am trying to add a new item and update existing field value in a document library with powershell 
    but i receive below error message.
    PS C:\Users\spfarm> C:\Scripts\add.ps1
    Exception calling "Update" with "0" argument(s): "To add an item to a document
    library, use SPFileCollection.Add()"
    At C:\Scripts\add.ps1:24 char:16
    + $newItem.Update <<<< ()
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : DotNetMethodException
    #Add SharePoint PowerShell Snapin which adds SharePoint specific cmdlets
    Add-PSSnapin Microsoft.SharePoint.PowerShell -EA SilentlyContinue
    #Variables that we are going to use for list editing
    $webURL = "http://tspmcwfe:89"
    $listName = "test"
    #Get the SPWeb object and save it to a variable
    $web = Get-SPWeb $webURL
    #Get the SPList object to retrieve the "Demo List"
    $list = $web.Lists[$listName]
    #Create a new item
    $newItem = $list.Items.Add()
    #Add properties to this list item
    $newItem["Title"] = "My second item!"
    $newItem["Info"] = "s15"
    #Update the object so it gets saved to the list
    $newItem.Update()
    $web.Dispose()
    adil

    Hi Adil,
    Document Library is different from a normal list. The document library contains files inside it. You need to update the code to add a document to the library. Then you can get hold of the List Item represented by that file and update its properties. Here
    is an example:
    $WebURL = "http://aissp2013/sites/TestSite"
    $DocLibName = "Docs" 
    $FilePath = "c:\blogs.txt" 
    # Get a variable that points to the folder 
    $Web = Get-SPWeb $WebURL 
    $List = $Web.GetFolder($DocLibName) 
    $Files = $List.Files
    # Get just the name of the file from the whole path 
    $FileName = $FilePath.Substring($FilePath.LastIndexOf("\")+1)
    # Load the file into a variable 
    $File= Get-ChildItem $FilePath
    # Upload it to SharePoint 
    $spFile = $Files.Add($DocLibName +"/" + $FileName,$File.OpenRead(),$false) 
    $item = $spFile.Item
    $item["Title"] = "New Title"
    $item.Update()
    $web.Dispose()
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • ERROR: Timed out (100000): Interrupted Exception

    Hello !
    I got the error described as _(ERROR: Timed out (100000): Interrupted Exception)_ when starting all services on my virtual machine (RHEL 4). After checking from Metalink, I concluded that the problem is caused by the overload since I have less than 1.5GB of memory allocated to this virtual machine.
    I did all the steps as demanded in Metalink, but still unable to find out what can be done in the step described as below:
    Implement this new timeout value by modifying the AutoConfig template for opmn.xml
    Filename "opmnctl_1013.tmp" located in $FND_TOP/admin/template
    Thanks for your contribution.
    Regards,
    Edited by: user650358 on 15-Feb-2010 11:29

    Hello,
    I set the local_listener in the spfile and configured it. As suggested in the forums, I changed the SGA_TARGET and PGA_AGGREGATE parameters. In order to effect the changes, I then
    recreated the context file because while going through it, I noticed that those default values were unchanged. I recreated the Context file (which is very short compared to the old one and can't run the AutoConfig anew).
    I am going through the note 601470.1 and can't get a headway on this issue. This is the error issued while running the AutoConfig on the Database Tier.
    Using VersionConflictListGenerator.java version 120.3
    All driver files processed.
    No version conflict encountered.
    ===========================================================================
    ERROR: Context Value Management Failed.
    Terminate.
    Regards,

  • "Missing initial moveto in path definition" displayed on console

    Hello -
    I have an AreaChart using all default styles...nothing is being done from my end to it as far as css/styles.
    I see this message on the console
    "Missing initial moveto in path definition. Path: Path@fe315d[styleClass=chart-series-area-fill series0 default-color0]"
    What does this mean and how do I fix it?
    Here's the code you could run, to see the message on output...
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.animation.AnimationTimer;
    import javafx.animation.Timeline;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.chart.AreaChart;
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart.Data;
    import javafx.scene.chart.XYChart.Series;
    import javafx.stage.Stage;
    * A chart that fills in the area between a line of data points and the axes.
    * Good for comparing accumulated totals over time.
    * @see javafx.scene.chart.Chart
    * @see javafx.scene.chart.Axis
    * @see javafx.scene.chart.NumberAxis
    * @related charts/line/LineChart
    * @related charts/scatter/ScatterChart
    public class AreaChartSample extends Application {
    private static final int MAX_DATA_POINTS = 50;
    private Series series;
    private int xSeriesData = 0;
    private ConcurrentLinkedQueue<Number> dataQ = new ConcurrentLinkedQueue<Number>();
    private ExecutorService executor;
    private AddToQueue addToQueue;
    private Timeline timeline2;
    private NumberAxis xAxis;
    private void init(Stage primaryStage) {
    xAxis = new NumberAxis(0,MAX_DATA_POINTS,MAX_DATA_POINTS/10);
    xAxis.setForceZeroInRange(false);
    xAxis.setAutoRanging(false);
    NumberAxis yAxis = new NumberAxis();
    yAxis.setAutoRanging(true);
    //-- Chart
    final AreaChart<Number, Number> sc = new AreaChart<Number, Number>(xAxis, yAxis) {
    // Override to remove symbols on each data point
    @Override protected void dataItemAdded(Series<Number, Number> series, int itemIndex, Data<Number, Number> item) {}
    sc.setAnimated(false);
    sc.setId("liveAreaChart");
    sc.setTitle("Animated Area Chart");
    //-- Chart Series
    series = new AreaChart.Series<Number, Number>();
    series.setName("Area Chart Series");
    sc.getData().add(series);
    primaryStage.setScene(new Scene(sc));
    @Override public void start(Stage primaryStage) throws Exception {
    init(primaryStage);
    primaryStage.show();
    //-- Prepare Executor Services
    executor = Executors.newCachedThreadPool();
    addToQueue = new AddToQueue();
    executor.execute(addToQueue);
    //-- Prepare Timeline
    prepareTimeline();
    public static void main(String[] args) {
    launch(args);
    private class AddToQueue implements Runnable {
    public void run() {
    try {
    // add a item of random data to queue
    dataQ.add(Math.random());
    Thread.sleep(50);
    executor.execute(this);
    } catch (InterruptedException ex) {
    Logger.getLogger(AreaChartSample.class.getName()).log(Level.SEVERE, null, ex);
    //-- Timeline gets called in the JavaFX Main thread
    private void prepareTimeline() {
    // Every frame to take any data from queue and add to chart
    new AnimationTimer() {
    @Override public void handle(long now) {
    addDataToSeries();
    }.start();
    private void addDataToSeries() {
    for (int i = 0; i < 20; i++) { //-- add 20 numbers to the plot+
    if (dataQ.isEmpty()) break;
    series.getData().add(new AreaChart.Data(xSeriesData++, dataQ.remove()));
    // remove points to keep us at no more than MAX_DATA_POINTS
    if (series.getData().size() > MAX_DATA_POINTS) {
    series.getData().remove(0, series.getData().size() - MAX_DATA_POINTS);
    // update
    xAxis.setLowerBound(xSeriesData-MAX_DATA_POINTS);
    xAxis.setUpperBound(xSeriesData-1);
    }

    I just tested this code, and let it run for a minute. I did not see any such message -- I'm using JavaFX 2.2b13 -- it may have been fixed already.

  • Exception thrown like ORA-01000

    Hi,
    I am getting the error in my java code like ORA-01000.
    Exception :ORA-01000: maximum open cursors exceeded
    How to check through code whether the cursor is opened or closed.
    Can anyone please help me to resolve this incident?.

    SHAHID HUSSAIN ABRO wrote:
    ERROR:
    ORA-01000: Maximum open cursors exceeded
    SOLUTIONS:
    SQL> show parameter cursor_;
    SQL> alter system set open_cursor=1000;
    Or
    SQL> alter system set open_cursor=1000 scope=spfile;
    SQL> SHUT immediate
    SQL> STARTUP;
    SQL> show parameter cursor_;
    Shahid Hussain Abro
    Assistant Commissioner, SRBIf you are suggesting that the solution is to modify the database to allow more open cursors then you are almost certainly wrong.
    Posters here do not have a problem with applications that need to use more cursors. What they have is a failure to properly close the cursors that they do use. And your solution will not correct that problem and could even make it worse as cursors require system resources.
    Worse it could end up hiding the problem because the application with volume X might operate for some time, but then start failing because the volume goes above X and by then no one remembers that the wrong solution was applied.

  • Backupu0094and u0093Redo log backupu0094;Except operation are failed

    I encounter a problem when i makeing backup,i ask for help.
    <b>The situation is following:</b>os: windows 2003+sp2
    SAP :NetWeaver 04S(BW7.0)
    DB:ORACLE 10.2
    Backup Software: VERITAS Backup Exec for Windows Servers 9.1
    The problem which i encounter is following:
    All are successful that use “BRTOOLS” operate “OFFLINE BACKUP” and “OFFLINE BACKUP”.
    These operation are successful to use "DB13" Operate
    “Whole database online + redo log backup”&#12289;“Whole database online backup”and “Redo log backup”;Except “Whole database offline + redo log backup" and"Whole database offline backup" these two operation are failed
    <b>successful  “AllOnl+Log”</b> BRABCKUP Detail log for database BWD
    Detailliertes Protokoll: bdvvpedp.anf
    BR0051I BRBACKUP 7.00 (18)
    BR0055I Start of database backup: bdvvpedp.anf 2007-08-03 13.32.37
    BR0477I Oracle pfile D:\oracle\BWD\102\database\initBWD.ora created from spfile D:\oracle\BWD\102\database\spfileBWD.ora
    BR0280I BRBACKUP time stamp: 2007-08-03 13.32.40
    BR0319I Control file copy created: D:\oracle\BWD\sapbackup\CNTRLBWD.DBF 12664832
    BR0101I Parameters
    Name                           Value
    oracle_sid                     BWD
    oracle_home                    D:\oracle\BWD\102
    oracle_profile                 D:\oracle\BWD\102\database\initBWD.ora
    sapdata_home                   D:\oracle\BWD
    sap_profile                    D:\oracle\BWD\102\database\initBWD.sap
    backup_mode                    ALL
    backup_type                    online
    backup_dev_type                util_file
    util_par_file                  D:\usr\sap\BWD\SYS\exe\uc\NTI386\biparam.ini
    system_info                    SAPServiceBWD KHBWDEV Windows 5.2 Build 3790 Service Pack 2 Intel
    oracle_info                    BWD 10.2.0.2.0 8192 826 6112865 KHBWDEV UTF8 UTF8
    sap_info                       700 SAPSR3 BWD TEMPLICENSE R3_ORA INITIAL
    make_info                      NTintel OCI_10201_SHARE Oct 27 2006
    command_line                   brbackup -u / -jid ALLOG20070803133227 -c force -t online -m all -p initBWD.sap -a -c force -p initBWD.sap -cds
    BR0116I ARCHIVE LOG LIST before backup for database instance BWD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            C:\oracle\BWD\oraarch\BWDarch
    Archive format                 ARC%S_%R.%T
    Oldest online log sequence     823
    Next log sequence to archive   826
    Current log sequence           826              SCN: 6112865
    Database block size            8192             Thread: 1
    Current system change number   6123378          ResetId: 628786982
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_1\SR3.DATA1               2243960832    4           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_2\SR3.DATA2               2327846912    5           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_3\SR3.DATA3               2243960832    6           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_4\SR3.DATA4               2243960832    7           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_5\SR3.DATA5               2243960832   16           3  NOLINK  FILE    3145728000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_1\SR3700.DATA1         3795853312    8           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_2\SR3700.DATA2         3942653952    9           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_3\SR3700.DATA3         3732938752   10           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_4\SR3700.DATA4         3670024192   11           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_5\SR3700.DATA5         3670024192   17           3  NOLINK  FILE    4194304000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3DB_1\SR3DB.DATA1           2097160192   13           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3DB_2\SR3DB.DATA2           2097160192   14           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3DB_3\SR3DB.DATA3           1048584192   15           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3USR     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3USR_1\SR3USR.DATA1           20979712   12           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPTEMP       ONLINE#    ONLINE+   D:\ORACLE\BWD\SAPDATA1\TEMP_1\TEMP.DATA1             1048584192   -1           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPUNDO       ONLINE-    ONLINE+   D:\ORACLE\BWD\SAPDATA1\UNDO_1\UNDO.DATA1             8115986432    2           3  NOLINK  FILE   10485760000     20971520     8192
    SYSAUX         ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA1\SYSAUX_1\SYSAUX.DATA1          209723392    3           3  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM+   D:\ORACLE\BWD\SAPDATA1\SYSTEM_1\SYSTEM.DATA1          524296192    1           3  NOLINK  FILE   10485760000     20971520     8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    D:\ORACLE\BWD\ORIGLOGA\LOG_G11M1.DBF            52429312    1            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGA\LOG_G11M2.DBF            52429312    1            2  INUSE     NOLINK  FILE
    D:\ORACLE\BWD\ORIGLOGB\LOG_G12M1.DBF            52429312    2            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGB\LOG_G12M2.DBF            52429312    2            2  INUSE     NOLINK  FILE
    D:\ORACLE\BWD\ORIGLOGA\LOG_G13M1.DBF            52429312    3            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGA\LOG_G13M2.DBF            52429312    3            2  INUSE     NOLINK  FILE
    D:\ORACLE\BWD\ORIGLOGB\LOG_G14M1.DBF            52429312    4            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGB\LOG_G14M2.DBF            52429312    4            2  INUSE     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    D:\oracle\BWD\origlogA\cntrl\cntlrBWD.dbf       12664832    0            3  NOLINK  FILE
    D:\oracle\BWD\origlogB\cntrl\cntrlBWD.dbf       12664832    0            3  NOLINK  FILE
    D:\oracle\BWD\sapdata1\cntrl\cntrlBWD.dbf       12664832    0            3  NOLINK  FILE
    BR0616I Tablespaces in table TSORA for SAP owner SAPSR3:
    PSAPSR3, PSAPSR3700, PSAPSR3USR
    BR0280I BRBACKUP time stamp: 2007-08-03 13.32.40
    BR0057I Backup of database: BWD
    BR0058I BRBACKUP action ID: bdvvpedp
    BR0059I BRBACKUP function ID: anf
    BR0110I Backup mode: ALL
    BR0077I Database file for backup: D:\oracle\BWD\sapbackup\CNTRLBWD.DBF
    BR0061I 18 files found for backup, total size 42192.211 MB
    BR0143I Backup type: online
    BR0130I Backup device type: util_file
    BR0109I Files will be saved by backup utility
    BR0289I BRARCHIVE will be started at the end of processing
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0280I BRBACKUP time stamp: 2007-08-03 13.32.41
    BR0315I 'Alter database begin backup' successful
    BR0280I BRBACKUP time stamp: 2007-08-03 13.32.41
    BR0229I Calling backup utility with function 'backup'...
    BR0280I BRBACKUP time stamp: 2007-08-03 13.34.10
    #FILE..... D:\oracle\BWD\sapbackup\CNTRLBWD.DBF
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 13.34.29
    #FILE..... D:\ORACLE\BWD\SAPDATA1\SYSAUX_1\SYSAUX.DATA1
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 13.35.13
    #FILE..... D:\ORACLE\BWD\SAPDATA1\SYSTEM_1\SYSTEM.DATA1
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 13.46.48
    #FILE..... D:\ORACLE\BWD\SAPDATA1\UNDO_1\UNDO.DATA1
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 13.49.58
    #FILE..... D:\ORACLE\BWD\SAPDATA2\SR3_1\SR3.DATA1
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 13.53.15
    #FILE..... D:\ORACLE\BWD\SAPDATA2\SR3_2\SR3.DATA2
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 13.56.26
    #FILE..... D:\ORACLE\BWD\SAPDATA2\SR3_3\SR3.DATA3
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 13.59.36
    #FILE..... D:\ORACLE\BWD\SAPDATA2\SR3_4\SR3.DATA4
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.02.46
    #FILE..... D:\ORACLE\BWD\SAPDATA2\SR3_5\SR3.DATA5
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.08.08
    #FILE..... D:\ORACLE\BWD\SAPDATA3\SR3700_1\SR3700.DATA1
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.13.42
    #FILE..... D:\ORACLE\BWD\SAPDATA3\SR3700_2\SR3700.DATA2
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.18.59
    #FILE..... D:\ORACLE\BWD\SAPDATA3\SR3700_3\SR3700.DATA3
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.24.10
    #FILE..... D:\ORACLE\BWD\SAPDATA3\SR3700_4\SR3700.DATA4
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.29.21
    #FILE..... D:\ORACLE\BWD\SAPDATA3\SR3700_5\SR3700.DATA5
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.32.18
    #FILE..... D:\ORACLE\BWD\SAPDATA4\SR3DB_1\SR3DB.DATA1
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.35.16
    #FILE..... D:\ORACLE\BWD\SAPDATA4\SR3DB_2\SR3DB.DATA2
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.36.45
    #FILE..... D:\ORACLE\BWD\SAPDATA4\SR3DB_3\SR3DB.DATA3
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.36.47
    #FILE..... D:\ORACLE\BWD\SAPDATA4\SR3USR_1\SR3USR.DATA1
    #SAVED.... 1186119250
    BR0280I BRBACKUP time stamp: 2007-08-03 14.55.51
    BR0232I 18 of 18 files saved by backup utility
    BR0230I Backup utility called successfully
    BR0280I BRBACKUP time stamp: 2007-08-03 14.55.56
    BR0317I 'Alter database end backup' successful
    BR0280I BRBACKUP time stamp: 2007-08-03 14.55.56
    BR0340I Switching to next online redo log file for database instance BWD ...
    BR0321I Switch to next online redo log file for database instance BWD successful
    BR0117I ARCHIVE LOG LIST after backup for database instance BWD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            C:\oracle\BWD\oraarch\BWDarch
    Archive format                 ARC%S_%R.%T
    Oldest online log sequence     824
    Next log sequence to archive   827
    Current log sequence           827              SCN: 6126274
    Database block size            8192             Thread: 1
    Current system change number   6126276          ResetId: 628786982
    BR0018I Waiting for the next offline redo log file...
    BR0280I BRBACKUP time stamp: 2007-08-03 14.56.02
    BR0229I Calling backup utility with function 'backup'...
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.29
    #PFLOG.... D:\oracle\BWD\102\database\initBWD.ora
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.29
    #PFLOG.... D:\oracle\BWD\102\database\initBWD.sap
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.30
    #PFLOG.... D:\oracle\BWD\102\database\spfileBWD.ora
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.30
    #PFLOG.... D:\oracle\BWD\sapbackup\backBWD.log
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.31
    #PFLOG.... D:\oracle\BWD\sapbackup\bdvvpedp.anf
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.31
    #PFLOG.... D:\oracle\BWD\sapreorg\spaceBWD.log
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.31
    #PFLOG.... D:\oracle\BWD\sapreorg\strucBWD.log
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 14.57.33
    #PFLOG.... D:\usr\sap\BWD\SYS\exe\uc\NTI386\biparam.ini
    #SAVED.... 1186124248
    BR0280I BRBACKUP time stamp: 2007-08-03 15.01.28
    BR0232I 8 of 8 files saved by backup utility
    BR0230I Backup utility called successfully
    BR0056I End of database backup: bdvvpedp.anf 2007-08-03 15.01.28
    BR0280I BRBACKUP time stamp: 2007-08-03 15.01.28
    BR0052I BRBACKUP completed successfully
    BR0280I BRBACKUP time stamp: 2007-08-03 15.01.28
    BR0291I BRARCHIVE will be started with options '-U -jid ALLOG20070803133227 -d util_file -c force -p initBWD.sap -cds'
    BR0280I BRBACKUP time stamp: 2007-08-03 15.15.55
    BR0292I Execution of BRARCHIVE finished with return code 0
    Failed “AllOff+Log”
    BRABCKUP Detail log for database BWD
    Detailliertes Protokoll: bdvvvghm.aff
    BR0051I BRBACKUP 7.00 (18)
    BR0055I Start of database backup: bdvvvghm.aff 2007-08-04 19.14.26
    BR0477I Oracle pfile D:\oracle\BWD\102\database\initBWD.ora created from spfile D:\oracle\BWD\102\database\spfileBWD.ora
    BR0101I Parameters
    Name                           Value
    oracle_sid                     BWD
    oracle_home                    D:\oracle\BWD\102
    oracle_profile                 D:\oracle\BWD\102\database\initBWD.ora
    sapdata_home                   D:\oracle\BWD
    sap_profile                    D:\oracle\BWD\102\database\initBWD.sap
    backup_mode                    ALL
    backup_type                    offline_force
    backup_dev_type                util_file
    util_par_file                  D:\usr\sap\BWD\SYS\exe\uc\NTI386\biparam.ini
    system_info                    SAPServiceBWD KHBWDEV Windows 5.2 Build 3790 Service Pack 2 Intel
    oracle_info                    BWD 10.2.0.2.0 8192 829 6191434 KHBWDEV UTF8 UTF8
    sap_info                       700 SAPSR3 BWD TEMPLICENSE R3_ORA INITIAL
    make_info                      NTintel OCI_10201_SHARE Oct 27 2006
    command_line                   brbackup -u / -jid ALGOF20070804191417 -c force -t offline_force -m all -p initBWD.sap -a -c force -p initBWD.sap -cds
    BR0116I ARCHIVE LOG LIST before backup for database instance BWD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            C:\oracle\BWD\oraarch\BWDarch
    Archive format                 ARC%S_%R.%T
    Oldest online log sequence     826
    Next log sequence to archive   829
    Current log sequence           829              SCN: 6191434
    Database block size            8192             Thread: 1
    Current system change number   6215407          ResetId: 628786982
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_1\SR3.DATA1               2243960832    4           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_2\SR3.DATA2               2327846912    5           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_3\SR3.DATA3               2243960832    6           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_4\SR3.DATA4               2243960832    7           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA2\SR3_5\SR3.DATA5               2243960832   16           3  NOLINK  FILE    3145728000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_1\SR3700.DATA1         3795853312    8           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_2\SR3700.DATA2         3942653952    9           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_3\SR3700.DATA3         3732938752   10           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_4\SR3700.DATA4         3670024192   11           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA3\SR3700_5\SR3700.DATA5         3670024192   17           3  NOLINK  FILE    4194304000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3DB_1\SR3DB.DATA1           2097160192   13           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3DB_2\SR3DB.DATA2           2097160192   14           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3DB_3\SR3DB.DATA3           1048584192   15           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3USR     ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA4\SR3USR_1\SR3USR.DATA1           20979712   12           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPTEMP       ONLINE#    ONLINE+   D:\ORACLE\BWD\SAPDATA1\TEMP_1\TEMP.DATA1             1048584192   -1           3  NOLINK  FILE   10485760000     20971520     8192
    PSAPUNDO       ONLINE-    ONLINE+   D:\ORACLE\BWD\SAPDATA1\UNDO_1\UNDO.DATA1             8115986432    2           3  NOLINK  FILE   10485760000     20971520     8192
    SYSAUX         ONLINE*    ONLINE+   D:\ORACLE\BWD\SAPDATA1\SYSAUX_1\SYSAUX.DATA1          209723392    3           3  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM+   D:\ORACLE\BWD\SAPDATA1\SYSTEM_1\SYSTEM.DATA1          524296192    1           3  NOLINK  FILE   10485760000     20971520     8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    D:\ORACLE\BWD\ORIGLOGA\LOG_G11M1.DBF            52429312    1            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGA\LOG_G11M2.DBF            52429312    1            2  INUSE     NOLINK  FILE
    D:\ORACLE\BWD\ORIGLOGB\LOG_G12M1.DBF            52429312    2            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGB\LOG_G12M2.DBF            52429312    2            2  INUSE     NOLINK  FILE
    D:\ORACLE\BWD\ORIGLOGA\LOG_G13M1.DBF            52429312    3            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGA\LOG_G13M2.DBF            52429312    3            2  INUSE     NOLINK  FILE
    D:\ORACLE\BWD\ORIGLOGB\LOG_G14M1.DBF            52429312    4            3  INUSE     NOLINK  FILE
    C:\ORACLE\BWD\MIRRLOGB\LOG_G14M2.DBF            52429312    4            2  INUSE     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    D:\oracle\BWD\origlogA\cntrl\cntlrBWD.dbf       12664832    0            3  NOLINK  FILE
    D:\oracle\BWD\origlogB\cntrl\cntrlBWD.dbf       12664832    0            3  NOLINK  FILE
    D:\oracle\BWD\sapdata1\cntrl\cntrlBWD.dbf       12664832    0            3  NOLINK  FILE
    BR0616I Tablespaces in table TSORA for SAP owner SAPSR3:
    PSAPSR3, PSAPSR3700, PSAPSR3USR

    Thanks, I'm actually on 12 and facing the same issue. did you replace your executables as well?
    cheers
    kev

  • How to set SORT_AREA_RETAINED_SIZE from a value to NOT SET in spfile

    Hi,
    I am trying to change the SORT_AREA_RETAINED_SIZE=148374 to NOT SET in spfile using the following command:
    alter system set SORT_AREA_RETAINED_SIZE='' scope=spfile;
    but couldn't get this?
    is there any other way except changing manually in pfile and change to spfile?

    Did you restart the instance after you make the change? The values from the spfile are read only at instance startup.

  • Page not found, ORA-07445: exception encountered: core dump

    any one can help me to check this log? I get "page not found" occasionally.thanks .
    Dump file f:\oraclexe\app\oracle\admin\xe\bdump\alert_xe.log
    Tue Jan 08 18:14:24 2008
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows XP Version V5.1 Service Pack 1
    CPU : 2 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:2991M/3583M, Ph+PgF:4952M/5471M, VA:1945M/2047M
    Tue Jan 08 18:14:24 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    __shared_pool_size = 222298112
    __large_pool_size = 16777216
    __java_pool_size = 4194304
    __streams_pool_size = 0
    spfile = F:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DBS\SPFILEXE.ORA
    sga_target = 805306368
    control_files = F:\ORACLEXE\ORADATA\XE\CONTROL.DBF
    __db_cache_size = 557842432
    compatible = 10.2.0.1.0
    db_recovery_file_dest = F:\oraclexe\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 5
    job_queue_processes = 4
    audit_file_dest = F:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = F:\ORACLEXE\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = F:\ORACLEXE\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = F:\ORACLEXE\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 268435456
    PMON started with pid=2, OS id=1132
    PSP0 started with pid=3, OS id=3612
    MMAN started with pid=4, OS id=2392
    DBW0 started with pid=5, OS id=3624
    LGWR started with pid=6, OS id=1356
    CKPT started with pid=7, OS id=1164
    SMON started with pid=8, OS id=3832
    RECO started with pid=9, OS id=2904
    CJQ0 started with pid=10, OS id=2844
    MMON started with pid=11, OS id=2176
    Tue Jan 08 18:14:24 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=12, OS id=1292
    Tue Jan 08 18:14:24 2008
    starting up 5 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Tue Jan 08 18:14:24 2008
    alter database mount exclusive
    Tue Jan 08 18:14:28 2008
    Setting recovery target incarnation to 2
    Tue Jan 08 18:14:28 2008
    Successful mount of redo thread 1, with mount id 2524594368
    Tue Jan 08 18:14:28 2008
    Database mounted in Exclusive Mode
    Completed: alter database mount exclusive
    Tue Jan 08 18:14:28 2008
    alter database open
    Tue Jan 08 18:14:28 2008
    Beginning crash recovery of 1 threads
    Tue Jan 08 18:14:28 2008
    Started redo scan
    Tue Jan 08 18:14:28 2008
    Completed redo scan
    1305 redo blocks read, 132 data blocks need recovery
    Tue Jan 08 18:14:28 2008
    Started redo application at
    Thread 1: logseq 62, block 3
    Tue Jan 08 18:14:29 2008
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 62 Reading mem 0
    Mem# 0 errs 0: F:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_3NX4T37T_.LOG
    Tue Jan 08 18:14:29 2008
    Completed redo application
    Tue Jan 08 18:14:29 2008
    Completed crash recovery at
    Thread 1: logseq 62, block 1308, scn 126409946604
    132 data blocks read, 132 data blocks written, 1305 redo blocks read
    Tue Jan 08 18:14:30 2008
    Thread 1 advanced to log sequence 63
    Thread 1 opened at log sequence 63
    Current log# 2 seq# 63 mem# 0: F:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_3NX4T4J3_.LOG
    Successful open of redo thread 1
    Tue Jan 08 18:14:30 2008
    SMON: enabling cache recovery
    Tue Jan 08 18:14:30 2008
    Successfully onlined Undo Tablespace 1.
    Tue Jan 08 18:14:30 2008
    SMON: enabling tx recovery
    Tue Jan 08 18:14:30 2008
    Database Characterset is AL32UTF8
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=20, OS id=524
    Tue Jan 08 18:14:32 2008
    Completed: alter database open
    Tue Jan 08 18:14:33 2008
    db_recovery_file_dest_size of 10240 MB is 0.98% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Tue Jan 08 18:14:53 2008
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2208K exceeds notification threshold (2048K)
    KGL object name :XDB.XDbD/PLZ01TcHgNAgAIIegtw==
    Tue Jan 08 18:56:55 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s000_3780.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 18:56:55 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s000_3780.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 18:56:56 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s000_3780.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 18:57:00 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s001_3252.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 18:57:00 2008
    found dead shared server 'S000', pid = (14, 1)
    Tue Jan 08 18:57:00 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s001_3252.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 18:57:01 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s001_3252.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 18:58:00 2008
    found dead shared server 'S001', pid = (15, 1)
    Tue Jan 08 19:03:56 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s000_1816.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 19:03:57 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s000_1816.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 19:03:57 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s000_1816.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 19:03:58 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s001_3056.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 19:04:03 2008
    found dead shared server 'S000', pid = (14, 2)
    Tue Jan 08 19:04:03 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s002_312.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 19:05:03 2008
    found dead shared server 'S001', pid = (15, 2)
    found dead shared server 'S002', pid = (16, 1)
    Tue Jan 08 19:05:30 2008
    Errors in file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s002_2864.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Tue Jan 08 19:06:03 2008
    found dead shared server 'S002', pid = (16, 2)

    Anyone can help on it?
    The content in trc :
    Dump file f:\oraclexe\app\oracle\admin\xe\bdump\xe_s000_4016.trc
    Thu Jan 10 11:22:05 2008
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Windows XP Version V5.1 Service Pack 1
    CPU : 2 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:2860M/3583M, Ph+PgF:4122M/5471M, VA:1095M/2047M
    Instance name: xe
    Redo thread mounted by this instance: 1
    Oracle process number: 14
    Windows thread id: 4016, image: ORACLE.EXE (S000)
    *** ACTION NAME:(PAGE 4150) 2008-01-10 11:22:05.390
    *** MODULE NAME:(APEX:APPLICATION 4000) 2008-01-10 11:22:05.390
    *** SERVICE NAME:(SYS$USERS) 2008-01-10 11:22:05.390
    *** CLIENT ID:(DENNIS:4389204267300536) 2008-01-10 11:22:05.390
    *** SESSION ID:(27.149) 2008-01-10 11:22:05.390
    *** 2008-01-10 11:22:05.390
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Current SQL statement for this session:
    COMMIT
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    3BFE8478 6676 package body FLOWS_030000.WWV_FLOW
    3BFE8478 9782 package body FLOWS_030000.WWV_FLOW
    3BFF9504 255 procedure FLOWS_030000.F
    3BFFC6EC 30 anonymous block
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    _npierr+487                   00000000             B70F61FA 660D72C2 F7AFA83
    1DE5487 20E88300 8D0004C2
    8589F841 FFFFFED8 F183B66
    3B686 E9098B00 3A1 10845F6
    29EE850F A2E90000 8B0002A5
    8AFE909 6A0000 82474FF 707E8
    ~~~~~~~~~~~~~~~~
    4C200 33104D8B C1D18BC0
    ABF302E9 E183CA8B E9AAF303
    3FA 2468B66 FC83B66 E5982
    C33B6600 9451850F 5B80002
    *** 2008-01-10 11:22:06.406
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Current SQL statement for this session:
    COMMIT
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    3BFE8478 6676 package body FLOWS_030000.WWV_FLOW
    3BFE8478 9782 package body FLOWS_030000.WWV_FLOW
    3BFF9504 255 procedure FLOWS_030000.F
    3BFFC6EC 30 anonymous block
    ksedmp: Obtaining call stack failed twice. not retrying

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • SR Log Error - |  Message  : com.sap.esi.uddi.sr.api.exceptions.SRException

    Hi,
    We are getting below errors in /nwa/logs. We have our PI (7.11) and Service Registry configured on the same server. And have out CE (7.2) system connected to this service registry. Does any one has similar experience? Please let me know if you have any solution for the same.
    SR Log Error
    |  11-Nov-11  14:10:45.568
    |  Method   : getClassificationSystems()
    |  Class    : com.sap.esi.uddi.sr.api.ws.ServicesRegistrySiImplBean
    |  ThreadID : 146
    |  Message  : com.sap.esi.uddi.sr.api.exceptions.SRException: No classification system found for ID 'QName: Namespace= http://uddi.sap.com/classification; Name=  ConfigurationFlags'
    |
    |       com.sap.esi.uddi.sr.impl.common.Utility.cs2srException(Utility.java:122)
    |       com.sap.esi.uddi.sr.impl.ejb.ServicesRegistryBean.getClassificationSystems(ServicesRegistryBean.java:242)
    |       sun.reflect.GeneratedMethodAccessor1325.invoke(Unknown Source)
    |       sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    |       java.lang.reflect.Method.invoke(Method.java:585)
    |       com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:46)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:38)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:22)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133)
    |       com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
    |       $Proxy1087.getClassificationSystems(Unknown Source)
    |       com.sap.esi.uddi.sr.api.ws.ServicesRegistrySiImplBean.getClassificationSystems(ServicesRegistrySiImplBean.java:456)
    |       sun.reflect.GeneratedMethodAccessor1324.invoke(Unknown Source)
    |       sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    |       java.lang.reflect.Method.invoke(Method.java:585)
    |       com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:46)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_WS.invoke(Interceptors_WS.java:31)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:38)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:22)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16)
    |       com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    |       com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133)
    |       com.sap.engine.services.ejb3.webservice.impl.DefaultImplementationContainer.invokeMethod(DefaultImplementationContainer.java:203)
    |       com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.process0(RuntimeProcessingEnvironment.java:512)
    |       com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.preProcess(RuntimeProcessingEnvironment.java:486)
    |       com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.process(RuntimeProcessingEnvironment.java:256)
    |       com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPostWOLogging(ServletDispatcherImpl.java:176)
    |       com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPostWithLogging(ServletDispatcherImpl.java:112)
    |       com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:70)
    |       SoapServlet.doPost(SoapServlet.java:51)
    |       javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
    |       javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
    |       com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:140)
    |       com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:37)
    |       com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:486)
    |       com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:298)
    |       com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:396)
    |       com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:385)
    |       com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:48)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:84)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:245)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:78)
    |       com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    |       com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    |       com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    |       com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:43)
    |       com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:42)
    |       com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    |       com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    |       com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:428)
    |       com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:247)
    |       com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:45)
    |       com.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
    |       com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
    |       com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    |

    Hi,
    Refer Error:Service Registyr Configuration PI 7.11
    and http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8071b1b8-3c5c-2e10-e7af-8cadbc49d711?QuickLink=index&overridelayout=true
    Thanks,
    Chandra

Maybe you are looking for