Access Denied when access to File System Repository

Hi,
  Our SAP Portal install in Windows 2003, and access to a unix's file system that created from File System Repository of Portal. When I access it in KM content, SAP Portal return the following message:
System Error
An exception occurred during the program execution. Below you will find technical information pertaining to this exception that you might want to forward to your system administrator.
Exception Class: class com.sapportals.wcm.repository...
Exception Message: Access denied
If I double-click any file,
IE return 403: The requested operation is forbidden for this resource.
Please help me to fix this problem?
PS: The unix's file system mode is 777.
    The permission of folder in Portal File System Repository is everyone full control.
Message was edited by: Jeff Lien
Message was edited by: Jeff Lien

Hi,
to my knowledege, this combination is not supported. You can integrated Windows-File-Shares in a Unix-Portal: http://help.sap.com/saphelp_nw04/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm but not the other way round
Kind reagrds
karin

Similar Messages

  • Access Denied when Open Offline File.

    Dear All,
    User has Network Share (with full permission to access files and Folders), I have configure it as an Offline folder (Always available). 
    Problem is that when on network he can access and open all the files. But when he goes offline (No Network), he can open all the Folders but when he tried to open some files few of them are giving errors. "Access Denied"
    Encryption is not enable.
    Can anyone please suggest the resolution.
    Thanks
    Kamran 
    Best Regards

    Hi,
    Please make sure all these file are enabled offline.
    Please see if this article is helpful to you:
    Users may receive an "Access is denied" error message if you make files and folders available for offline use
    http://support.microsoft.com/kb/275461
    Meanwhile, try this:
    1.Make sure that your files and folder have been synchronized. Reinitializing the cache prior to synchronizing will
    cause you to lose any data that isn’t synchronized.
    2.Click Start, type regedit in the Start Search box, and then press
    ENTER.
    If you are prompted for an administrator password or for a confirmation, type the password, or click Continue.
    3.Locate the following registry subkey, and then right-click it:
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\CSC
    4.Point to New, and then click Key.
    5.Type Parameters in the box.
    6.Right-click Parameters, point to New, and then click DWORD (32-bit)Value.
    7.Type FormatDatabase, and then press ENTER.
    8.Right-click FormatDatabase, and then click Modify.
    9.In the Value data box, type 1, and then click OK.
    10.Exit Registry Editor, and then restart the computer.
    Karen Hu
    TechNet Community Support

  • Access Denied when uploading a file

    Just changed web hosting providers.
    I'm using Contribute 4. This problem only seems to happen
    when I'm linking a new file from our network (ie PDF file) into a
    Webpage to be published with the Webpage.
    I link the file, hit publish, get "Access Denied" and the
    Webpage is in edit mode. But if I go browse to the Webpage, the
    file successfully published and uploaded the PDF file. So it's like
    it's throwing the error directly after publishing the PDF file. I
    then just go into my draft Webpage and cancel the draft. Sounds
    like a weird permissions problem. Anybody ever have this
    happen?

    If you created the file(s) and then made sure the streams were closed and no other process/program was using the file(s), then it should delete.
    If you didn't create the files, you should look at the security policy on your system.

  • Access denied when I move files from MacBook to desktop

    When move files from my MacBook Pro to my G5 desktop, I can't open them. I get an "access denied" message. I can fix the problem by going to "info" and changing the access, but how can I fix this so it doesn't happen at all? I don't want to have the hassle of resetting the access for each file every time I swap files back and forth between the laptop and desktop.

    Ask and you will receive:
    You can do the same thing in terminal using the chmod command, but it requires a bit more of a learning curve.
    Leo server has a Built in GUI that allows you to do the same thing as Sandbox, I really feel Apple should have included something similar in the consumer version of Leo, since we are forced to deal with ACL's in Leo whether we want to or not. They are turned on by default and can only be turned off temporarily (fsaclctl command) as they will resume automatically at the next reboot.
    Of course you must master the basics before attempting
    ACL's from the command line.
    Here are some links to some Leo ACL and command line documents:
    http://www.afp548.com/filemgmt/index.php?id=40
    http://manuals.info.apple.com/enUS/Command_Line_Adminv10.5.pdf
    http://manuals.info.apple.com/enUS/File_Services_Adminv10.5.pdf
    http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/chmod.1. html
    These tools will guide you in your quest.
    And don't forget grasshopper: "wax on - wax off"
    Kj

  • Access denied when putting a file in the System32 folder.

    Hi,
    I have this code in de Program.cs:
    TrialMaker t = new TrialMaker("TMTest1",
    Application.StartupPath + "\\RegFile.reg",
    Environment.GetFolderPath(Environment.SpecialFolder.System) +
    "\\TMSetp.dbf",
    "Phone: +98 21 88281536\nMobile: +98 912 2881860",
    5, 10, "745");
    It must put a file called TMSetp.dbf in the system32-folder of the Windwows-folder.
    But I get error: Access to the path 'C:\Windows\system32\TMSetp.dbf' is denied.
    What can I do about this problem?
    Greetings,
    Peter Kiers

    It must put a file called TMSetp.dbf in the system32-folder of the Windwows-folder.
    But I get error: Access to the path 'C:\Windows\system32\TMSetp.dbf' is denied.
    What can I do about this problem?
    Either:
    1. Run your code in a process that has sufficient permission to write
    to that directory, or
    2. Write the file elsewhere - where you have permission.
    Dave

  • Access Denied when accessing ipc$ but not admin$ of a Windows 2008 R2 Standard server

    From a Windows 2008 R2 Server,
    c:\> net use * \\<winserver2008>\ipc$ 
    System error 66 has occurred.
    The network resource type is not correct.
    c:\> net use * \\<winserver2008>\admin$ 
    Drive Z: is now connected to \\<winserver2008\admin$.
    However, running the above commands from a Windows 2003 Server, I have no problem at all.
    Does anyone has any idea?

    Hello nww,
    The problem is caused by UAC and the elevated privileges required to access the administrative shares. This
    Microsoft KB article (951016) describes the issue in Windows Vista
    To better protect those users who are members of the local Administrators group, we implement UAC restrictions on the network. This mechanism helps prevent against "loopback" attacks. This mechanism also helps prevent local malicious software
    from running remotely with administrative rights.
    and the steps to resolve it, open a new PowerShell window as administrator:
    New-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System -name "LocalAccountTokenFilterPolicy" -value "1" -propertyType dword
    A word of caution: this is opening up a security hole and it should only be done with careful consideration of the risks. The need to use PSExec to remotely run a process was an important part of the deployment, however the same result
    could be achieved using PowerShell remoting. Until it’s tested and we’re ready to deploy that, I’ll be using this method.
    source

  • Get "Access Denied" when click open a PDF file

    Hi Friends,
    Get "Access Denied" when click open a PDF file linked from SharePoint 2013 page.
    What are the route causes any one is remove the permissions are stopped the inheritance permissions of the library.
    Can anyone face the same issue please help me.
    Thanks,
    Tiru
    tirupal

    Hi,
    If you are able to open the same document earlier,then  anonymous access enabled on your doc library then.
    If you are facing this problem in first time,then you do not have required permission (may be custom permission level has been set ) on it.
    Murugesa Pandian.,MCTS|App.Development|Configure

  • Access Denied when saving file - CS5 & Win7

    Using Dreamweaver CS5 and Win7...  Sporatically, I will try to save my .html file and will get an error saying "access denied" to the .tmp file.  So I do a "Save As" to another file name and then the original file literally disappears (is deleted / erased) from my hard drive.  No where to be found!
    Has anyone else had this experience?  Is there a work around?
    Godspeed,
    Omar

    Here's the solution (as I learned from other forum posts):
    - Disable the Preview Pane in Windows 7...
    or
    - Simply "deselect" the file in Windows Explorer (thus deactivating the "Preview" of the file) and try to save it again.  The "Save As" dialog will appear and you can save it with the same name.
    What is actually happening:
    When a file is selected in Windows Explorer and the Preview Pane is enabled, Windows 7 displays the file (and locks it).  If the file is also open in Dreamweaver and any modifications are made, the file is considered a temp (.tmp) file by Windows as it is already in use by the Preview Pane (and locked).  When you try to save the modified file in Dreamweaver, you get the "Access Denied" error.  If you go into Windows Explorer and deselect the file, the file will disappear (be deleted / removed) as Windows now considers it a "temp" file that is no longer being previewed. At this time (assuming you didn't close the file in Dreamweaver) you can try to save it again and a "Save As" dialog will open (since the original file was deleted).
    Hope this helps!
    Godspeed,
    Omar

  • Access denied. Error in File C:\WINDOWS\TEMP\

    I have searched on Google and all over this forum and none of the solutions have fixed my problem.
    Crystal Version: Crsytal.Net for Visual Studio.Net 2005
    Server: Windows Server 2003
    Error:
    Access denied. Error in File C:\WINDOWS\TEMP\JuryDutyReport {D6296178-3E72-483E-B876-2DFC03D00841}.rpt: Access to report file denied. Another program may be using it.
    When I run my app locally through the Web Server that comes with ASP.Net, everything is fine, it is only when I deploy the application to the Windows 2003 Server that I get the error.
    I'm using impersonation in my ASP.Net application.  I have given that domain user full access to 'C:\Windows\Temp'', the export folder and even the folder where the Crystal Report resides on the Server.  When I run the application on the Web Server, I actually see the ".rpt" get created in the "C:\Windows\Temp" folder but yet it still says there is a permissions error.
    What is bizarre is that the code below that just sends the file to the printer automatically works:
      private void PrintJuryDutyReport(DataSet ds)
            //create report document
            ReportDocument crDoc = new ReportDocument();
            //load, set datasource and print options
            crDoc.Load(Server.MapPath("~/Reports/JuryDutyReport.rpt"));
            crDoc.SetDataSource(ds); //set datasource
            crDoc.PrintOptions.PrinterName = ddlPrinters.SelectedValue.ToString(); //set printername
            crDoc.PrintOptions.PaperOrientation = PaperOrientation.Portrait; //set paper orientation
            crDoc.SetParameterValue("ParamUsername", User.Identity.Name); //set parameter
            crDoc.PrintToPrinter(1, false, 0, 0); //send to printer
    I have to change the code to export to a PDF and this code doesn't work:
        private void PrintJuryDutyReport(DataSet ds)
            //report document
            ReportDocument crDoc = new ReportDocument();
            string myfile = @"G:\COPFS\COPFSPROD\ReportsTemp\MyPDF.pdf";
            //load, set datasource and print options
            crDoc.Load(Server.MapPath("~/Reports/JuryDutyReport.rpt"));
            crDoc.SetDataSource(ds); //set datasource
            crDoc.SetParameterValue("ParamUsername", User.Identity.Name); //set parameter
            //export through http
            crDoc.ExportToDisk(ExportFormatType.PortableDocFormat, myfile);
            crDoc.Close();
            crDoc.Dispose();
            Response.ClearContent();
            Response.ClearHeaders();
            Response.ContentType = "Application/pdf";
            Response.AppendHeader("content-disposition", "attachment; filename=" + myfile);
            Response.WriteFile(myfile);
            Response.Flush();
            Response.Close();
    Any help is greatly appreciated as I have to present this to end users tomorrow.

    Don, thanks for the response.
    As a last ditch effort, I granted "modify" to the Network Service Account on C:\Windows\Temp and that fixed the error.
    There are two things that are troubling about this:
    1) I'm impersonating a domain user in my ASP.Net application and when the PDF is created, the owner is that domain user, so I know impersonation is working.  So I wonder if ASP.Net picks and chooses what account it runs under at different times?
    2) It is a little scary for the Network Service Account to have this access but that people seem to be fine with it.
    http://aspadvice.com/blogs/rjdudley/archive/2005/03/14/2566.aspx

  • Photoshop cs4 access denied when trying to install from disc in Windows 7 64bit.

    Photoshop cs4 access denied when trying to install from disc in Windows 7 64bit. I tried it in
    safe mode and it starts to install but get an error there as well.
    What do I do?

    So when you put the disk in it won't run correctly? When the disk is inserted you should have a window pop up with 2 options. 1 to install and the other to see what is on the disk. Choose to explore or open the disk. Go to the CS4 folder where the photoshop .exe file is (that will run the setup), right click on the .exe file and choose run as Admin and it should start. See if it will install. If not then read below.
    I am not sure how far you got in the install before so chances are you will have to run the CS4 cleanup utility. 2 levels to run at but don't use 1 or 2 just type in the number 3.
    http://www.adobe.com/support/contact/cs4clean.html
    You may need to run the windows installer cleanup utility too
    http://support.microsoft.com/kb/290301
    Before you try to reinstall the software ensure that adobe reader is not installed. If it is remove it. It has caused issues in the past with vista and CS4 installs.
    Also turn off windows Defender and any anti-virus software. You can keep UAC on in Windows 7.
    During the CS4 install at 90 percent it will almost stop and may take 5 to 10 mins to finish. This is normal. What a pain huh......
    After install is finished, reboot
    After reboot, go to the CS4 64 bit or 32 bit icon (depends on 32 or 64 bit Windows 7) in start area, right click on CS4 64 bit (if you have windows 7 64 bit) and choose properties, compatibility tab and then check run as Admin at the bottom area. Hit apply, ok to close out.
    Now start CS4 and run the updater.

  • Access denied (Object: com.sap.portal.system/security/no_safety)

    We are implementing EP 6.0, currently with SP11. We have developed some iViews, which are using RFC functions to get information from backend system, in this case SRM.
    Everything worked fine, till the day we’ve transported those developments into other systems (production and testing systems). We are getting the following error Access denied (Object: com.sap.portal.system/security/no_safety). This error only comes out if the iView is called from inside another one, if called isolated it works fine.
    Does any one have any idea about how to solve this?

    Hi AA, you can find in the log file in order to identify what is the object that you need to add in the security zone.
    You can find information for the security zones on:
    http://help.sap.com/saphelp_nw04/helpdata/en/25/85de55a94c4b5fa7a2d74e8ed201b0/content.htm
    Regards.

  • Access Denied when Student Uploads Course in Drop Box

    All of a sudden we are getting access denied when a student tries to upload a course. We have not changed anything on our end. The tabs on the course page are set to drop box for student. The credentials sent over are:
    StudentBody@urn:mace:itunesu.com:sites:school.edu;Student@urn:mace:itunesu.com:s ites:school.edu:SPC16001002134
    The SPC16001002134 is the course identifier.
    Access to the course for student is set to download:
    Access Level: Download
    Credential Definition: Student@urn:mace:itunesu.com:sites:school.edu:${IDENTIFIER}
    Group Access Label: Student

    Hi,
    I need a bit more information. Can you please post your site's domain so that I can inspect it? It appears you have replaced this with school.edu.
    Thanks.

  • Crawler Error when indexing file system repository

    Hi all:
    I am configuring an index of File system repository.
    The version of my ep is EP 7.0 sp12, installed on HP-UX
    My Trex is 7.0,installed on Win 2003
    Some of the properties of my repository is:
    Services:    properties,rating
    Property serch Manager:    SimplePropertySearchManager
    Security Manager:     AclSecurityManager
    The states of repository is green.
    When I create an index, the index can't index any of the files. Please help me to see the problem. Thank you!
    Exception is like:
    class com.sapportals.wcm.repository.InvalidNameException
    Logon failure: account currently disabled.
    com.sapportals.wcm.repository.InvalidNameException: Logon failure: account currently disabled.
            at com.sapportals.wcm.repository.ResourceException.fillInStackTrace(ResourceException.java:399)
            at java.lang.Throwable.(Throwable.java:195)
            at java.lang.Exception.(Exception.java:41)
            at com.sapportals.wcm.WcmException.(WcmException.java:59)
            at com.sapportals.wcm.util.content.ContentException.(ContentException.java:38)
            at com.sapportals.wcm.repository.ResourceException.(ResourceException.java:238)
            at com.sapportals.wcm.repository.InvalidNameException.(InvalidNameException.java:33)
            at com.sapportals.wcm.repository.util.file.FileUtils.checkFilePathTolerating(FileUtils.java:140)
            at com.sapportals.wcm.repository.util.file.FileUtils.checkFilePath(FileUtils.java:103)
            at com.sapportals.wcm.repository.manager.sfs.FSFile.(FSFile.java:89)
            at com.sapportals.wcm.repository.manager.sfs.FSFile.createInstance(FSFile.java:81)
            at com.sapportals.wcm.repository.manager.sfs.FSRepositoryManager.getResource(FSRepositoryManager.java:223)
            at com.sapportals.wcm.repository.RMAdapter.getResource(RMAdapter.java:227)
            at com.sapportals.wcm.repository.runtime.CmAdapter.findResource(CmAdapter.java:1349)
            at com.sapportals.wcm.repository.runtime.CmAdapter.findManagerAndResource(CmAdapter.java:1322)
            at com.sapportals.wcm.repository.runtime.CmAdapter.getResourceImpl(CmAdapter.java:979)
            at com.sapportals.wcm.repository.runtime.CmAdapter.getResource(CmAdapter.java:192)
            at com.sapportals.wcm.control.base.WcmResourceControl.createResource(WcmResourceControl.java:118)
            at com.sapportals.wcm.control.base.WcmResourceControl.getSafeResource(WcmResourceControl.java:68)
            at com.sapportals.wcm.control.navigation.ResourceDetailsHeaderControl.render(ResourceDetailsHeaderControl.java:160)
            at com.sapportals.wdf.layout.HorizontalLayout.renderControls(HorizontalLayout.java:42)
            at com.sapportals.wdf.stack.Pane.render(Pane.java:155)
            at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
            at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:73)
            at com.sapportals.wcm.control.layout.HorizontalGroupLayout.renderPanes(HorizontalGroupLayout.java:49)
            at com.sapportals.wdf.stack.Pane.render(Pane.java:158)
            at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
            at com.sapportals.wdf.WdfCompositeController.doInitialization(WdfCompositeController.java:282)
            at com.sapportals.wdf.WdfCompositeController.buildComposition(WdfCompositeController.java:660)
            at com.sapportals.htmlb.AbstractCompositeComponent.preRender(AbstractCompositeComponent.java:33)
            at com.sapportals.htmlb.Container.preRender(Container.java:120)
            at com.sapportals.htmlb.Container.preRender(Container.java:120)
            at com.sapportals.htmlb.Container.preRender(Container.java:120)
            at com.sapportals.portal.htmlb.PrtContext.render(PrtContext.java:406)
            at com.sapportals.htmlb.page.DynPage.doOutput(DynPage.java:237)
            at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doOutput(KMControllerDynPage.java:130)
            at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
            at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
            at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:77)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
            at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
            at com.sapportals.wcm.portal.connection.KmConnection.handleRequest(KmConnection.java:52)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)

    Hi Lou,
    Please go though the following thread and check your configurations according to that. I think it will help you.
    https://www.sdn.sap.com/irj/sdn/thread?threadID=403393&messageID=3429730#3429730
    regards,
    Chamkaur

  • ORA-31050: Access denied when try to register XMLSchema

    Dear All
    I got ORA-31050: Access denied
    when tried to run to load XML schema with DBMS_XMLSCHEMA.registerSchema
    Can you advise me what privilege should I grant to the user?
    I tried grant XDBADMIN role but it does nto help
    Thank you in advance
    Artem Rodin

    Dear Mark!
    I realy need you help!
    I can successfully register schema which has complexType declaration as root element, like
    <schema targetNamespace="http://www.oracle.com/PO.xsd"
         xmlns:po="http://www.oracle.com/PO.xsd"
         xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="PurchaseOrderType">
         <sequence>
              <element name="PONum" type="decimal"/>
              <element name="Company">
                   <simpleType>
                        <restriction base="string">
                             <maxLength value="100"/>
                        </restriction>
                   </simpleType>
              </element>
              <element name="Item" maxOccurs="1000">
                   <complexType>
                        <sequence>
                             <element name="Part">
                                  <simpleType>
                                       <restriction base="string">
                                            <maxLength value="1000"/>
                                       </restriction>
                                  </simpleType>
                             </element>
                             <element name="Price" type="float"/>
                        </sequence>
                   </complexType>
              </element>
         </sequence>
    </complexType>
    <!--element name="PurchaseOrder" type="po:PurchaseOrderType"/-->
    </schema>
    But I failed if in the root there is element like
    <schema targetNamespace="http://www.oracle.com/PO.xsd"
         xmlns:po="http://www.oracle.com/PO.xsd"
         xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="PurchaseOrderType">
         <sequence>
              <element name="PONum" type="decimal"/>
              <element name="Company">
                   <simpleType>
                        <restriction base="string">
                             <maxLength value="100"/>
                        </restriction>
                   </simpleType>
              </element>
              <element name="Item" maxOccurs="1000">
                   <complexType>
                        <sequence>
                             <element name="Part">
                                  <simpleType>
                                       <restriction base="string">
                                            <maxLength value="1000"/>
                                       </restriction>
                                  </simpleType>
                             </element>
                             <element name="Price" type="float"/>
                        </sequence>
                   </complexType>
              </element>
         </sequence>
    </complexType>
    <element name="PurchaseOrder" type="po:PurchaseOrderType"/>
    </schema>
    I got the following error stack
    ORA-01031: insufficient privileges
    ORA-06512: at “XDB.DBMS_XDBZ0”, line 218
    ORA-06512: at “XDB.DBMS_XDBZ”, line 6
    ORA-06512: at line 1
    ORA-06512: at “XDB.DBMS_XMLSCHEMA_INT”, line 0
    ORA-06512: at “XDB.DBMS_XMLSCHEMA”, line 26
    ORA-06512: at “XDB.DBMS_XMLSCHEMA”, line 131
    ORA-06512: at “DVLP.PRIME_BRIDGE”, line 73
    ORA-06512: at line 7
    I guess you can reproduce this in-house,
    It's not my schema it is taken from
    XML Database Developer’s Guide - Oracle XML DB
    Structured Mapping of XMLType 5-3
    Example 5–1 XML Schema Definition, po.xsd
    As far as I understand in the second case Oracle tries to create a table to store XML content and fails to do it.
    User that I used has DBA role. What other privileges should I grant to the user? And/or I should grant some additional privileges to "XDB" user?
    This issue has become critical for me, so I am highly appreciate any assistance
    Many thanks in advance
    Best regards
    Artem Rodin

  • I receive "Database access denied" when trying to add component 4543BD

    I receive "Database access denied" when trying to add component 4543BD to my schematic. This component was added from a previous version. I'm using Multisim version 12.0.0  Student edition.
    Solved!
    Go to Solution.

    Hi Diarra,
    I checked my database and  the  4543 is not in the Student Edition. If you opened a schematic that was created in a higher version such as the Educaiton Edition and copied the part to your database, when you place this part you will get the access denied message. 
    Attached is a schematic with the part, you can open it and build you circuit around it.
    Tien P.
    National Instruments
    Attachments:
    4543.ms12 ‏62 KB

Maybe you are looking for

  • Afraid to install iTunes 10.5

    The last time I did a iTunes UPGRADE my audible.com AudioBooks stopped working and I had to contact tech support and get support on resolving the issue. I completely forgot the solution that I did as it was not on their website, and it even baffled t

  • Data capturing on internet explorer.

    Dear, I would like to collect some numerical data on internet explorer depending on the web addresses by using Labview. The format on the screen is almost the same depending on slight different address on the website. What is first step for this kind

  • Static Methods & Switch Statement

    Need help with a switch statement and static methods. My program offers the user a menu to choose what they want to practice. I want to use a switch statement to process the selection. Selecting 1, 2 or 3 causes the program to go to one of the follow

  • Could not access to Windows 2003 DC. Servers resources.

    Hi, I got only 1 PowerBoob G4(Max OS X Tiger 10.4.5)in WindowsSBS 2K3 domain. At PowerBook, I can see all servers, computers on the domain and other workgroup. I also can signon and access to domain computer member (by domain member account) and work

  • Colour in prints is quite different from screen.

    Using C6180 printer and photoshop Elements, the colour of the prints is much too strong.   These are from photos of my paintings, so colour accuracy is vital.  I have lightened a lot onscreen, and reduced contrast, so they look reasonably close, but