Adobe Air 3.6 - Support for Windows Server 2008 R2?

Hello all,
Adobe lists "Windows Server 2008" in the list of supported operating systems.
We tested our application on a Win 2008 R2 terminal server and could'nt find any issues so far. Is there a reason why Adobe does not list "Windows Server 2008 R2" (64 Bit) in the supported platforms list?
Thanks in advance!

Hello Tobias
please have a look at the SAP note
[66971|https://service.sap.com/sap/support/notes/66971]
Win 2008 Server R2 is not released for Sapgui 710 !
Only Sapgui 720 is released for this Windows OS!
Also please note the Sapgui 710 is supported until the 12. of April 2011 !
Please see note [147519|https://service.sap.com/sap/support/notes/147519] !
Best Regards
Sven

Similar Messages

  • Microsoft support for Windows Server 2008 R2 on vSphere 5.5

    Hi, everybody.
    I'm checking if Microsoft will provide support for Windows Server 2008 R2 running on a VM on vSphere 5.5 Update 2. So far what I've found at
    http://windowsservercatalog.com is:
    Filtering vendor VMware and Windows Server 2008 R2, it shows vSphere up to version 5.0 update 1
    http://www.windowsservercatalog.com/results.aspx?&chtext=&cstext=&csttext=&chbtext=&bCatID=1521&cpID=2274&avc=34&ava=0&avq=0&OR=1&PGS=25&ready=0
    http://www.windowsservercatalog.com/item.aspx?idItem=c92e5cbd-9690-b62a-2ace-843390ac3ea4&bCatID=1521
    Filtering vendor VMware it shows vSphere 5.5 update 2, but details only Windows Server 2012, not Windows Server 2008 R2.
    http://www.windowsservercatalog.com/results.aspx?&chtext=&cstext=&csttext=&chbtext=&bCatID=1521&cpID=2274&avc=0&ava=0&avq=0&OR=1&PGS=25&ready=0&PG=2
    http://www.windowsservercatalog.com/item.aspx?idItem=ef39c5b2-2f5b-5b73-08e2-c07fecdadcff&bCatID=1521
    Does that mean Microsoft doesn't support Windows 2008 R2 on vSphere 5.5 update 2?
    I'm aware Windows Server 2008 R2 lifecycle is close to EOL, but customer requires this specific version for application compatibility.
    Thanks

    Hi mdgrkb,
    Products that have passed the SVVP requirements for Windows Server 2012 R2 are considered supported on Windows Server 2012, Windows Server 2008 R2, Windows Server 2008, and
    Windows Server 2003 SP2 and later Service Packs, both x86 and x64.
    Look this website the top left additional information:
    http://www.windowsservercatalog.com/item.aspx?idItem=ef39c5b2-2f5b-5b73-08e2-c07fecdadcff&bCatID=1521
    I’m glad to be of help to you!
    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 Support, contact [email protected]

  • Requested extension com.adobe.Vibration is not supported for Windows-x86 Problem with Cs6,air3.4.

    While compiling my application on Flash CS6 with Air for iOS 3.4, I am getting the error given below:
    The content cannot be loaded because there was a problem loading an extension: Error: Requested extension com.adobe.Vibration is not supported for Windows-x86.
    I am using vibration.ane file which got it from Adobe (http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/vibration.html)
    Anybody out there who knows how to solve this problem!
    Thanks.

    1) The vibration ANE from Adobe does not support Windows.
    2) The iOS simulator (adl) is not a virtual machine but rather it is a native Windows app, thus the platform your app runs on is Windows not iOS.
    What Adobe needs to do to avoid confusing everyone is one of two things:
    1) Include a stub for Windows (and MacOS) in the Vibration ANE.
    2) Make it possible to deploy an app to a platform where the ANE is not supported, but produce a runtime error upon an attempt to use the ANE. The developer could then put logic in the app to detect the underlying platform and make adjustments.

  • Multi-Hypervisior Manager support for Windows Server 2012 R2

    Hi,
    I am attempting to connect to a Windows Server 2012 R2  Hyper-V and am getting the following error message.
    "Unable to Connect to host hyper01"
    I have tested and can connect to a Windows Server 2012 without issue.  Checking the documentation for support and whilst Windows Server 2012 is not supported I wanted to ensure I wasn't making an error.
    If it is indeed not supported at this moment, is there a viable alternative?
    Many Thanks
    Tristan

    Hi,
    Windows 2012  R2 is not supported by MHM 1.x. Please take a look at http://www.vmware.com/pdf/vcenter-multi-hypervisor-manager-11-guide.pdf, page 9, "vCenter Multi-Hypervisor Manager Software Requirements" section.
    For you convenience I'm pasting the list of supported third-party hypervisors:
    Microsoft Hyper-V Server 2012
    Microsoft Hyper-V for Windows Server 2012
    Microsoft Hyper-V Server 2008 R2
    Microsoft Hyper-V for Windows Server 2008 R2
    Microsoft Hyper-V for Windows Server 2008
    Regards,
    -Ilko

  • What are the netsh cmd line for windows server 2008,2012 ?

    Hi
        I am try to config ip,subnet,gateway,preferred and secondary dns using netsh for windows server 2008,2012,
    Before Netsh cmd support for all os including Win 8,win 8.1.
    I need to config form client machine to server machine using netsh cmd lines,i will try in remote login also like i will give server name,username and password with netsh cmd.Below is sample cmd line,using process i will change ip config.
    netsh -r Admin-pc -u admin-pc\administrator -p XXXXX interface ip set address name="Local Area Connection" Static 192.168.0.60 255.255.255.0 192.168.0.1
    when i run in windows server using cmd prompt it show error like "some commands line not found in specified file"
    This is my code in asp.net using vb
     Dim pip As New Process()
            Dim pipa As New ProcessStartInfo("netsh -r Admin-pc -u admin-pc\administrator -p XXXXX interface ip set address name="Local Area Connection" Static 192.168.0.60 255.255.255.0 192.168.0.1")
            pip.StartInfo = pipa
            pip.StartInfo.UseShellExecute = False
            pip.StartInfo.RedirectStandardOutput = True
            pip.Start()
            pip.WaitForExit()
    And if change  ip,subnet and default gateway,internet not work,if i change preferred and secondary dns then only internet work and can browse.
    I can change ip,subnet,gateway,both dns is some other way,below is the link
    http://www.codeproject.com/Questions/795642/How-to-change-IP-Subnet-Gateway-DNS-Prefers-and-al?arn=0
    but what problem is if server is logoff,changes not reflect in server machine,may be it logoff.
    So i need is if server is logoff,need to change ip,subnet,gateway and both dns using netsh or some other vb codings in asp,net.I am try to change ip address form client machine also.
    Pls reply asap
     Regards
         Aravind 

    For the shell scripting I'd try them here.
    Scripting forum on MSDN
    Scripting Guys forum on TechNet
    For the asp.net I'd ask over here.
    Microsoft ASP.Net forums
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Librfc32 support on Windows server 2008

    Hi,
    We at Trango Software (division of Siemens Enterprise Networks) are currently using the SAP Remote Function Call runtime as a part of our product (librfc32.dll, File Version 6403.3.55.4580). We will be supporting Windows Server 2008 platform from our product's next release. We are assessing compatibility on Windows Server 2008 platform of all the third-party libraries and tools that are part of our product.
    We would like to know if the SAP remote function call runtime dll (librfc32.dll) is currently supported with Windows Server 2008. If not, we would like to know when (tentatively) it is expected to be supported.
    Thanks a lot for your help.

    Hello,
    have you configured the accounts to have the permission "Log on as a service"? I have seen that this is not given to the account and therefore the service fails to start.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Oracle Database 10g(10.2.0.1.0) for Windows server 2008 SP1

    Hi,
    I would like to install Oracle database 10g on Windows server 2008 SP1. What is the supported version ?
    As I go through certification matrix on Oracle support, 10.2.0.5.0 is supported on Windows Server 2008, however I can I install it directly.
    Any help in this regard is highly appreciated.
    Thanks

    TheExplorer wrote:
    Thanks srini for your reply.
    Currently, we are running a lower version of database i.e 10.2.0.1.0 on windows server 2003. I need to migrate theses servers into virtual environment running Windows server 2008 64 bit.
    The document you referred applies to MS Windows 32 bit. However, I see that Oracle Database and Oracle Database Client 10g Release 2 (10.2.0.5) for Windows x64 are supported on Windows Server 2008 R2 x64.http://docs.oracle.com/cd/B19306_01/relnotes.102/b15680/toc.htm#CHDFHIEA
    From where, can we download the older versions of Oracle database as it is not available on OTN (The version of Oracle Database you are looking for is no longer available on OTN. Please visit any of the following links for current release information).
    Looking ahead for the right direction
    Thanks
    You have to open a service request at My Oracle Support.

  • Correct version for windows server 2008 Standard 64 bit

    Hi could you help me to download the right version to install adobe reader in a machine running Windows server 2008 with 64 bit, since this machine doesn't have internet access I would need the offline installer but I don't know where to get it.
    Thanks

    Is this just for people sat at the server as if it were a workstation? Use the Windows 7 version.

  • Office Jet pro 8610 for windows server 2008 R2

    I have the new Office Jet pro 8610 prither but dosn't have the driver for "Windows Server 2008 R2 Enterprise" 64 Bit.
    What to do now. Can you please provide ?
    Thanks in advance.
    This question was solved.
    View Solution.

    Hi,
    The same driver as provided for any Windows OS as Windows 7 or 8 should be used, the installation however should be launch via the command line and not as a standard installation.
    Follow these steps to install the printer software on a server:
    http://support.hp.com/us-en/product/HP-Officejet-Pro-8610-e-All-in-One-Printer/5367603/model/5367606...
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Internet Explorer 10 for Windows Server 2008 R2

    I need to install IE 9 or IE 10 on a Windows Server 2008 R2.  IE 9 or 10 is specified because of compatibility with some of our applications that have been developed in house.
    An earlier post listed the link
    http://download.microsoft.com/download/8/A/C/8AC7C482-BC74-492E-B978-7ED04900CEDE/IE10-Windows6.1-x86-en-us.exe  as a source for the IE 10 download, but when I downloaded it and tried to install it, I got an error "Operating System is not supported".
    I am hesitant to download it from one of the non-microsoft sites that offer it.
    Is there a way to download and install IE 10 to Windows Server 2008 R2?
    Thanks very much for your help.

    Hello Logan,
    Unfortunately, I did not find any download link of IE 9 or 10 from Microsoft's server. I think they are closing IE 10 or below versions for their OS.
    However, I found an external link to download IE 10, if you want then visit:-
    https://cyrusbesharat.wordpress.com/2013/02/27/download-ie-10-final-version-for-windows-server-2008-r2/
    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.

  • Require list of all events for Windows Server 2008 Active Directory

    Hi all,
    I require list of all events for Windows Server 2008 Active Directory. Event Log name for Active Directory log is "Directory Service".
    Regards,
    SR

    Hi,
    Thanks for your posting.
    Do you mean you want to list all Active Directory logs into one file named “Directory Services”?
    If that, it’s hard to achieve. There are kinds of Active Directory logs stored in different locations and they have different file formats. It’s hard
    to collect them into one file.
    Active directory records events in the directory services log in Event Viewer. By default, Active Directory records only critical error events. To instruct Active
    Directory to record other events in the directory services log, we need to modify registry.
    For more information please refer to following MS articles:
    Active Directory Diagnostic Logging
    http://technet.microsoft.com/en-us/library/cc961809.aspx
    How to configure Active Directory diagnostic event log
    http://support.microsoft.com/kb/314980
    Lawrence
    TechNet Community Support

  • USB Controller Driver (3.0) for Windows Server 2008 Standard Edition 32-bit

    Hi,
    I have recently built a HP DL320e Gen8 v2 server with Windows Server 2008 Standard Edition 32-bit & it's missing the USB Controller Driver which HP don't have. I have searched endlessly online without success. HP suggest I try Windows but I couldn't
    find it in the Download Center either.
    Can somebody please provide me with the USB Controller Driver for Windows Server 2008 Standard Edition 32-bit?
    Regards
    Naz 

    Hi,
    Thanks for your posting.
    For this issue, i think you need to search in the HP official website or contact the HP support.
    Regards.
    Vivian Wang

  • DLGDIAG for Windows Server 2008 R2

    Greetings, we have a portable WD My Book 1140 USB device attached to Windows Server 2008 R2 and started to receiving event logs: The driver detected a controller error on \Device\Harddisk2\DR2. After checking the disks the DR2 points to attached WD but we are unable to run DLGDIAG 1.28. After checking Lincense Agreement and NEXT It says that DLGDIAG for Windows has  stopped working. Problem signature:
      Problem Event Name:    BEX
      Application Name:    WinDlg.exe
      Application Version:    1.28.0.0
      Application Timestamp:    5409ee85
      Fault Module Name:    WinDlg.exe
      Fault Module Version:    1.28.0.0
      Fault Module Timestamp:    5409ee85
      Exception Offset:    000420a2
      Exception Code:    c000000d
      Exception Data:    00000000
      OS Version:    6.1.7601.2.1.0.272.7
      Locale ID:    2055
      Additional Information 1:    4778
      Additional Information 2:    47782f7409a31893fc1890159f8bdcb7
      Additional Information 3:    5821
      Additional Information 4:    5821c1a5c4e07b6623cb80da3469072f
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt Any suggestion have to check the consistency of the attached disk without unplugging it from the server? Thanks a lot in advance for any feedback.

     
    Hello and welcome to the WD Community,
    The DLG tool is not fully supported on Windows server 2008 R2
    As a recommendation, test the unit on a different OS using the DLG Tool or you can try using a third party app that works for windows server.
     

  • AD Management Gateway Service for Windows Server 2008 SP2

    Hey,
    I'm having the same issue as in this thread.
    https://social.technet.microsoft.com/forums/windowsserver/en-US/93be1866-8aa8-4004-be95-113b7a4faef2/ad-management-gateway-service-for-windows-server-2008-sp2
    And trying to follow the 5 step procedure listed in the 3rd post, but am stuck on step 5, getting the hotfix from Microsoft. The link posted from the Hotfix page is just a generic Microsoft Support page. Which is not helpful. How do I actually contact them
    (phone # or email address) to get the software?
    Thanks In Advance,

    No luck. I've tried the chat which asks which Windows version Im using and there's no Server 2008 only desktop versions. I called and after talking with 3 people I got cut off. There has to be an easier way to get a simple file downloaded.
    You can hire me to do it for you.  I am always successful at contacting MS Support. 
    You didn't follow the instructions I  posted.
    Reach us over the phone at 1-800-642-7676 (TTY: 1-800-892-5234)
    http://smallbusiness.support.microsoft.com/en-us/contact/
    Click Technical Support for Chat.                     
    GREAT BIG BLUE BUTTON SAYS "Technical Support" - CLICK IT AND SELECT WINDOWS SERVER AT THE BOTTOM OF THE LIST.
    It is really that easy.
    ¯\_(ツ)_/¯

  • Error on clone database, oracle 10g release 2 for windows server 2008

    Hi,
    OS: Windows Server 2008 X64
    Oracle: oracle 10g release r2 for windows server 2008
    An error occurred when creating a database, stop at last step, Screenshot:
    [http://temp.wsria.com/oracle_create_db.png|http://temp.wsria.com/oracle_create_db.png]
    the trace log content:
    [main] [9:56:35:982] [CommandLineArguments.process:563] CommandLineArguments->process: number of arguments = 32
    [main] [9:56:35:982] [CommandLineArguments.process:738] CommandLineArguments->process: Create Database argument is specified
    [main] [9:56:35:982] [CommandLineArguments.process:910] CommandLineArguments->process: template Name argument is specified
    [main] [9:56:35:982] [CommandLineArguments.process:960] CommandLineArguments->process: db name argument is specified
    [main] [9:56:35:982] [CommandLineArguments.process:3074] CommandLineArguments->process: in Operation Type is Creation/GenerateScripts Mode condition
    [main] [9:56:35:997] [CommandLineArguments.process:3298] CommandLineArguments->process: Successfully process command line arguments
    [main] [9:56:36:668] [Host.checkOPS:2055] Inside checkOPS
    [main] [9:56:36:668] [Host.checkOPS:2067] Trying to check cluster existence
    [main] [9:56:36:715] [Library.getInstance:97] Created instance of Library.
    [main] [9:56:36:715] [Library.load:197] Loading orauts.dll...
    [main] [9:56:36:715] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:715] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:715] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\orauts.dll
    [main] [9:56:36:715] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\orauts.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:715] [Library.load:197] Loading MSVCRT.dll...
    [main] [9:56:36:715] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:715] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:715] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\MSVCRT.dll
    [main] [9:56:36:731] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\MSVCRT.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:731] [Library.load:197] Loading orawsec10.dll...
    [main] [9:56:36:731] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:731] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:731] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\orawsec10.dll
    [main] [9:56:36:731] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\orawsec10.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:731] [Library.load:197] Loading orasrvm10.dll...
    [main] [9:56:36:731] [Library.load:203] oracleHome D:\oracle\product\10.2.0\db_1
    [main] [9:56:36:731] [sPlatform.isHybrid:63] osName=Windows Vista osArch=amd64 rc=false
    [main] [9:56:36:731] [Library.load:223] Loading library D:\oracle\product\10.2.0\db_1\bin\orasrvm10.dll
    [main] [9:56:36:731] [Library.load:247] Loaded library D:\oracle\product\10.2.0\db_1\bin\orasrvm10.dll from path=
    D:\oracle\product\10.2.0\db_1\bin
    [main] [9:56:36:731] [Version.isPre10i:189] isPre10i.java: Returning FALSE
    [main] [9:56:36:731] [WindowsSystem.regKeyExists:1006] WindowsSystem.regKeyExists: mainkey= HKEY_LOCAL_MACHINE subkey = Software\Oracle\Ocr
    [main] [9:56:36:746] [WindowsSystem.getCSSConfigType:1163] configType=null
    [main] [9:56:36:746] [Host.checkOPS:2073] cluster existence:false
    [main] [9:56:36:746] [Host.checkOPS:2111] Cluster installed=false
    [main] [9:56:36:902] [InitParamHandler.endElement:506] CustomSGA flag: false
    [main] [9:56:36:902] [InitParamHandler.endElement:507] Database Type: MULTIPURPOSE
    [main] [9:56:36:918] [InitParamHandler.endElement:508] Mem Percentage: 40
    [main] [9:56:36:918] [InitParamHandler.endElement:526] distributing Memory: 13737443328
    [main] [9:56:36:918] [MemoryCalculator.calculateMemory:122] Setting SGA to MAX_SGA 1610612736
    [main] [9:56:36:918] [StorageAttributes.setAttribute:232] IN threadID:1 group#=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:232] IN threadID:1 group#=2
    [main] [9:56:36:918] [StorageAttributes.setAttribute:241] Current threadID=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:248] Current threadID=1 ==> redoGroups[0]=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:258] vRedoGroups:[1]
    [main] [9:56:36:918] [StorageAttributes.setAttribute:288] setAttribute: bExists=false
    [main] [9:56:36:918] [StorageAttributes.setAttribute:232] IN threadID:1 group#=3
    [main] [9:56:36:918] [StorageAttributes.setAttribute:241] Current threadID=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:248] Current threadID=1 ==> redoGroups[0]=1
    [main] [9:56:36:918] [StorageAttributes.setAttribute:248] Current threadID=1 ==> redoGroups[1]=2
    [main] [9:56:36:918] [StorageAttributes.setAttribute:258] vRedoGroups:[1, 2]
    [main] [9:56:36:933] [StorageAttributes.setAttribute:288] setAttribute: bExists=false
    [main] [9:56:36:933] [TemplateManager.parseCloneTemplate:1477] See for any transportable datafiles in TemplateManager.....
    [main] [9:56:36:933] [TemplateManager.isInstallTemplate:2178] Selected Template by user:=General Purpose
    [main] [9:56:36:933] [TemplateManager.isInstallTemplate:2185] The Message Id to be searched:=GENERAL_PURPOSE
    [main] [9:56:36:933] [TemplateManager.parseCloneTemplate:1489] create new clone data file for tp file.......
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7184] setupOIDCommandlineParameters:
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7185] m_regWithdirService: false
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7186] m_unregWithdirService: false
    [main] [9:56:36:933] [Host.setupOIDCommandlineParameters:7187] m_updateDirService: false
    [main] [9:56:36:933] [Verifier.processRawConfigFile:3523] StorageType == 0
    [main] [9:56:36:933] [Verifier.setOradataDest:4349] setOradataDest:dfDest=D:\oracle\product\10.2.0\oradata
    [main] [9:56:36:933] [TemplateManager.updateDatafileDestination:1957] updateDatafiles:datafileDir=D:\oracle\product\10.2.0\oradata
    [main] [9:56:36:933] [TemplateManager.updateDatafileDestination:2103] From template, RedoLogGrName=1
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2118] new file name redo01.log
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2103] From template, RedoLogGrName=2
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2118] new file name redo02.log
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2103] From template, RedoLogGrName=3
    [main] [9:56:36:965] [TemplateManager.updateDatafileDestination:2118] new file name redo03.log
    [main] [9:56:36:965] [ProgressOnlyHost.performOperation:162] processRawConfigFile=false
    [main] [9:56:36:965] [Verifier.validateTemplate:1629] StorageType == 0
    [main] [9:56:36:965] [ProgressOnlyHost.performOperation:178] validateTemplate=true
    [main] [9:56:36:965] [OracleHome.isRacEnabled:149] bRacOn = false
    [main] [9:56:36:980] [Verifier.validateTemplate:1629] StorageType == 0
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateCloneDatafilePathsAndSizes:2951] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateRedoLogGroupFileSizes:3083] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateRedoLogGroupFileSizes:3083] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.calculateRedoLogGroupFileSizes:3083] canonicalPath=D:\oracle\product\10.2.0\
    [main] [9:56:36:980] [Verifier.getControlfFileSizes:3001] No. of Control files:=3
    [main] [9:56:37:105] [Host.executeSteps:4044] Executing steps....
    [main] [9:56:37:105] [Host.setUpForOperation:2920] setUpForOperation: Mode = 128
    [main] [9:56:37:121] [Host.executeSteps:4186] setupForOperation returned: true
    [main] [9:56:37:121] [Host.createStepSQLInterface:5948] sid =ora10g
    [main] [9:56:37:136] [SQLEngine.initialize:242] Execing SQLPLUS/SVRMGR process...
    [main] [9:56:37:136] [SQLEngine.initialize:270] m_bReaderStarted: false
    [main] [9:56:37:136] [SQLEngine.initialize:274] Starting Reader Thread...
    [Thread-4] [9:56:37:355] [StepContext$ModeRunner.run:2478] ---- Progress Needed:=true
    [Thread-4] [9:56:37:464] [BasicStep.execute:202] Executing Step : CLONE_DB_CREATION_RMAN_RESTORE
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-01092
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-01034
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-03114
    [Thread-4] [9:56:37:464] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-12560
    [Thread-4] [9:56:37:464] [StepErrorHandler.setIgnorableErrors:250] setting Ignorable Error: ORA-01109
    [Thread-4] [9:56:37:464] [BasicStep.configureSettings:304] messageHandler being set=null
    [Thread-4] [9:56:37:464] [BasicStep.execute:202] Executing Step : INSTANCE_CREATION
    [Thread-4] [9:56:37:464] [BasicStep.configureSettings:304] messageHandler being set=null
    [Thread-4] [9:56:37:479] [InitParamAttributes.sortParams:3532] m_sortOn:-1 sortOn:4
    [Thread-4] [9:56:37:620] [OracleHome.isRacEnabled:149] bRacOn = false
    [Thread-4] [9:56:37:667] [Host.noEntryinOratab:5115] Check made for oratab arg passed............
    [Thread-4] [9:56:37:667] [Oradim.getAddEntryCommand:353] AddEntry=[D:\oracle\product\10.2.0\db_1\bin\oradim.exe, -new, -sid, ORA10G, -startmode, manual, -spfile]
    [Thread-4] [9:56:38:899] [Oradim.getEditEntryCommand:422] getEditEntry cmd=[D:\oracle\product\10.2.0\db_1\bin\oradim.exe, -edit, -sid, ORA10G, -startmode, auto, -srvcstart, system]
    [Thread-4] [9:56:39:55] [Oradim.addSidToRegistry:871] oracleHomeKey: SOFTWARE\ORACLE\KEY_OraDb10g_home1
    [Thread-4] [9:56:39:117] [BasicStep.configureSettings:304] messageHandler being set=oracle.sysman.assistants.util.UIMessageHandler@c73f0d8
    [Thread-4] [9:56:39:117] [CloneRmanRestoreStep.executeImpl:217] Instance Creation went fine..........
    [Thread-4] [9:56:39:117] [CloneRmanRestoreStep.executeImpl:224] db_recovery_file_dest=D:\oracle\product\10.2.0\flash_recovery_area
    [Thread-4] [9:56:39:117] [CloneRmanRestoreStep.executeImpl:227] db_recovery_file_dest_size=2147483648
    [Thread-4] [9:56:39:991] [SQLEngine.setSpool:1750] old Spool = null
    [Thread-4] [9:56:39:991] [SQLEngine.setSpool:1751] Setting Spool = D:\oracle\product\10.2.0\db_1\cfgtoollogs\dbca\ora10g\CloneRmanRestore.log
    [Thread-4] [9:56:39:991] [SQLEngine.setSpool:1752] Is spool appendable? --> true
    [Thread-4] [9:56:39:991] [CloneRmanRestoreStep.executeImpl:320] starting with pfile=D:\oracle\product\10.2.0\admin\ora10g\pfile\init.ora

    Check your SQLNET.AUTHENTICATION_SERVICES settings in sqlnet.ora file.
    ORA-28547 : Connection to server failed, probable Net8 admin error
    thanks
    http://swervedba.wordpress.com/

Maybe you are looking for

  • Please help me in reading the ascii file in encoded format

    hi , iam trying to read the ascii file and i need to encode the text file, can u suggest me what arre the different methods are availble for me to encode the text file, please suggest me which is the effiecient method tto use?

  • Pages 5.0 won't update to Pages 5.2.2

    Recently, I had to re-install Pages on my Mac. Before that, I had been working with Pages 5.2.2. However, when I re-installed the program from the App Store, it installed version 5.0 (an older one). The problem is that the App Store seems to assume t

  • Change the Releated Integration Server for all Business Systems

    Hello, follow Scenario: We export the SLD entries from a Development System in a file. Now we want to import the Entries in our Prod.-System, and we have to assign (or change) to other Related Integration Server. e.g. the esported Business System has

  • Outbound party Settings picking fallback setting instead of the respective party agreement

    I have an applicaiton generate the COPARN EDI message but the values for the UNB segment is being fetched from the EDIFACT fallback settings instead of the Party Agreement settings. I have added the send port filter in the party agreement but still t

  • [solved] Problems compiling hydrogen

    I'm trying to compile hydrogen version 0.9.4, so I can use Qt4. I made a PKGBUILD by editing the PKGBUILD of ABS and following the instructions of this page It compiles everything ok, but the problem is when running 'make install', I guess. I'm compi