Oracle 11gR2 on Windows 2008 R2 - access denied error

I just installed 11gR2 on a Windows 2008 R2. When I tried to unsecure the dbconsole I noticed that an "Access is denied" error is returned, so I am not able to use the stop/start/unsecure command from emctl.
I am able to log in into the db and asm, but if I try to perform an imp/exp operation an create a log file from the operation I get an error EXP-00028: failed to open <log file name> for write.
I have already turned off the firewall, but the problem persists.
I know that Windows 2008 R2 has a lot of security enhancements that could cause issues, but I don't know what else I can turn off to deal with this situation.
BTW, I am logged with an account part of the Local Admins. and it belongs to the group ora_dba.
Thanks,
Alberto

This may be a little late but did you run the command line using the Run As Administrator option? Windows 2008 will return that error when trying to do certain privileged operations under regular user rights.

Similar Messages

  • Install Oracle 11gr2 on Windows 2008 R2 with ASM step by step Guide needed

    Hi,
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.
    Thanks in advance.
    Sujith

    Hi Sujith;
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.You need to install grid first(Software only) its neccessary for ASM, Than you need to use asmca to create asm disks than you need to install 11gr2
    All doc avaliable at:
    http://www.oracle.com/pls/db112/homepage
    Regard
    Helios

  • Oracle 11GR2 on windows 2008 Geo-Dispersed cluster

    Hi all,
    anyone can guide me about the installing oracle 11GR2 on windows 2008 Geo-dispersed cluster environment? Please guide and provide documentation if possible,
    thanks

    By "geo-dispersed", do you mean a cluster with servers is physically remote locations ? If so, the install process does not care about how far apart the servers are physically. Follow the standard install doc at http://download.oracle.com/docs/cd/E11882_01/install.112/e16773/toc.htm
    Srini

  • Dataguard installation oracle 11gr2 on windows 2008 server

    Hi,
    I have oracle 11gr2 database on windows 2008 server. I have been given a primary and secondary server with the same setup.
    Now i want to install dataguard. AFter installing i need to test it for disaster recovery.
    Can anyone please suggest me a document for this? I searched in this forum but i couldnt get any.
    Please help.

    An obvious place to look at is our Online Documentation about Data Guard Installation:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17022/toc.htm
    See
    3 Creating a Physical Standby Database
    there.
    There is not much special-Windows for Data Guard - of course you need to create Windows Services for both Databases etc. as described here:
    http://www.oracle.com/pls/db112/portal.portal_db?selected=11&frame=#microsoft_windows_installation_guides
    Kind regards
    Uwe Hesse
    http://uhesse.wordpress.com

  • Install Oracle 10g on windows 2008 Server 64bit

    Is it possible to install Oracle 10g on Windows 2008 64bit . I read one post below it says , windows 2008 is not certified for oracle 10g ..
    windows server 2008 Oracle 10G 64 bit
    before I installed 32bit , it is throwing error message on alert log file on every 5 seconds.
    "OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. ! "
    if it is possible which version I want to download is best ..
    and what is the recommendation whether it is 10g or 11g

    You mean to say Oracle 10g 64bit will not work in Windows 2008..?No, i meaned the post you linked was written in year 2008, in that year it's was a unsupported platform for that oracle version. Actually its supported and you can install it.
    Furthermore like Aman told you, It's more recommended install 11gR2 version
    Edited by: Fran on 29-may-2012 4:20

  • Windows 7 time sync returns Access Denied error

    I have recently configured my AD PDC Windows 2008 Server to syncronize with time.windows.com.  I am trying to get my AD Windows 7 Pro clients to sync with the server, however anytime I run w32tm /resync, net stop w32tm or net start w32tm I get an
    Access Denied error on the client.  I have tried it logged in as both the domain admin and the local admin.  For some reason I can start and stop the W32 Time Service from the Services console, but it doesn't resync the time when it restarts.  Why
    am I being denied access when logged in as the domain administrator?  

    Hi,
    Did you set any group policy to prevent client from changing the services?
    I suggest you take the ownership of %WINDIR%\System32\W32TM.EXE, disable the security software and firewall on both side to check the result. Also re-configure the
    group policy related to Windows Time Service and re-apply them.
    In addition, I suggest contacting Server Forum to confirm with the issue.
    Win Server Forum
    http://social.technet.microsoft.com/Forums/en-US/category/windowsserver
    Best Regards,
    Niki
    Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • "general access denied error" while implementing out-of-process COM Server Implementation in Windows Phone 8.1

    I have a Service (.exe) where I was registering for my COM Component like below
    CoInitializeEx(NULL, COINIT_MULTITHREADED);
    HRESULT hres = CoInitializeSecurity(NULL, -1, NULL, NULL, RPC_C_AUTHN_LEVEL_NONE, RPC_C_IMP_LEVEL_IMPERSONATE, NULL, EOAC_NONE, 0);
    if (hres != S_OK)
    OutputDebugStringA("Security Descriptor not initialized");
    ITypeLib* pTypeLib;
    HRESULT hr_1 = LoadTypeLibEx(L"ServiceIdl.tlb", REGKIND_REGISTER, &pTypeLib);
    if (pTypeLib != NULL)
    pTypeLib->Release();
    RegisterServer(L"Service.exe", CLSID_classAImpl, L"ClassAImpl Sample", L"Component.ClassAImpl", L"Component.ClassAImpl.1", 0);
    g_hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
    DWORD reg = 0;
    IClassFactory *pIFactory = new classAFactory;
    HRESULT hr0 = CoRegisterClassObject(CLSID_classAImpl, pIFactory, CLSCTX_LOCAL_SERVER, REGCLS_MULTIPLEUSE, &reg);
    if (FAILED(hr0))
    OutputDebugStringA("classAImpl is not registered");
    CoUninitialize();
    exit(1);
    HRESULT hr1 = CoResumeClassObjects();
    if (hr1 == S_OK)
    OutputDebugStringA("classAImpl is Resumed Registering");
    WaitForSingleObject(g_hEvent, INFINITE);
    CloseHandle(g_hEvent);
    CoRevokeClassObject(reg);
    pIFactory->Release();
    CoUninitialize();
    From Client Code I am CreatingInstance  Like Below
    COSERVERINFO si;
    MULTI_QI qi;
    COAUTHINFO cai = { RPC_C_AUTHN_NONE, RPC_C_AUTHZ_NONE, 0, RPC_C_AUTHN_LEVEL_NONE, RPC_C_IMP_LEVEL_IMPERSONATE, 0, EOAC_NONE };
    si.dwReserved1 = 0;
    si.pwszName = L"\\\\localhost";
    si.pAuthInfo = &cai;
    si.dwReserved2 = 0;
    qi.pIID = &IID_classA;
    qi.pItf = NULL;
    qi.hr = 1;
    CoInitializeEx(NULL, COINIT_MULTITHREADED);
    HRESULT hr = CoCreateInstanceEx(CLSID_classAImpl, 0, CLSCTX_LOCAL_SERVER, &si, 1, &qi);
    hr returning error "general access denied error";

    I think we may run into the limitations mentioned in the remarks of CoCreateInstanceFromApp doc(show as below). If you can provide a repro project, I
    can give you more details about what happens.
    The CoCreateInstanceFromApp function reads class registrations only from Fusion contexts and manifests, and from the HKLM\SOFTWARE\Classes\CLSID registry hive.
    Only built-in classes that are supported in the app container are supplied. Attempts to activate unsupported classes, including all classes installed by 3rd-party code as well as many Windows classes, result in error code
    REGDB_E_CLASSNOTREG.
    The CoCreateInstanceFromApp function is available to Windows Store apps. Desktop applications can call this function, but they have the same restrictions as Windows Store apps.
    If you are trying to call some windows classes in your library, I will suggest you check how to create windows runtime out of process component by viewing
    this sample. This is what I usually do.
    To be honest, I did not try to implement the out of process COM component using the method you tried as we previsouly do on desktop. I will suggest you try to register a very simple library(like a signle class and single interface which returns an integer),
    and see if it will work.
    <THE CONTENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED>
    Thanks
    Alan Yao
    MSDN Community Support
    Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.

  • Can't install oracle 10g on windows 2008 R2

    Please help me
    I want install oracle 10g on windows 2008 R2 but can't install because I don't have file install oracle_10.2.0.4 and i can't download file from oracle.com
    and oracle 11g i not license
    Where can download file oracle install 10.2.0.4
    thank you

    user9357585 wrote:
    same issue here. I need 10.2.0.3.0 with install software to bring a legacy sid over onto new server hardware that will not support Win 2003. I have Win 2008 32bit loaded and just need the software install ruitine to make the move. My legacy 10g server running on older hardware and Win 2003 works, but is now uncompliant with IA requirements now. We are sandboxing this application. My new server will need to have 2008 on it.
    Will Oracle supply me the software. I have paid maintenace on my account every year. Just paid it for this year in Ocober. Should not have an issue here.submit a Service Request & you'll get your question answered

  • How to install Oracle 11gR2 on Windows 7

    Hi friend;
    There are many questions about *"how we can make instalaltion on win7"*. Thatswhy i made one video tutorial which is mention *"How to install Oracle 11gR2 on Windows 7*
    Its avaliable at my blog:
    *http://heliosguneserol.wordpress.com/*
    Hope it helps who need to make this installation
    Regard
    Helios

    This question is not related to the Database Migration Assistant for Unicode (DMU). Please, post your question to one of the more appropriate forums, for example:
    General Database Discussions
    Database Installation
    -- Sergiusz

  • How to Configure Active-Passive oracle cluster in Windows 2008 R2 64bit Server.

    How to Configure Active-Passive oracle cluster in Windows 2008 R2 64bit Server With Oracle 11g R2.
    How many database will play in this role.
    Best,

    hello
    I was going through your post and i am also doing the same thing here at our organisation for Oracle 10g R2
    Can you pls send me any docs u r having for configuration of Oracle in windows clusters .
    And, can you pls elaborate on this point
    e)Create Oracle Service with the same name in the 2nd node and copy all the files like spfile,tnsnames.ora,listener.ora,password file to Node2.
    Pls send me the details at [email protected] or you can contact me at 08054641476.
    Thanks in advance.

  • Access Denied Error Opens when Installing HP Monitor Software (Windows 7)

    im getting the following error trying to upgrade my screen driver.
    "Access Denied Error Opens when Installing HP Monitor Software (Windows 7)"
    I found this error in the help area but it doesnt address the problem, it simply describes the device manager instalation procedure, which I am using , and which results in the error.

    Hi debgibson,
    What is the monitor model number and what is the PC model number?
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

  • Error: SAP installation of ERP Sr3 with ORACLE 10g on Windows 2008 server

    Dear all,
    while installaing SAP ERP SR3 with ORACLE 10g on windows 2008 server...
    we are getting error as not support.
    please confirm wether this version of OS is uspported or not.
    thanking you in all,
    by
    Animesh

    actualy we tried to change Oraparam.ini file in the installation folder...
    edited ...  windows= 5.0, 5.1, 6.0
    we had entered 6.0
    Yes - that is necessary.
    and started ... but after starting we are getting ERROR like unKNOWN and installation popup (OUI popup) exiting with .. error popup.
    Yes - because Oracle delivers its own Java version - which is too old to run on Windows 2008.
    if you suggest us to use 2003 64 bit for temporaray .... purpose.
    and is there any specified procedure to UPgrade OS.
    like... DB should be updated before OS upgradation.
    You can run 10.2.0.4 on Windows 2003 x64 nicely and upgrade to Windows 2008. Since there is no "upgrade" (it is the highest version supported) there´s no need to do anything.
    The question you have to ask is:
    Why do you need Windows 2008? Is there any technical implication?
    Markus

  • Oracle Migration Tool giving Access denied error for Read operation

    Hi;
    Oracle Migration tool is giving access denied error when we are trying to Read a record for Access Profiles.
    We are getting (SBL-ODS-50085) error.This is happening only for few records(Access Profiles).
    Although the user role is administrator having full access and privilege (Manage User and Access checked).
    Pl. help me resolve the issue.
    Thanks!

    Hi,
    Does it happen when you try to read "any" Access Profile?
    If yes, please have a look at the
    "Admin: Users and Access Controls - Manage Users and Access - Manage Users and establish User Quotas. Define Access Profiles, Roles and Groups to manage data access controls." privilege in the role of the user you use for migration.
    In order to avoid any problem, I usually create a "Migration" role temporarily and assign this role ALL the privileges to avoid such failures at the time of export.
    Hope this helps,
    Best regards,
    Charles DUBANT.
    http://www.dubant.com/

  • SSRS 2008 subfolder access denied but only partly

    Dear all
    After removing authorizations from the root folder we have an access issue with subfolders.
    A user with seemingly proper authorizations (Content Manager, Publisher, Browser, MyReports, ReportBuilder) is able to upload reports, delete reports, run reports, shift reports to other subfolders
    But when trying to view the security properties or updating a report e.g. by changing the data source he gets the 'Access denied' error.
    Any suggestions for the root cause of this?

    Hi JoachimRe,
    As you removed authorizations from the root could it be that you broke security inheritance as described here
    http://technet.microsoft.com/en-us/library/ms159693(v=sql.100).aspx
    especially:
    The Content Manager role is often used with the System Administrator role. Together, the two role definitions provide a complete set of tasks for users who require full access to all items on a report server. Although the
    Content Manager role provides full access to reports, report models, folders, and other items within the folder hierarchy, it does not provide access to site-level items or operations. Tasks such as creating and managing shared schedules, setting
    server properties, and managing role definitions are system-level tasks that are included in the
    System Administrator role. For this reason, we recommend that you create a second role assignment at the site level that provides access to shared schedules.
    Note
    By default item security is inherited from a parent item.  If you apply security settings to an item that are different from those of the parent item, you stop the inheritance chain of permissions to child items. A side effect of this someone in the
    Content Manager role may not have all the permissions they would have had if the inheritance chain had not been changed.  For example they may no longer be able to modify folders created by other users.
    Which, by the way, I think, does not explain the access denied message for modifying datasources. Did you by any change also alter the task list for predifined roles on the reporting services report server in ssms?
    regards,
    Rudolf Swiers

  • Encore CS3/Windows XP Access Denied error...?

    I'm running XP version 5.1 SP3.  I'm trying to build a project, but I keep getting the Access Denied error message.  I've read the fix for Vista, but I don't have the options listed.  This is my first time using Encore, but I know co-workers have successfully used it previously...but none of them have a clue what's going on.  Thanks

    Any Matrox involved?
    Now, how are you getting your PrPro Sequences into En?
    As a test, from PrPro, Export as elemental/elementary streams, i.e. one Video-only and one Audio-only file, per Sequence. For the Audio, choose PCM/WAV 48KHz 16-bit*. Import the Video-only file as a Timeline, and the WAV as an Asset. Drag the Audio from the Project Panel to the appropriate Timeline. Do you get Audio?
    Good luck,
    Hunt
    * If you have a DD 5.1 SS Master Audio Track in PrPro, you will then need to Export that with the SurCode DD 5.1 SS encoder plug-in, as an AC3 file.

Maybe you are looking for

  • How to repeat Header and Footer's table on each page

    Hi all of you, I have to create an invoice form which look alike the Purchase order forms example provided by Adobe. In the table object, i set up exactly the same attribute as the example but i didn't manage to get the same result : - the table is n

  • Multiple device using one apple id

    can anyone help me englighten in my experience...i have 3 ios6 devices, 2 iphone and 1 ipad,is it possible to use 1 apple id in 3 ios device?im going to use it to download apps,sync the device to icloud,but i dont want to share the contacts, calendar

  • How can I get mail to address addressees by their first name, first?

    I like it that Mail is integrated with Contacts. But when I type a name in the To: section, it is always shown as last name, first name. How can I get Mail to address my friends as Gary Smith, not Smith Gary??

  • Is this a Calendar bug?

    If I set a day to 30th April 2008 and add one day, I obtain 31st April, which is a day that does not exist. Is this a bug?: import java.util.Calendar; public class DateTest      public static void main(String[] args)           Calendar myDay = Calend

  • Selection screen field-mandatory

    Hai Experts, I have two fields bukrs and vkorg in two different blocks of a selection screen.. my requirement is this: when bukrs is blank, the field vkorg should be mandatory. when bukrs is given value, vkorg should not be mandatory. how to do this.