Invalid License Data,Reinstall is required error in sequencing SQL server 2012 in APPV

Hi ,
I am trying to sequence SQL 2012 in 4.6 SP1 Sequencer ,with the following components selected in SQL.
1. Client Tools Backward Compatibility
2.Documentation Components
3. Management Tools - Basic
4. Management Tools -Complete
Sequencing Part goes fine. But in client when i launch the management studio it says that "Invalid
License Data,Reinstall is required"
requesting to you please help us  to resolve  the issue.!
Thanks -
Aditya Halder

There's a visual studio run time which needs to be installed locally.
Launch the install for SQL 2012, when it extracts the install media, it drops them into a randomly generated folder under C:\ grab the vssetup. Ensure that's installed locally on your machine
That was enough to get it to work for me BUT I believe, since I sequenced, something changed with an update and now there's some other steps required. Peter S, shared this with me. Try these steps:
Under HKEY_CLASSES_ROOT there's a Licenses registry key. If there's a value remove the value, do not delete the key, leave it there, if it doesn't exist create it. Set the virtualization level as Overwrite in the.
Create a PRE-LAUNCH Script which runs:
“VFS\ProgramFilesX86\Microsoft Visual Studio
10.0\Common7\IDE\DDConfigCA.exe” inside the package*. This creates the
machine related license key inside the App-V environment.
PLEASE MARK ANY ANSWERS TO HELP OTHERS Blog:
rorymon.com Twitter: @Rorymon

Similar Messages

  • Error while installing SQL Server 2012 X64 SP2,

    Error while installing SQL Server 2012 X64 SP2,
     When I installed the SQL Server 2012 X64 SP1, I got the attached error.
     What might be the issue here?
     Thank you
     Best
    Jamal

    Hello,
    Are you trying to install SQL Server on a compressed or encrypted drive? SQL Server won’t install on a drive/folder with these attributes.
    Are you trying to install SQL Server on a ReFS file system? It is not supported on SQL Server 2012.
    Disable any security/antivirus software and download the media again. Mount the media (.ISO file) and try to install again.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Error while install sql server 2012 using powershell

    hello all,
    I am using below function to install sql server and its not working  can some one help me please 
    Function Install-Sql2012
    param
    [Parameter()][string]  $Path ,#= (read-host "Enter Installation Binary Path"),
            [Parameter()][string]  $AddSSIS= (read-host "Do u need SSIS Enter 1 for yes o for no") ,
            [Parameter()][string]  $AddSSRS= (read-host "Do u need SSRS Enter 1 for yes o for no") ,
    [Parameter()][string]  $InstanceName = (read-host "Enter Instance name"),
    [Parameter()][string]  $ServiceAccount= (read-host "Enter Service Account"),
    [Parameter()][string]  $ServicePassword= (read-host -assecurestring "Enter Service Account Password") ,
    [Parameter()][string]  $AgentAccount=(read-host "Enter Agent Account"),
    [Parameter()][string]  $AgentPassword=(read-host "Enter Agent pasword"),
            [Parameter()][string]  $Backuppath= (read-host "Enter Backuppath"),
    [Parameter()][string]  $SaPassword= (read-host -assecurestring "Enter SA Account Passowrd"),
            [Parameter()][string]  $SQLTEMPDBDIR= (read-host  "Enter TempDir"),
            [Parameter()][string]  $SQLUSERDBDIR= (read-host  "Enter User Data Directory"),
            [Parameter()][string]  $SQLUSERDBLOGDIR= (read-host  "Enter User Log Directory"),
    #[Parameter(Position=5,Mandatory=$false)][string] $LicenseKey,
    [Parameter()][string]  $SqlCollation = "SQL_Latin1_General_CP1_CI_AS",
    [Parameter()][switch]  $NoTcp,
    [Parameter()][switch]  $NoNamedPipes
    #Build the setup command using the install mode
    if ($Path -eq $null -or $Path -eq "")
    #No path means that the setup is in the same folder
    $command = '.\setup.exe /Action="Install"'
    else
    #Ensure that the path ends with a backslash
    if(!$Path.EndsWith("\"))
    $Path += "\"
    $command = $path + 'setup.exe /Action="Install"'
    #Accept the license agreement - required for command line installs
    $command += ' /IACCEPTSQLSERVERLICENSETERMS'
    #Use the QuietSimple mode (progress bar, but not interactive)
    $command += ' /QS'
    #Set the features to be installed
    #$command += ' /FEATURES=SQLENGINE,CONN,BC,SSMS,ADV_SSMS'
        If ($AddSSIS -ne '0' -and $AddSSIS -ne '1') {
            throw 'Invalid input. Enter a valid value for SSIS.'
        If ($AddSSRS -ne '0' -and $AddSSRS -ne '1') {
            throw 'Invalid input. Enter a valid value for SSRS.'
       if ($AddSSIS -eq 1 -and $AddSSRS -eq 1)
           $command += ' /FEATURES=SQLENGINE,CONN,BC,SSMS,ADV_SSMS,SSIS,SSRS'
       if ($AddSSIS -eq 1 -and $AddSSRS -eq 0)
       $command += ' /FEATURES=SQLENGINE,CONN,BC,SSMS,ADV_SSMS,SSIS'
       if ($AddSSIS -eq 0 -and $AddSSRS -eq 1)
       $command += ' /FEATURES=SQLENGINE,CONN,BC,SSMS,ADV_SSMS,SSRS'
       if  ($AddSSIS -eq 0 -and $AddSSRS -eq 0)
       $command += ' /FEATURES=SQLENGINE,CONN,BC,SSMS,ADV_SSMS'
    #Set the Instance Name
    $command += (' /INSTANCENAME="{0}"' -f $InstanceName)
    #remove Set the License Key only if a value was provided, otherwise install Evaluation edition
    #if ($LicenseKey -ne $null -and $LicenseKey -ne "")
    # $command += (' /PID="{0}"' -f $LicenseKey)
        #set reporting to off
        $command += ('/SQMREPORTING="0"')
        #Add Browser Account 
        $command +=('/BROWSERSVCSTARTUPTYPE="Disabled"')
        #Add Backup path 
        $command +=('/SQLBACKUPDIR="{0}"' -f $backuppath)
    #Check to see if a service account was specified
    if ($ServiceAccount -ne $null -and $ServiceAccount -ne "")
    #Set the database engine service account
    $command += (' /SQLSVCACCOUNT="{0}" /SQLSVCPASSWORD="{1}" /SQLSVCSTARTUPTYPE="Automatic"' -f $ServiceAccount, $ServicePassword)
    #Set the SQL Agent service account
    $command += (' /AGTSVCACCOUNT="{0}" /AGTSVCPASSWORD="{1}" /AGTSVCSTARTUPTYPE="Automatic"' -f $AgentAccount, $AgentPassword)
    else
    #Set the database engine service account to Local System
    $command += ' /SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" /SQLSVCSTARTUPTYPE="Automatic"'
    #Set the SQL Agent service account to Local System
    $command += ' /AGTSVCACCOUNT="NT AUTHORITY\SYSTEM" /AGTSVCSTARTUPTYPE="Automatic"'
    #Set the server in SQL authentication mode if an SA password was provided
    if ($SaPassword -ne $null -and $SaPassword -ne "")
    $command += (' /SECURITYMODE="SQL" /SAPWD="{0}"' -f $SaPassword)
    #Add current user as SysAdmin
    $command += (' /SQLSYSADMINACCOUNTS="test\ADMIN"')
        #Add Tempdbdata path
    $command += (' /SQLTEMPDBDIR="{0}"' -f $SQLTEMPDBDIR)
        #Add Tempdblog path
        $command += (' /SQLTEMPDBLOGDIR="{0}"' -f $SQLTEMPDBDIR)
         #Add UserDBdata path
        $command += (' /SQLUSERDBDIR="{0}"' -f $SQLUSERDBDIR)
         #Add UserDBlog path
        $command += (' /SQLUSERDBLOGDIR="{0}"' -f $SQLUSERDBLOGDIR)
    #Set the database collation
    $command += (' /SQLCOLLATION="{0}"' -f $SqlCollation)
    #Enable/Disable the TCP Protocol
    if ($NoTcp)
    $command += ' /TCPENABLED="0"'
    else
    $command += ' /TCPENABLED="1"'
    #Enable/Disable the Named Pipes Protocol
    if ($NoNamedPipes)
    $command += ' /NPENABLED="0"'
    else
    $command += ' /NPENABLED="1"'
    if ($PSBoundParameters['Debug']) 
    Write-Output $command
    else
    Invoke-Expression $command
    Install-Sql2012
    Below is the error i am getting 
    PS C:\temp\in> .\Install-Sql2012.ps1
    Do u need SSIS Enter 1 for yes o for no: 0
    Do u need SSRS Enter 1 for yes o for no: 0
    Enter Instance name: MSSQLSERVER
    Enter Service Account:
    Enter Service Account Password:
    Enter Agent Account:
    Enter Agent pasword:
    Enter Backuppath: "C:\Temp\IN\bck"
    Enter SA Account Passowrd: **********
    Enter TempDir: "C:\Temp\IN\bck"
    Enter User Data Directory: "C:\Temp\IN\bck"
    Enter User Log Directory: "C:\Temp\IN\bck"
    Microsoft (R) SQL Server 2012 11.00.2100.60
    Copyright (c) Microsoft Corporation.  All rights reserved.
    The following error occurred:
    Instance name is limited to 16 characters. Yours 'MSSQLSERVER/SQMREPORTING=0/BROWSERSVCSTARTUPTYPE=DISABLED/SQLBACKUPDIR=C:\TEMP\IN\BCK' is 85.
    Error result: -2054422513
    Result facility code: 1420
    Result error code: 15
    Please review the summary.txt log for further details
    Thanks,
    Ashwin.
        

    Line 94, 97 and 100 appear to not have spaces at the beginning of each string, which could cause some issues:
    #set reporting to off
    $command += ('/SQMREPORTING="0"')
    #Add Browser Account
    $command +=('/BROWSERSVCSTARTUPTYPE="Disabled"')
    #Add Backup path
    $command +=('/SQLBACKUPDIR="{0}"' -f $backuppath)
    Probably should be this:
    #set reporting to off
    $command += (' /SQMREPORTING="0"')
    #Add Browser Account
    $command +=(' /BROWSERSVCSTARTUPTYPE="Disabled"')
    #Add Backup path
    $command +=(' /SQLBACKUPDIR="{0}"' -f $backuppath)
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • Getting error while expanding SQL Server 2012 agent.

    Hi All,
    Server Version Details: Microsoft SQL Server 2012 (SP1) - 11.0.3000.0 (X64)
        Oct 19 2012 13:38:57
        Copyright (c) Microsoft Corporation
        Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
    We are using SQL Server 2012 in Active/Passive Cluster and the problem is getting below error while expanding SQL Agent. Please share you views on this. Thank You.
    TITLE: Microsoft SQL Server Management Studio
    Failed to retrieve data for this request. (Microsoft.SqlServer.Management.Sdk.Sfc)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&LinkId=20476
    ADDITIONAL INFORMATION:
    An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
    A severe error occurred on the current command.  The results, if any, should be discarded. (Microsoft SQL Server, Error: 0)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.3000&EvtSrc=MSSQLServer&EvtID=0&LinkId=20476
    BUTTONS:
    OK
    Regards,
    Kalyan
    ----Learners Curiosity Never Ends----

    Hi OHM SAI RAM,
    I’m writing to follow up with you on this post. Was the problem resolved after checking the error message and performing the action plan steps? I’d like to mark this issue as "Answered". Please also feel free to unmark the issue, with any new findings or
    concerns you may have.
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • NetFx3 error while installing SQL Server 2012 on windows 8 Pro

    I can't install SQL Server 2012 on my windows 8 Pro, every time I try I get this error: Error while trying to enable NetFx3 
    Can anyone help, please.

    Hi,
    Windows 8 does not include .NET 3.5 (include .NET 2.0 and 3.0) by default.
    1. We can make sure this feature is enabled by check in Program and Features.
    a. Go to Settings. Choose Control Panel then choose Programs.
    b. Click Turn Windows features on or off, and the user will see Windows feature window.
    c. You can enable this feature by click on .NET Framework 3.5 (include .NET 2.0 and 3.0) select it and click OK. After this step, it will download the entire package from internet and install the .NET Framework 3.5 feature.
    This option requires an Internet connection.
    2. As Alberto suggested, you can use the command to enable .NET Framework 3.5 (include .NET 2.0 and 3.0) feature in offline mode to avoid interruption before run SQL Server Setup.
    For your information:
    Installing the .NET Framework 3.5 on Windows 8 or 8.1
    http://msdn.microsoft.com/en-us/library/hh506443(v=vs.110).aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Usage Tracking Error on Microsoft SQL Server 2012 RCU

    During an upgrade to 11.1.1.7.131017 recently, I ran into the following error in nqserver.log when trying to implement Usage Tracking on a MS SQL Server 2012 RCU DB:
    [2013-11-18T15:19:38.000-08:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 00iIX8GTiKpFw00Fzzw0w00001I00008PG,0:1:1:19:1:1] [tid: 1330]  [nQSError: 16015] SQL statement execution failed. [[[nQSError: 16001] ODBC error state: 22008 code: 0 message: [Microsoft][SQL Server Native Client 11.0]Datetime field overflow. Fractional second precision exceeds the scale specified in the parameter binding..]]
    The workaround I outlined below is not an ideal solution, just a workaround to prevent the bug from occurring until there's a fix:
    http://www.emerald-cube.com/2013/12/adventures-in-obiee-upgrade-land-quirks-and-workarounds-episode-i/http://www.emerald-cube.com/2013/12/adventures-in-obiee-upgrade-land-quirks-and-workarounds-episode-i/
    Just providing as an FYI in case anyone else searches for this error and needs a solution.
    Jeremy

    I like this one written by Itzik Ben-Gan
    http://www.amazon.com/Microsoft-High-Performance-Functions-Developer-Reference/dp/0735658366
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Installation error during the sql server 2012 sp1 installation

    TITLE: Microsoft SQL Server 2012  Setup
    The following error has occurred:
    An error occurred during the installation of assembly 'policy.8.0.Microsoft.VC80.CRT,version="8.0.50727.1833",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="x86",type="win32-policy"'. Please refer to Help and
    Support for more information. HRESULT: 0x800736FD. 
    For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.5058.0&EvtType=0xDF039760%25401201%25401
    BUTTONS:
    OK

    This issue occurs because of a known issue in the Visual C++ 2005 runtime library setup.
    https://support.microsoft.com/en-us/kb/2688946?wa=wsignin1.0
    Cumulative update information
    SQL Server 2012
    The fix for this issue was first released in Cumulative Update 1 for SQL Server 2012. For more information about how to obtain this
    cumulative update package for SQL Server, click the following article number to view the article in the Microsoft Knowledge Base:
    2679368 Cumulative update 1 for SQL Server 2012
    For a stand-alone installation, follow these steps:
    Download the cumulative update from the Microsoft website, and install the downloaded update package in a folder that can be accessed by the server.
    Double-click the icon to run the Self-Extractor wizard. Extract the files to a folder on the server or on a UNC share.
    On the server, open an administrative command prompt, and change directory to the folder that contains the RTM SQL Server 2012 setup media. For example, run the following command:
    cd E:\SQLSetup\
    Run Setup.exe from the command line together with the /updatesource switch to direct the setup to the folder or share that was described in step 2. For example, run the following command:
    setup.exe /action=install /updatesource=C:\SQL2012CU
    The setup process will detect the cumulative update. After you accept the licensing agreement, on the Product Updates page in the setup process, select the "Include SQL Server product updates" check box to apply
    the cumulative update fixes to the RTM setup files.
    check and confirm.

  • Error while installing SQL Server 2012 Express Edition

    Dear Experts,
    My system configuration is,
    Windows 7 Ultimate
    32 bit
    RAM 8 GB
    I7 Processor
    I am trying to installed Sql serve 2012 with tools version but not able to install.
    Its giving me error Like Value can not be null..
    I search every thing on google but not helps me.
    Please assist.
    Thanks,

    Hello,
    Try .NET Framework repair tool.
    https://support.microsoft.com/kb/2698555?wa=wsignin1.0
    Another possible solution can be found on the following URL.
    http://sqlserver-help.com/2012/07/23/help-getting-error-value-cannot-be-null-while-opening-management-studio-which-value/
    Please share with us the Summary.txt log file. Th following article may help you locate the file on disk.
    https://msdn.microsoft.com/en-us/library/ms143702(v=sql.110).aspx
    Make sure you have enabled .NET Framework 3.5 using Control Panel -> Programs and Features.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Error While Installing SQL SERVER 2012 on Windows Serrver 2012 R2

    I encounter the following errors while installing SQL SERVER on Windows SERVER 2012 R2, can anybody help me out?
    dotdazzle

    If you are using any system account then password is not needed. From the screenshot I see NT Authority\....  so you don't need password.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Data Retrieval from SSRS 2008 R2 to SQL Server 2012 standard

    Hello,
    We have a virtual machine running SSRS 2008 R2 and a physical server running SQL server 2012 standard.  We are having an issue with a report that is taking almost 10 minutes for the data to be retrieved from the sql 2012 database.  We used the
    execution logging query to debug and analyze.  We see that it renders and processes very fast, but the data retrieval time is very slow.  When the same query is run using sql studio mgr. from the SSRS server it runs just fine...it
    takes seconds for the results to come up.
    I don't believe there is a compatibilty issue because other reports run fine.  We're just having problems with one report.

    A long shot, but I've seen where the data type of a report parameter is mismatched against the data type of the table it is being compared against.  SQL profiler would show this clearly.  
    This would explain why the query returns quickly in ssms but not with the report.  

  • What licenses and how many should be taken for SQL Server 2012 Standard Edition

    Hi,
    Could you help me please with my problem: what licenses (per core or Server + CAL) should I take for SQL Server 2012 Standard Edition for the following environment:
    SQl Server will be installed on VM with 1 core.
    Physical processor is Intel Xeon CPU E7-4830, 2.13 GHz, 2131 Mhz.
    Few people will have an access to the VM but SQL server is used for a web-application for about 200 users from Active Directory.
    Great thanks in advance,
    Lena

    Hello,
    Since the question is a license issue, you can call 1-800-426-9400, Monday through Friday, 6:00 A.M. to 6:00 P.M. (Pacific Time) to speak directly
    to a Microsoft licensing specialist. You can also visit the following site for more information and support on licensing issues:
    http://www.microsoft.com/licensing/mla/default.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Wrong OS error when installing SQL Server 2012 Enterprise onto Lenovo Yoga ThinkPad Windows 8.1

    This is the error message I receive; "SQL Server setup media does not support the language of the OS or does not
    have the SQL Server-English language version installation files. Use the matching language-specific SQL Server
    media, or install both the language specific MUI and change the format and system locales through the regional settings in the control
    This is the error message I receive; "SQL Server setup media does not support the language of the OS or does not have the SQL Server-English
    language version installation files. Use the matching language-specific SQL Server media, or install both the language specific MUI and change
    the format and system <span style="color:#333333;font-family:'Segoe UI', Arial, sans-serif;font-siz

    Hello,
    Please go to Control Panel->Regional Setting and change the “Format” language to the same language of the setup media. After
    that, re-run SQL Server setup program.
    For more options/workarounds, please read the “Workaround” section on the following link:
    https://connect.microsoft.com/SQLServer/feedback/details/556958/sql-server-setup-media-does-not-support-the-language-of-the-os
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Error While installing SQL SERVER 2012 Upgrade Advisor

    Hi,
         " An error occured during the installation of assembly 'Microsoft.VC80.CRT,type="win32",Version="8.0.50727.4053",publickeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64"
    Please refer to help and support for more information .HRESULT:0x80073715 "
    Please help

    SQL Server fails to install due to Microsoft Visual C++ 2005. Please check the below mentioned link:
    https://support.microsoft.com/kb/2688946?wa=wsignin1.0
    below link may be helpful to you its also..
    Please download it with SP1 included from the following resources:
    http://www.microsoft.com/en-us/download/details.aspx?id=18471 (x64)
    http://www.microsoft.com/en-us/download/details.aspx?id=5638 (x85
    or 32-bit)

  • Invalid license data. Reinstall is required.

    I am getting this error message when I attempt to open a ".sln" file.
    The window title is  "Visual Studio 2010 Shell".
    I purchased sql Server Developer 2014 60 days ago.  Have never installed Visual Studio on this computer.
    I have followed all of the uninstall / reinstall  instructions and the problem is persisting
    It appears to be a very common error message by the google search.   This is a show stopper for me and I am surprised that the solution is apparently so elusive.  Please Help!

    Hello,
    Reinstall SQL Server Data Tools or uninstall SQL Server Data Tools and install it again (if needed). For more information:
    https://social.msdn.microsoft.com/Forums/en-US/5cb09b82-3fd9-47e0-95a6-26aaf89ffb87/vs-2010-shell-invalid-license-data-reinstall-is-required?forum=vssetup
    SQL Server Data Tools can be downloaded from the following URL:
    http://msdn.microsoft.com/en-us/data/hh297027
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Share Data Source between multiple report projects in Microsoft SQL Server 2012 Reporting Services

    I have a reports solution in 2012 which contains multiple report projects one each for target deployment folder and we use TFS 2012 for report deployment.
    We have a template project which has a bunch of template reports and all the datasources used in different reports.
    When I develop a report, I cannot "Preview" in TFS but, for deploy this used to work fine util the reports solution was in TFS 2010 & Visual Studio 2008 R2. Since we moved to TFS 2012 & SSRS 2012 not being able to deploy till I create all
    the necessary datasources for each project and now all the developers complaining that they cannot develop reports in TFS itself as they cannot preview (this problem was existing previously) and now not being able to deploy as it errors for each report "Could
    not find specified rds file". I tried messing around with the .rptproj file DataSources tag that did not help either by modifying it like below.
    <DataSources>
    <ProjectItem>
    <Name>DB.rds</Name>
    <FullPath>Template\Data Source\DB.rds</FullPath>
    </ProjectItem>
    </DataSources>
    Is there a way I could share a Data Source between multiple projects in Microsoft SQL Server 2012 Reporting Services?
    Thanks in advance.............
    Ione

    Hi ione721,
    According to your description, you want to create a shared data source which works for multiple projects. Right?
    In Reporting Services, A shared data source is a set of data source connection properties that can be referenced by multiple reports, models, and data-driven subscriptions that run on a Reporting Services report server. It must be within one project.
    We can't specify one data source working for multple projects. In this scenario, we suggest you put those reports into one project. Otherwise you can only create one data source for each project.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for

  • How can i name the spool

    hi all, In the trx SP01, how can i name the spool as per my naming conventions. I am running a report in background and want the spool name to name of the PLANT. Please let me know. Chandan

  • Forms Error and How to suppress browswer in forms 9i

    Hi, I am getting the following Error during the execution of forms 9i: FRM-90928: Positional Parameter after key on command line Why this error come? It is cumbersome to start OC4J instance everytime when I open and run the forms 9i. Is there any way

  • BPM Composer refreshing at regular intervals

    I have Installed soa suite 11.1.1.6. When we logged into bpm composer refresh automatically at regular intervals. All the changes which has been made are lost.

  • Need quick office for 5800 XM

    hi friends please tell me from where i can download quickoffice for my 5800 XM(i tried from download option from menu but not working) n also tell me is it possible to edit any office doc? Solved! Go to Solution.

  • Apex is too slow to login and run report

    Hello Expert, I am working to fix a problem with APEX is extremely slow to login. It might take 3 to 5 min for the login to show up and it takes forever to load the reports on the screeen that has 1000's of rows. And when it comes to clik on the butt