Express VI GenHelp error

LabVIEW 2009 SP1 DevSuite:
Anyone have trouble making the GenHelp VI compile properly when creating an ExpressVI?
I cloned the DisplayMessage ExpressVI with no changes and the Validate function indicates the GenHelp VI is configured incorrectly.
Am I missing something critically wrong here? Like, turning on my computer??? Breathing oxygen??
Thanks. Dave

Hi PoolMaster
Have you read this little document about the GenHelp VI? 
Using the genHelp VI to Create Context Help for Custom Express VIs
http://www.ni.com/white-paper/2935/en/
I think you might find it helpful. Also, make sure the air you breathe has enough oxygen, it has been scientifically proven that humans can't live of carbon dioxide. I suggest trying the BreatheOxygen VI for that purpose. 
Cheers! 
Fabián M.
Internal Sales Engineer
National Instruments

Similar Messages

  • Communication express address book error

    Hi Shane,
    My communication express display this error message when i search name > 1000 record.
    "Your server is not configured properly or your search query has exceeded the limit, Please check server configuration"
    Can i disable this settting or is there any parameter for me to turn ?
    Cheer
    UBD

    ubd wrote:
    My communication express display this error message when i search name > 1000 record.
    "Your server is not configured properly or your search query has exceeded the limit, Please check server configuration"
    Can i disable this settting or is there any parameter for me to turn ?This error could be due to a restriction at the Directory Server end or due to a restriction at the UWC/CE end.
    Check the directory server access logs to see if there is an error returned for the search.
    Also confirm that the lookthru_limit setting in <uwc_deploy_base>/WEB-INF/config/corp-dir/db_config.properties is more then 1000.
    Regards,
    Shane.

  • Express document update error in me21n

    Hai
       Iam working on 000 client, Iam not able to see my PO in the list.
    The error is "document update terminated by the user"
    In SM13 ,i have checked the error log and it is showing the cause as
    Module name -
    >me_create_document
    Type----->V1
    Status----->Error
    Please help me in resolving this error.
    Regards
    Anu

    Hi Anushka..
    Did u find the solution for this error ?(Express document update error in me21n) .. while creating PO.
    I am having the same issue now.. need ur support @ the earliest.
    Thanks in advance.

  • ORA-22902 CURSOR expression not allowed Error Cause: CURSOR on a subquery..

    Hi,
    I found same issue in a metalink thread which is addressed in Oracle 12.1 which doesn't help me now. I need to rewrite the below query. Does anyone have any suggestions how to go about it?
    thanks,
    April
    working in Oracle 11.2.0.3.1, windows server, doing an upgrade from 10g to 11g. Piece of code is failing with following error via TOAD
    Oracle Database Error Code ORA-22902 Description :
    CURSOR expression not allowed
    Error Cause:
    CURSOR on a subquery is allowed only in the top-level SELECT list of a query.
    The below code is returning a tree of data for projects, units within the buildings.
    Code as follows:
    SELECT LEVEL
    , p.project_id
    || NVL (p.file_ref, ' ')
    || '] ['
    || NVL (p.project_ref, ' ')
    || '] '
    || p.project_name
    || ' ( '
    || (SELECT COUNT (*)
    FROM PROJECT p1
    WHERE p1.parent_project_id = p.project_id)
    || ' sub-projects, '
    || (SELECT COUNT (*)
    FROM PROJECT_ELEMENT pe2
    WHERE pe2.project_id = p.project_id)
    || ' elements)' AS project_description
    CURSOR
    (SELECT pe.element_id
    || pe.element_ref
    || '] '
    || pe.element_name
    || ' ('
    || pe.unit_count
    || ')' AS element_description
    CURSOR
    (SELECT hu.hu_id
    || hu.hu_ref
    || '] '
    || CASE
    WHEN hu.bedroom_count IS NOT NULL
    THEN ', Bedrooms: ' || hu.bedroom_count
    ELSE NULL
    END
    || CASE
    WHEN hu.bedspace_count IS NOT NULL
    THEN ', Bedspaces: ' || hu.bedspace_count
    ELSE NULL
    END AS hu_descripton
    FROM HOUSING_UNIT hu
    WHERE hu.element_id = pe.element_id
    ORDER BY hu.hu_ref
    ) AS housing_units
    FROM PROJECT_ELEMENT pe
    WHERE pe.project_id = p.project_id
    ORDER BY pe.element_ref, pe.element_name
    ) elements
    FROM PROJECT p
    START WITH p.project_id = l_root_project_id
    CONNECT BY PRIOR p.project_id = p.parent_project_id -- connect by used with LEVEL keyword
    ORDER SIBLINGS BY p.file_ref DESC
    , p.project_ref DESC
    , p.project_name DESC;
    Edited by: AprilM on Jul 17, 2012 10:28 AM

    Interesting. I am getting even worse results on 11.2.0.1.0:
    SQL> select * from v$version
      2  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL> select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d
      2  /
    select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00905: missing keyword
    SQL> connect scott
    Enter password: *****
    Connected.
    SQL> select * from v$version
      2  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d
      2  /
    DNAME          CURSOR(SELECTENAMEFR
    ACCOUNTING     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    CLARK
    KING
    MILLER
    RESEARCH       CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    SMITH
    JONES
    SCOTT
    ADAMS
    FORD
    SALES          CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    ALLEN
    WARD
    MARTIN
    BLAKE
    TURNER
    JAMES
    6 rows selected.
    OPERATIONS     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    no rows selected
    SQL> And double CURSOR also works fine in 10g:
    SQL> select cursor(select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d) from dual
      2  /
    CURSOR(SELECTDNAME,C
    CURSOR STATEMENT : 1
    CURSOR STATEMENT : 1
    DNAME          CURSOR(SELECTENAMEFR
    ACCOUNTING     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    CLARK
    KING
    MILLER
    RESEARCH       CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    SMITH
    JONES
    SCOTT
    ADAMS
    FORD
    SALES          CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    ALLEN
    WARD
    MARTIN
    BLAKE
    TURNER
    JAMES
    6 rows selected.
    OPERATIONS     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    no rows selectedSY.
    Edited by: Solomon Yakobson on Jul 17, 2012 1:27 PM

  • 'Express document terminated' - Error

    Hi, can anybody please advice on what is 'Express document terminated' - error?
    I am getting this error while posting for some particular confirmation numbers and it is against the table AFRU. Please advice. Thanks.

    HI sagar,
      Check if any user exit has a commit work statament with respect to this transaction.
    In general you get this type of error messages when you use a explicit commit in a place where you are not supposed to commit.
    Regards,
    Ravi

  • Unable to install SQL Server Express 2008 R2 - Errors "Failed to retrieve data for this request"

    As domain admin I am attempting to install "SQL Server 2008 R2 with SP2" but it keeps failing with "Failed to retrieve data for this request".
    The installation never actually starts, it errors before then.
    It displays the same error even if I run the System Configuration Checker.
    The summary.txt for the install displays the following text:
    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -1554760125
      Exit facility code:            852
      Exit error code:               15939
      Exit message:                  Failed to retrieve data for this request.
      Start time:                    2014-08-15 16:49:52
      End time:                      2014-08-15 16:50:06
      Requested action:              RunRules
    Machine Properties:
      Machine name:                  servername
      Machine processor count:       8
      OS version:                    Windows Server 2008 R2
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  Yes
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      SPLevel:                       1
      Installation location:         c:\84122ef5b6d9cdcd3b2ac48cec\x64\setup\
      Installation edition:          EXPRESS
    User Input Settings:
      ACTION:                        RunRules
      CONFIGURATIONFILE:             
      ENU:                           True
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTANCENAME:                  <empty>
      PASSPHRASE:                    *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      RULES:                         GLOBALRULES,SqlUnsupportedProductBlocker,PerfMonCounterNotCorruptedCheck,Bids2008InstalledCheck,BlockInstallSxS,AclPermissionsFacet,FacetDomainControllerCheck,SSMS_IsInternetConnected,FacetWOW64PlatformCheck,FacetPowerShellCheck
      UIMODE:                        AutoAdvance
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140815_164944\ConfigurationFile.ini
    Detailed results:
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file:               The rule result report file is not available.
    Exception summary:
    The following is an exception stack listing the exceptions in outermost to innermost order
    Inner exceptions are being indented
    Exception type: Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException
        Message:
            Failed to retrieve data for this request.
        Data:
          HelpLink.ProdName = Microsoft SQL Server
          HelpLink.BaseHelpUrl = http://go.microsoft.com/fwlink
          HelpLink.LinkId = 20476
          DisableWatson = true
        Stack:
            at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object connectionInfo, Request request)
            at Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.ProcessDTbl(DataTable dt, Int32 level)
            at Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectSqlDiscoveryData(String machineName)
            at Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.LoadData(IEnumerable`1 machineNames, String discoveryDocRootPath, String clusterDiscoveryDocRootPath)
            at Microsoft.SqlServer.Configuration.SetupExtension.RunDiscoveryAction.ExecuteAction(String actionId)
            at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
            at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun)
        Inner exception type: Microsoft.SqlServer.Configuration.Sco.SqlRegistryException
            Message:
                    The network path was not found.
            Data:
              WatsonData = [email protected]rror
            Stack:
                    at Microsoft.SqlServer.Configuration.Sco.SqlRegistry.CreateBaseKey(ServiceContainer ctx, String machineName, IntPtr hKey, String keyName, RegistryAccess access, RegistryView
    view)
                    at Microsoft.SqlServer.Configuration.Sco.SqlRegistry.GetLocalMachine(ServiceContainer ctx, String machineName, RegistryAccess access, RegistryView view)
                    at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.GetSql2kMsiInstanceListInHive(String machineName, RegistryView regView)
                    at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.LoadSql2kInstanceList(String machineName)
                    at Microsoft.SqlServer.Discovery.Product.GetData(EnumResult erParent)
                    at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData()
                    at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object connectionInfo, Request request)
                    at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object connectionInfo, Request request)

        Inner exception type: Microsoft.SqlServer.Configuration.Sco.SqlRegistryException
            Message:
                    The network path was not found.
            Data:
              WatsonData = [email protected]rror
    Above message says that your registry is not consistent and some of the parameters are missing from registry.Or
    Account installing SQL server does not have permission to access this. I think case can be here that account with which you logged into your system to install SQL Server might not have certain privileges. Can you take help
    of domain admin account add it as a local administrator in this machine always right click on setup file and select run as administrator. Before this make sure you  remove all SQL Server components from add remove program
    I strongly recommend you to have a good look at below thread
    http://support.microsoft.com/kb/2000257/en-us
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • Team Foundation Server 2013 Express licensing issues - error TF400409

    We've installed Team Foundation Server Express 2013 update 3.  When I go to a project/team and attempt to use the Backlog or Task Board functions under Work, or use the Team Rooms I get the following error message:
    TF400409  You do not have licensing rights to access this feature: Backlog and sprint planning tools
    TF400409  You do not have licensing rights to access this feature: Agile boards
    TF400409  You do not have licensing rights to access this feature: Team Rooms
    Are these features truly not included with the Express version of TFS or is something wrong with our install?

    Hi Dave,  
    Thanks for your reply.
    I checked and confirmed in TFS Express, as you said, there’s no the Access level feature in TFS 2013 Express Web Access, and TFS 2013 Express not support the backlog/sprint planning, Agile task board and Team room, it’s by design.
    You can download VS 2013 document from
    here, and check the Client Licensing Requirement for Team Foundation Server section in this document for more information. 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 'PLS-00363: expression..' error when executing a stored procedure with in o

    Hello,
    I'm trying to run a PLSQL script containing an ORACLE API but its failing on compilation with the message:
    'PLS-00363: expression '<expression>' cannot be used as an assignment target'.
    As far as I understand its connected to my IN-OUT parameters but I can't figure out which (I must admit I'm still hiking up a steep learning curve here and I've cut and pasted someone elses example and modified it).
    I would be most grateful if one of you pro's could read through my code and advise..
    many thanks,
    Steven

    i guess you are trying to store value in your IN parameter.
    here is an example
    SQL> create or replace procedure pr(p in integer)
      2  as
      3  begin
      4     p := 1;
      5  end;
      6  /
    Warning: Procedure created with compilation errors.
    SQL> show err
    Errors for PROCEDURE PR:
    LINE/COL ERROR
    4/2      PL/SQL: Statement ignored
    4/2      PLS-00363: expression 'P' cannot be used as an assignment targetSee it also gives the exact line in which the error has occurred. so see that and fix it.
    Edited by: Karthick_Arp on Feb 12, 2009 1:57 AM

  • 'PLS-00363: expression..' error when executing a stored procedure..

    Hello,
    I'm trying to run a PLSQL script containing an ORACLE API but its failing on compilation with the message:
    'PLS-00363: expression '<expression>' cannot be used as an assignment target'.
    As far as I understand its connected to my IN-OUT parameters but I can't figure out which (I must admit I'm still hiking up a steep learning curve here and I've cut and pasted someone elses example and modified it).
    I would be most grateful if one of you pro's could read through my code and advise..
    SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
    SET verify OFF
    SET feedback OFF
    DECLARE
       error_msg                   varchar2(2000) := '';       
       l_status           varchar2(10) := 'True';       
       l_validate_cnt           number;                       
       l_ass_count           number;                       
       l_business_group_id        number := 0;               
        l_validate          BOOLEAN DEFAULT FALSE;                                   
       l_city                       varchar2(30);
       l_mode              varchar2(20) := 'UPDATE'; 
       l_sup_join_date           date;
       l_organization_id            hr_organization_units.organization_id%type;
       l_person_id                  per_all_people_f.person_id%type;
       l_object_version_number      per_all_assignments_f.object_version_number%type;
       l_job_id                     per_jobs.job_id%type;
       l_position_id                per_positions.position_id%type;
       l_location_id               number := 233;  -- number;
       l_grade_id              number := 3; --      per_grades.grade_id%type;
       l_supervisor_id       number := 2; --        per_all_assignments_f.supervisor_id%type;
       l_assignment_status_type_id  number;
       l_pay_basis_id           number := 33;
       l_join_date           date;
       l_assignment_id                per_all_assignments_f.assignment_id%type;
       l_soft_coding_keyflex_id       per_all_assignments_f.soft_coding_keyflex_id%type;
       l_people_group_id              per_all_assignments_f.people_group_id%type;
       l_payroll_id                   per_all_assignments_f.payroll_id%type;
       l_effective_start_date         per_all_assignments_f.effective_start_date%type;
       l_effective_end_date           per_all_assignments_f.effective_end_date%type;
       l_assignment_sequence          per_all_assignments_f.assignment_sequence%type;
       l_comment_id                   per_all_assignments_f.comment_id%type;
       l_concatenated_segments        varchar2(240);
       l_group_name                   varchar2(100);
       l_other_manager_warning        boolean;
       l_org_now_no_manager_warning   boolean;
       l_spp_delete_warning           boolean;
       l_entries_changed_warning      varchar2(200);
       l_tax_district_changed_warning boolean;
       l_special_ceiling_step_id      number;
       l_no_managers_warning          boolean;
       l_other_manager_warnings       boolean;
       l_cagr_grade_def_id            number;
       l_cagr_concatenated_segments   varchar2(100);
       l_total_records             number := 0;
       l_success_records          number := 0;
       l_failure_records          number := 0;
    BEGIN
       dbms_output.put_line('#############################################################');
       dbms_output.put_line('Data Migration Of Employee Assignments :');
       dbms_output.put_line('#############################################################');
       dbms_output.put_line('Start Time : ' || TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS'));  
          l_person_id      := null;
          l_object_version_number := null;
          l_organization_id   := 0;
          l_location_id      := null;
          l_grade_id      := null;
          l_job_id      := null;
          l_position_id           := null;
          l_supervisor_id           := null;
          l_assignment_status_type_id := null;
          error_msg      := null;
          l_status      := 'True';
                hr_assignment_api.update_emp_asg_criteria
         p_validate                     => l_validate
                   ,p_effective_date               => sysdate --to_date('11-Jan-2009','DD-MON-YYYY')
                   ,p_datetrack_update_mode        => l_mode                     
                   ,p_assignment_id                => l_assignment_id   
                   ,p_object_version_number        => l_object_version_number +1   
                   ,p_organization_id              => l_organization_id 
                   ,p_location_id                  => l_location_id --assignment_v.location_id
                   ,p_grade_id                     => l_grade_id
                   ,p_job_id                       => l_job_id
                   ,p_position_id                  => l_position_id
                   ,p_payroll_id                   => l_payroll_id --21--hardcoding this you should change this
             --      ,p_segment1                     => assignment_v.people_group
           --        ,p_employment_category          => assignment_v.employee_category
                   ,p_pay_basis_id                 => l_pay_basis_id
                   ,p_special_ceiling_step_id      => l_special_ceiling_step_id    
                   ,p_people_group_id              => l_people_group_id            
                   ,p_group_name                   => l_group_name                 
                   ,p_org_now_no_manager_warning   => l_org_now_no_manager_warning 
                   ,p_effective_start_date         => l_effective_start_date       
                   ,p_effective_end_date           => l_effective_end_date         
                   ,p_other_manager_warning        => l_other_manager_warning      
                   ,p_spp_delete_warning           => l_spp_delete_warning         
                   ,p_entries_changed_warning      => l_entries_changed_warning    
                   ,p_tax_district_changed_warning => l_tax_district_changed_warning
                hr_assignment_api.update_emp_asg
           p_validate                   => l_validate --false                       
                   ,p_effective_date             => to_date('11-Jan-2009','DD-MON-YYYY') --assignment_v.date_of_change                      
                   ,p_datetrack_update_mode      => 'CORRECTION'                    
                   ,p_assignment_id              => l_assignment_id  
                   ,p_object_version_number      => l_object_version_number   
                   ,p_supervisor_id              => l_supervisor_id
                   ,p_normal_hours               => '7.5' 
                   ,p_frequency                  => 'D'
                   ,p_time_normal_start          => '09:30'
                   ,p_time_normal_finish         => '17:30'
                   ,p_soft_coding_keyflex_id     => l_soft_coding_keyflex_id    
                   ,p_comment_id                 => l_comment_id                
                   ,p_effective_start_date       => l_effective_start_date      
                   ,p_effective_end_date         => l_effective_end_date        
                   ,p_concatenated_segments      => l_concatenated_segments     
                   ,p_no_managers_warning        => l_no_managers_warning       
                   ,p_other_manager_warning      => l_other_manager_warnings    
                   ,p_cagr_grade_def_id          => l_cagr_grade_def_id         
                   ,p_cagr_concatenated_segments => l_cagr_concatenated_segments
    dbms_output.put_line('End Time   : ' || TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS'));
       dbms_output.put_line('          
    END;
    commit;
    exit;many thanks,
    Steven

    Thanks for the suggestions people. Here's the other API description requested:
    PROCEDURE UPDATE_EMP_ASG
    Argument Name                  Type                    In/Out Default?
    P_VALIDATE                     BOOLEAN                 IN     DEFAULT
    P_EFFECTIVE_DATE               DATE                    IN   
    P_DATETRACK_UPDATE_MODE        VARCHAR2                IN   
    P_ASSIGNMENT_ID                NUMBER                  IN   
    P_OBJECT_VERSION_NUMBER        NUMBER                  IN/OUT
    P_SUPERVISOR_ID                NUMBER                  IN     DEFAULT
    P_ASSIGNMENT_NUMBER            VARCHAR2                IN     DEFAULT
    P_CHANGE_REASON                VARCHAR2                IN     DEFAULT
    P_ASSIGNMENT_STATUS_TYPE_ID    NUMBER                  IN     DEFAULT
    P_COMMENTS                     VARCHAR2                IN     DEFAULT
    P_DATE_PROBATION_END           DATE                    IN     DEFAULT
    P_DEFAULT_CODE_COMB_ID         NUMBER                  IN     DEFAULT
    P_FREQUENCY                    VARCHAR2                IN     DEFAULT
    P_INTERNAL_ADDRESS_LINE        VARCHAR2                IN     DEFAULT
    P_MANAGER_FLAG                 VARCHAR2                IN     DEFAULT
    P_NORMAL_HOURS                 NUMBER                  IN     DEFAULT
    P_PERF_REVIEW_PERIOD           NUMBER                  IN     DEFAULT
    P_PERF_REVIEW_PERIOD_FREQUENCY VARCHAR2                IN     DEFAULT
    P_PROBATION_PERIOD             NUMBER                  IN     DEFAULT
    P_PROBATION_UNIT               VARCHAR2                IN     DEFAULT
    P_SAL_REVIEW_PERIOD            NUMBER                  IN     DEFAULT
    P_SAL_REVIEW_PERIOD_FREQUENCY  VARCHAR2                IN     DEFAULT
    P_SET_OF_BOOKS_ID              NUMBER                  IN     DEFAULT
    P_SOURCE_TYPE                  VARCHAR2                IN     DEFAULT
    P_TIME_NORMAL_FINISH           VARCHAR2                IN     DEFAULT
    P_TIME_NORMAL_START            VARCHAR2                IN     DEFAULT
    P_BARGAINING_UNIT_CODE         VARCHAR2                IN     DEFAULT
    P_LABOUR_UNION_MEMBER_FLAG     VARCHAR2                IN     DEFAULT
    P_HOURLY_SALARIED_CODE         VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE_CATEGORY       VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE1               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE2               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE3               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE4               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE5               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE6               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE7               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE8               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE9               VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE10              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE11              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE12              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE13              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE14              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE15              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE16              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE17              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE18              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE19              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE20              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE21              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE22              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE23              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE24              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE25              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE26              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE27              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE28              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE29              VARCHAR2                IN     DEFAULT
    P_ASS_ATTRIBUTE30              VARCHAR2                IN     DEFAULT
    P_TITLE                        VARCHAR2                IN     DEFAULT
    P_SEGMENT1                     VARCHAR2                IN     DEFAULT
    P_SEGMENT2                     VARCHAR2                IN     DEFAULT
    P_SEGMENT3                     VARCHAR2                IN     DEFAULT
    P_SEGMENT4                     VARCHAR2                IN     DEFAULT
    P_SEGMENT5                     VARCHAR2                IN     DEFAULT
    P_SEGMENT6                     VARCHAR2                IN     DEFAULT
    P_SEGMENT7                     VARCHAR2                IN     DEFAULT
    P_SEGMENT8                     VARCHAR2                IN     DEFAULT
    P_SEGMENT9                     VARCHAR2                IN     DEFAULT
    P_SEGMENT10                    VARCHAR2                IN     DEFAULT
    P_SEGMENT11                    VARCHAR2                IN     DEFAULT
    P_SEGMENT12                    VARCHAR2                IN     DEFAULT
    P_SEGMENT13                    VARCHAR2                IN     DEFAULT
    P_SEGMENT14                    VARCHAR2                IN     DEFAULT
    P_SEGMENT15                    VARCHAR2                IN     DEFAULT
    P_SEGMENT16                    VARCHAR2                IN     DEFAULT
    P_SEGMENT17                    VARCHAR2                IN     DEFAULT
    P_SEGMENT18                    VARCHAR2                IN     DEFAULT
    P_SEGMENT19                    VARCHAR2                IN     DEFAULT
    P_SEGMENT20                    VARCHAR2                IN     DEFAULT
    P_SEGMENT21                    VARCHAR2                IN     DEFAULT
    P_SEGMENT22                    VARCHAR2                IN     DEFAULT
    P_SEGMENT23                    VARCHAR2                IN     DEFAULT
    P_SEGMENT24                    VARCHAR2                IN     DEFAULT
    P_SEGMENT25                    VARCHAR2                IN     DEFAULT
    P_SEGMENT26                    VARCHAR2                IN     DEFAULT
    P_SEGMENT27                    VARCHAR2                IN     DEFAULT
    P_SEGMENT28                    VARCHAR2                IN     DEFAULT
    P_SEGMENT29                    VARCHAR2                IN     DEFAULT
    P_SEGMENT30                    VARCHAR2                IN     DEFAULT
    P_CONCAT_SEGMENTS              VARCHAR2                IN     DEFAULT
    P_CONTRACT_ID                  NUMBER                  IN     DEFAULT
    P_ESTABLISHMENT_ID             NUMBER                  IN     DEFAULT
    P_COLLECTIVE_AGREEMENT_ID      NUMBER                  IN     DEFAULT
    P_CAGR_ID_FLEX_NUM             NUMBER                  IN     DEFAULT
    P_CAG_SEGMENT1                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT2                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT3                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT4                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT5                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT6                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT7                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT8                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT9                 VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT10                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT11                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT12                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT13                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT14                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT15                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT16                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT17                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT18                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT19                VARCHAR2                IN     DEFAULT
    P_CAG_SEGMENT20                VARCHAR2                IN     DEFAULT
    P_NOTICE_PERIOD                NUMBER                  IN     DEFAULT
    P_NOTICE_PERIOD_UOM            VARCHAR2                IN     DEFAULT
    P_EMPLOYEE_CATEGORY            VARCHAR2                IN     DEFAULT
    P_WORK_AT_HOME                 VARCHAR2                IN     DEFAULT
    P_JOB_POST_SOURCE_NAME         VARCHAR2                IN     DEFAULT
    P_SUPERVISOR_ASSIGNMENT_ID     NUMBER                  IN     DEFAULT
    P_CAGR_GRADE_DEF_ID            NUMBER                  IN/OUT
    P_CAGR_CONCATENATED_SEGMENTS   VARCHAR2                OUT  
    P_CONCATENATED_SEGMENTS        VARCHAR2                OUT  
    P_SOFT_CODING_KEYFLEX_ID       NUMBER                  IN/OUT
    P_COMMENT_ID                   NUMBER                  OUT  
    P_EFFECTIVE_START_DATE         DATE                    OUT  
    P_EFFECTIVE_END_DATE           DATE                    OUT  
    P_NO_MANAGERS_WARNING          BOOLEAN                 OUT  
    P_OTHER_MANAGER_WARNING        BOOLEAN                 OUT  
    P_HOURLY_SALARIED_WARNING      BOOLEAN                 OUT  
    P_GSP_POST_PROCESS_WARNING     VARCHAR2                OUT On looking on the web I've found that my latest error message - ORA-20001: The primary key specified is invalid
    Cause: The primary key values specified are invalid and do not exist in
    the schema.
    Action: Check the primary key values... - relates to incorrect combination of person_id,object_version_number,effective_start_date and effective_end_date - all of which seem OK to me - her's my latest version of my code.. Many thanks again.
    SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
    SET verify OFF
    SET feedback OFF
    DECLARE
       error_msg     varchar2(2000);       
       l_status           varchar2(10);       
       l_validate_cnt           number;                       
       l_ass_count           number;           
       l_validate   BOOLEAN DEFAULT FALSE;                                   
       l_city            varchar2(30);
       l_mode        varchar2(20) := 'UPDATE'; 
       l_organization_id    number;
       l_effective_date date := '12-FEB-09';                                    
       l_person_id   number := '29987';
       l_object_version_number number := '3';
       l_effective_start_date date := '12-FEB-09';                                    
       l_effective_end_date date := '12-FEB-56';                                    
       l_job_id                     per_jobs.job_id%type;
       l_position_id                per_positions.position_id%type;
       l_location_id               number;
       l_grade_id              number;
       l_supervisor_id       number;
       l_assignment_status_type_id  number;
       l_pay_basis_id           number;
       l_join_date           date;
       l_soft_coding_keyflex_id   number;
       l_people_group_id              per_all_assignments_f.people_group_id%type;
       l_payroll_id                   per_all_assignments_f.payroll_id%type;
       l_assignment_sequence          per_all_assignments_f.assignment_sequence%type;
       l_comment_id                   per_all_assignments_f.comment_id%type;
      l_normal_end varchar2(15) := '17:30';
      l_normal_start varchar2(15) := '09:30';
      l_frequency varchar2(10) := 'D';
      l_normal_hours varchar2(25) := '7.5';
      l_assignment_id number := '29884';
      l_gsp_post_process_warning varchar2(30);
      l_entries_changed varchar2(30);
      l_old_obj_ver_number per_addresses.OBJECT_VERSION_NUMBER%type;
       l_segment1 varchar2(25);
       l_segment2 varchar2(25);
       l_segment3 varchar2(25);
       l_concatenated_segments        varchar2(240);
       l_group_name                   varchar2(100);
       l_other_manager_warning        boolean;
       l_org_now_no_manager_warning   boolean;
       l_spp_delete_warning           boolean;
       l_entries_changed_warning      varchar2(200);
       l_tax_district_changed_warning boolean;
       l_special_ceiling_step_id      number;
       l_no_managers_warning          boolean;
       l_other_manager_warnings       boolean;
       l_cagr_grade_def_id            number;
       l_cagr_concatenated_segments   varchar2(100);
       l_datetrack_update_mod varchar2(10);
       l_total_records             number := 0;
       l_success_records          number := 0;
       l_failure_records          number := 0;
    BEGIN
       dbms_output.put_line('#############################################################');
       dbms_output.put_line('Data Migration Of Employee Assignments :');
       dbms_output.put_line('#############################################################');
       dbms_output.put_line('Start Time : ' || TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS'));  
          l_person_id  := null;
          l_object_version_number  := null;
          l_organization_id  := null;
          l_location_id  := null;
          l_grade_id      := null;
          l_job_id      := null;
          l_position_id           := null;
          l_supervisor_id           := null;
          l_assignment_status_type_id := null;
          error_msg      := null;
          l_status      := 'True';
            hr_assignment_api.update_emp_asg_criteria (
         p_effective_date           => l_effective_date                                                                        ,p_datetrack_update_mode     => l_datetrack_update_mod                                                           ,p_assignment_id             => l_assignment_id                                                                       ,p_called_from_mass_update     => NULL                                                                         ,p_grade_id                   => l_grade_id                                                                               ,p_position_id              => l_position_id                                                                            ,p_job_id                     => l_job_id                                                                                   ,p_payroll_id                => l_payroll_id                                                                              ,p_location_id                => l_location_id                                                                            ,p_organization_id        => l_organization_id                                                        ,p_pay_basis_id              => l_pay_basis_id
         ,p_segment1               => l_segment1
         ,p_segment2               => l_segment2
         ,p_segment3             => l_segment3                                                                                     ,p_employment_category          => NULL                                                                     ,p_concat_segments              => NULL                                                                       ,p_contract_id               => NULL                                                                                       ,p_establishment_id             => NULL                                                                         ,p_scl_segment1              => NULL                                                                                       ,p_grade_ladder_pgm_id       => NULL                                                                                       ,p_supervisor_assignment_id      => NULL                                                                         ,p_object_version_number         => l_old_obj_ver_number                                                ,p_special_ceiling_step_id       => l_special_ceiling_step_id                                                           ,p_people_group_id               => l_people_group_id                                                                    ,p_soft_coding_keyflex_id        => l_soft_coding_keyflex_id                                                           ,p_group_name                    => l_group_name                                                                         ,p_effective_start_date          => l_effective_start_date                                                               ,p_effective_end_date            => l_effective_end_date                                                                ,p_org_now_no_manager_warning      => l_org_now_no_manager_warning                                ,p_other_manager_warning           => l_other_manager_warning                                          ,p_spp_delete_warning              => l_spp_delete_warning                                              ,p_entries_changed_warning         => l_entries_changed                                                   ,p_tax_district_changed_warning     => l_tax_district_changed_warning                                ,p_concatenated_segments         => l_concatenated_segments                                        ,p_gsp_post_process_warning      => l_gsp_post_process_warning);
                hr_assignment_api.update_emp_asg
           p_validate                   => l_validate
                   ,p_effective_date             => l_effective_date
                   ,p_datetrack_update_mode      => l_datetrack_update_mod --'CORRECTION'                    
                   ,p_assignment_id              => l_assignment_id  
                   ,p_object_version_number      => l_object_version_number   
                   ,p_supervisor_id              => l_supervisor_id
                   ,p_normal_hours               => l_normal_hours --'7.5' 
                   ,p_frequency                  => l_frequency --'D'
                   ,p_time_normal_start          => l_normal_start --'09:30'
                   ,p_time_normal_finish         => l_normal_end --'17:30'
                   ,p_soft_coding_keyflex_id     => l_soft_coding_keyflex_id    
                   ,p_comment_id                 => l_comment_id                
                   ,p_effective_start_date       => l_effective_start_date      
                   ,p_effective_end_date         => l_effective_end_date        
                   ,p_concatenated_segments      => l_concatenated_segments     
                   ,p_no_managers_warning        => l_no_managers_warning       
                   ,p_other_manager_warning      => l_other_manager_warnings    
                   ,p_cagr_grade_def_id          => l_cagr_grade_def_id         
                   ,p_cagr_concatenated_segments => l_cagr_concatenated_segments
    dbms_output.put_line('End Time   : ' || TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS'));
       dbms_output.put_line('          
    END;
    commit;
    exit;

  • Visual Basic express 2010 installation error on windows 7

    Hello all! I'm new here and my problem is that  I cannot install VB Express after upgrading windows 7 from Home premium to Ultimate. VB Express was moved to the windows.old folder along with other programs and refused to open (Application cannot start
    error) so I figured the way to solve it was to re-install which worked for other programs with this issue. It wasn't available in the Add/Remove features either nor would its uninstall program remove the program so i manually deleted the folder.
    I have tried many times to re-install Visual Basic but  to no avail. It always displays Setup could not install the following components: Microsoft .Net which is first on the list and all other the components. Image here: http://www.mediafire.com/view/wzrh64ysojl6wxv/Error_page.png.
    Here is my error log http://www.mediafire.com/view/yc9wb7dqyv561r7/dd_depcheck_VB_EXP_100.txt .I've used programs like CCleaner and VS Uninstall utility to remove traces of VB express for a fresh install but it didn't work either. I've also tried running the
    setup in administrator mode, clearing the temp directory and disabling my antivirus software as recommended in other threads. Please help me fix this problem; I had an ongoing project before this happened. Thanks a ton!!

    Based on that image, it seems that you could not install .net 4.0, I would prefer uninstall .net 4.0 and reinstall .net 4.0 to test, if that still has this issue, then reinstalling that OS will be better choice.
    remember make the reply as answer and vote the reply as helpful if it helps.

  • SQL Server Express 2008 Setup Error : Exit code -2147467259.

    Hello.
     I have been trying to install SQL Express 2008, 3 different editions on a Windows 2008 Standard Server.  All of the installers failed just after the install file had finished unpacking itself in a temp folder. No errors or logs were found.
    .Net3.5sp1, Windows Installer 4.5 and PowerShell 1.0 were all installed.
    I was only able to find a log file when I used the SqlExpressWrapper.exe to drive the installation.
    The error displayed from the wapper is : An error occurred during installation of SQL Server 2008 Express. Installation failed with exit code -2147467259
    thank you for your help.
    Naim
    Here is the complete log.
    C:\ProgramData\Microsoft\SQL Server 2008 Express Install\2008-11-12_14-27-41-519\Logs\Install Wrapper\log.txt
    Info: [T1][14:27:41.519] Program.Main                            Install Wrapper started, log initialized.
    Verbose: [T1][14:27:41.550] Program.Main                            Executable path: C:\ProgramData\Microsoft\SQL Server 2008 Express Install\2008-11-12_13-56-59-277\SqlExpressWrapper.exe
    Verbose: [T1][14:27:41.550] Program.Main                            Command line arguments: (none)
    Verbose: [T1][14:27:41.550] Program.Main                            Environment:
        Current UI culture: en-US
        Installed culture: en-US
        OS: Windows Server 2008 Service Pack 1 (Microsoft Windows NT 6.0.6001 Service Pack 1), product type: 3
        Architecture: x86
    Verbose: [T1][14:27:41.550] Program.Main                            Running UI.
    Verbose: [T1][14:27:41.550] LocaleCollection.GetLocaleForCulture    Start - cultureName=en-US
    Verbose: [T1][14:27:41.550] LocaleCollection.GetLocaleForCulture    End - returned [Id=en, EnglishName=English]
    Verbose: [T1][14:27:42.924] Wizard.Window_Loaded                    Start - sender=Microsoft.SqlServer.SqlExpressWrapper.UI.Wizard; e=System.Windows.RoutedEventArgs
    Verbose: [T1][14:27:42.924] Wizard.Window_Loaded                    End
    Info: [T1][14:27:43.845] InstallState.get_ComponentsToInstall    Determining components to install.
    Verbose: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           Start
        Info: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           Checking whether Windows Installer 4.5 is installed.
        Verbose: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           Checking version of file C:\Windows\system32\msi.dll; minimum version is 4.5
        Verbose: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           Detected version 4.5.6001.22162
        Verbose: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           File version check PASSED.
        Info: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           Windows Installer 4.5 is installed.
    Verbose: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           End - returned True
    Verbose: [T1][14:27:43.845] InstallState.get_ComponentsToInstall    Windows Installer 4.5 - No (already installed)
    Verbose: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           Start
        Info: [T1][14:27:43.845] ComponentInfo.get_IsInstalled           Checking whether Windows Powershell 1.0 is installed.
        Verbose: [T1][14:27:43.845] ComponentInfo.CheckRegistryValues       Start - path=HKEY_LOCAL_MACHINE\Software\Microsoft\Powershell\1:Install; data=1
            Verbose: [T1][14:27:43.845] ComponentInfo.CheckRegistryValue        Start - path=HKEY_LOCAL_MACHINE\Software\Microsoft\Powershell\1:Install; data=1
                Verbose: [T1][14:27:43.861] ComponentInfo.ParseRegKeyPath           Start - path=HKEY_LOCAL_MACHINE\Software\Microsoft\Powershell\1:Install; keyName=NULL; valueName=NULL
                Verbose: [T1][14:27:43.861] ComponentInfo.ParseRegKeyPath           End
                Verbose: [T1][14:27:43.861] ComponentInfo.CheckRegistryValue        Checking registry key HKEY_LOCAL_MACHINE\Software\Microsoft\Powershell\1:Install for 1
            Verbose: [T1][14:27:43.861] ComponentInfo.CheckRegistryValue        End - returned True
        Verbose: [T1][14:27:43.861] ComponentInfo.CheckRegistryValues       End - returned True
        Verbose: [T1][14:27:43.861] ComponentInfo.get_IsInstalled           Registry check PASSED.
        Info: [T1][14:27:43.861] ComponentInfo.get_IsInstalled           Windows Powershell 1.0 is installed.
    Verbose: [T1][14:27:43.861] ComponentInfo.get_IsInstalled           End - returned True
    Verbose: [T1][14:27:43.861] InstallState.get_ComponentsToInstall    Windows Powershell 1.0 - No (already installed)
    Verbose: [T1][14:27:43.861] ComponentInfo.get_IsInstalled           Start
    Verbose: [T1][14:27:43.861] ComponentInfo.get_IsInstalled           End - returned False
    Verbose: [T1][14:27:43.861] InstallState.get_ComponentsToInstall    SQL Server 2008 Express with Tools - Yes
    Verbose: [T1][14:27:43.861] InstallState.get_ComponentsToInstall    SQL Server 2008 Express with Advanced Services - No (not selected or required)
    Verbose: [T1][14:27:43.861] InstallState.get_ComponentsToInstall    SQL Server 2008 Express - No (not selected or required)
    Verbose: [T1][14:27:43.908] StartPage.Page_Loaded                   Start - sender=Microsoft.SqlServer.SqlExpressWrapper.UI.StartPage; e=System.Windows.RoutedEventArgs
    Verbose: [T1][14:27:43.908] StartPage.Page_Loaded                   End
    Verbose: [T1][14:27:46.546] StartPage.ButtonInstall_Click           Start - sender=System.Windows.Controls.Button: Install; e=System.Windows.RoutedEventArgs
        Verbose: [T1][14:27:46.546] LocaleCollection.GetLocaleForCulture    Start - cultureName=en-US
        Verbose: [T1][14:27:46.546] LocaleCollection.GetLocaleForCulture    End - returned [Id=en, EnglishName=English]
        Verbose: [T1][14:27:46.562] InstallController.InstallCommand_ExecutedStart - sender=Microsoft.SqlServer.SqlExpressWrapper.UI.StartPage; e=System.Windows.Input.ExecutedRoutedEventArgs
        Verbose: [T1][14:27:46.562] InstallController.InstallCommand_ExecutedEnd
    Verbose: [T1][14:27:46.562] StartPage.ButtonInstall_Click           End
    Verbose: [T3][14:27:46.562] InstallController.InstallWorker         Start
        Verbose: [T3][14:27:46.562] LocaleCollection.GetLocaleForCulture    Start - cultureName=en-US
        Verbose: [T3][14:27:46.562] LocaleCollection.GetLocaleForCulture    End - returned [Id=en, EnglishName=English]
        Info: [T3][14:27:46.562] InstallController.InstallWorker         Starting install session.
        Verbose: [T3][14:27:46.562] InstallState.GetIncompatibleComponents  Start
            Info: [T3][14:27:46.562] InstallState.GetIncompatibleComponents  Checking components for system compatibility.
            Info: [T3][14:27:46.562] ComponentInfo.get_TargetDeployment      Determining best deployment of SQL Server 2008 Express with Tools for this system.
            Verbose: [T3][14:27:46.562] ComponentInfo.get_TargetDeployment      Target locale: en
            Info: [T3][14:27:46.577] ComponentInfo.get_TargetDeployment      Best deployment: [LocaleId=en, OS=5.1.2600-5.1.9999.9999,5.2.3790.3959-, Architecture=x86, DownloadUrl=http://go.microsoft.com/fwlink/?LinkID=119768&clcid=0x409]
            Info: [T3][14:27:46.577] InstallState.GetIncompatibleComponents  Found 0 incompatible component(s).
        Verbose: [T3][14:27:46.577] InstallState.GetIncompatibleComponents  End - returned System.Collections.ObjectModel.Collection`1[Microsoft.SqlServer.SqlExpressWrapper.Configuration.ComponentInfo]
        Verbose: [T3][14:27:46.577] InstallController.DownloadComponents    Start
            Info: [T3][14:27:46.577] InstallController.DownloadComponents    Download phase started.
            Info: [T3][14:27:46.577] InstallState.get_ComponentsToDownload   Determining components to download.
            Verbose: [T3][14:27:46.577] ComponentInfo.get_IsInstalled           Start
            Verbose: [T3][14:27:46.577] ComponentInfo.get_IsInstalled           End - returned True
            Verbose: [T3][14:27:46.577] InstallState.get_ComponentsToDownload   Windows Installer 4.5 - No (already installed)
            Verbose: [T3][14:27:46.577] ComponentInfo.get_IsInstalled           Start
            Verbose: [T3][14:27:46.577] ComponentInfo.get_IsInstalled           End - returned True
            Verbose: [T3][14:27:46.593] InstallState.get_ComponentsToDownload   Windows Powershell 1.0 - No (already installed)
            Verbose: [T3][14:27:46.593] ComponentInfo.get_IsInstalled           Start
            Verbose: [T3][14:27:46.593] ComponentInfo.get_IsInstalled           End - returned False
            Verbose: [T3][14:27:46.593] ComponentInfo.get_IsDownloaded          Start
                Verbose: [T1][14:27:47.608] ProgressPage.Page_Loaded                Start - sender=Microsoft.SqlServer.SqlExpressWrapper.UI.ProgressPage; e=System.Windows.RoutedEventArgs
    Verbose: [T1][14:27:47.608] ProgressPage.Page_Loaded                End
    Verbose: [T3][14:27:47.639] ComponentInfo.get_IsDownloaded          File C:\ProgramData\Microsoft\SQL Server 2008 Express Install\Downloads\SqlExpressWithTools\SQLEXPRWT_x86_ENU.exe is already downloaded.
            Verbose: [T3][14:27:47.639] ComponentInfo.get_IsDownloaded          End - returned True
            Verbose: [T3][14:27:47.639] InstallState.get_ComponentsToDownload   SQL Server 2008 Express with Tools - No (already downloaded)
            Verbose: [T3][14:27:47.639] InstallState.get_ComponentsToDownload   SQL Server 2008 Express with Advanced Services - No (not selected or required)
            Verbose: [T3][14:27:47.639] InstallState.get_ComponentsToDownload   SQL Server 2008 Express - No (not selected or required)
            Info: [T3][14:27:47.639] InstallController.DownloadComponents    Download phase ended.
        Verbose: [T3][14:27:47.639] InstallController.DownloadComponents    End
        Verbose: [T3][14:27:47.639] InstallController.InstallComponents     Start
            Info: [T3][14:27:47.639] InstallController.InstallComponents     Install phase started.
            Verbose: [T3][14:27:47.639] InstallController.SetForRestart         Start - restart=True
                Verbose: [T3][14:27:47.654] InstallController.CopyProgramFiles      Start
                    Verbose: [T3][14:27:47.654] InstallController.CopyProgramFiles      Copying wrapper files from C:\ProgramData\Microsoft\SQL Server 2008 Express Install\2008-11-12_13-56-59-277 to C:\ProgramData\Microsoft\SQL Server 2008 Express Install\2008-11-12_14-27-41-519
                Verbose: [T3][14:27:47.701] InstallController.CopyProgramFiles      End
                Verbose: [T3][14:27:47.701] InstallController.SetForRestart         Setting registry key for restart.
            Verbose: [T3][14:27:47.701] InstallController.SetForRestart         End
            Verbose: [T3][14:27:47.717] ComponentInstaller.Install              Start
                Info: [T3][14:27:47.717] ComponentInstaller.Install              Preparing to install SQL Server 2008 Express with Tools.
                Verbose: [T3][14:27:47.717] ComponentInstaller.ValidateFile         Start
                    Info: [T3][14:27:47.717] ComponentInstaller.ValidateFile         Validating SQLEXPRWT_x86_ENU.exe.
                    Verbose: [T3][14:27:47.717] ComponentInstaller.GetFileCertificate   Start - file=C:\ProgramData\Microsoft\SQL Server 2008 Express Install\Downloads\SqlExpressWithTools\SQLEXPRWT_x86_ENU.exe
                        Verbose: [T3][14:27:47.717] ComponentInstaller.GetFileCertificate   Retrieved certificate: CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
                    Verbose: [T3][14:27:47.717] ComponentInstaller.GetFileCertificate   End - returned [Subject]
      CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    [Issuer]
      CN=Microsoft Code Signing PCA, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    [Serial Number]
      610F784D000000000003
    [Not Before]
      2007-08-22 20:23:13
    [Not After]
      2009-02-22 19:33:13
    [Thumbprint]
      D57FAC60F1A8D34877AEB350E83F46F6EFC9E5F1
                    Verbose: [T3][14:27:47.717] ComponentInstaller.IsValidCertificate   Start - cert=[Subject]
      CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    [Issuer]
      CN=Microsoft Code Signing PCA, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    [Serial Number]
      610F784D000000000003
    [Not Before]
      2007-08-22 20:23:13
    [Not After]
      2009-02-22 19:33:13
    [Thumbprint]
      D57FAC60F1A8D34877AEB350E83F46F6EFC9E5F1
                        Verbose: [T3][14:27:47.779] ComponentInstaller.IsValidCertificate   Looking in certificate chain for public key 3082010A0282010100A2DB0A8DCFC2C1499BCDAA3A34AD23596BDB6CBE2122B794C8EAAEBFC6D526C232118BBCDA5D2CFB36561E152BAE8F0DDD14A36E284C7F163F41AC8D40B146880DD98194AD9706D05744765CEAF1FC0EE27F74A333CB74E5EFE361A17E03B745FFD53E12D5B0CA5E0DD07BF2B7130DFC606A2885758CB7ADBC85E817B490BEF516B6625DED11DF3AEE215B8BAF8073C345E3958977609BE7AD77C1378D33142F13DB62C9AE1AA94F9867ADD420393071E08D6746E2C61CF40D5074412FE805246A216B49B092C4B239C742A56D5C184AAB8FD78E833E780A47D8A4B28423C3E2F27B66B14A74BD26414B9C6114604E30C882F3D00B707CEE554D77D2085576810203010001
                        Verbose: [T3][14:27:47.779] ComponentInstaller.IsValidCertificate   Checking certificate: [Subject] CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US  [Issuer] CN=Microsoft Code Signing PCA, O=Microsoft Corporation, L=Redmond, S=Washington, C=US  [Serial Number] 610F784D000000000003  [Not Before] 2007-08-22 20:23:13  [Not After] 2009-02-22 19:33:13  [Thumbprint] D57FAC60F1A8D34877AEB350E83F46F6EFC9E5F1
                    Verbose: [T3][14:27:47.779] ComponentInstaller.IsValidCertificate   End - returned True
                    Info: [T3][14:27:47.779] ComponentInstaller.ValidateFile         File validation PASSED.
                Verbose: [T3][14:27:47.779] ComponentInstaller.ValidateFile         End - returned True
                Info: [T3][14:27:47.779] ComponentInstaller.Install              Installing SQL Server 2008 Express with Tools.
                Verbose: [T3][14:27:47.795] ComponentInstaller.Install              Executing command line "C:\ProgramData\Microsoft\SQL Server 2008 Express Install\Downloads\SqlExpressWithTools\SQLEXPRWT_x86_ENU.exe" /ACTION=Install
                Verbose: [T3][14:27:47.795] ComponentInstaller.ParseCommandLine     Start
                Verbose: [T3][14:27:47.795] ComponentInstaller.ParseCommandLine     End - returned System.Diagnostics.ProcessStartInfo
                Verbose: [T3][14:27:48.903] ComponentInstaller.Install              Waiting for process to exit.
                Verbose: [T3][14:28: 0. 97] ComponentInstaller.Install              Process returned exit code -2147467259.
                Error: [T3][14:28: 0. 97] ComponentInstaller.Install              Command line '"C:\ProgramData\Microsoft\SQL Server 2008 Express Install\Downloads\SqlExpressWithTools\SQLEXPRWT_x86_ENU.exe" /ACTION=Install ' returned unexpected error code -2147467259.
            Verbose: [T3][14:28: 0. 97] ComponentInstaller.Install              End - returned NULL
            Error: [T3][14:28: 1.159] InstallController.InstallComponents     Error: Microsoft.SqlServer.SqlExpressWrapper.Controller.InstallException was thrown: Installation failed with exit code -2147467259.
    Source: SqlExpressWrapper
     Stack:   at Microsoft.SqlServer.SqlExpressWrapper.Controller.ComponentInstaller.Install()
       at Microsoft.SqlServer.SqlExpressWrapper.Controller.InstallController.InstallComponents()
    INNER EXCEPTION:
    <NONE>
            Verbose: [T3][14:28: 1.159] Wizard.controller_Error                 Start - sender=Microsoft.SqlServer.SqlExpressWrapper.Controller.InstallController; e=Microsoft.SqlServer.SqlExpressWrapper.Controller.ErrorEventArgs
                Verbose: [T1][14:28: 1.159] Wizard.controller_Error                 Start - sender=Microsoft.SqlServer.SqlExpressWrapper.Controller.InstallController; e=Microsoft.SqlServer.SqlExpressWrapper.Controller.ErrorEventArgs
        Verbose: [T1][14:28: 1.190] ErrorDialog.Window_Loaded               Start - sender=Microsoft.SqlServer.SqlExpressWrapper.UI.ErrorDialog; e=System.Windows.RoutedEventArgs
        Verbose: [T1][14:28: 1.190] ErrorDialog.Window_Loaded               End
        Verbose: [T1][14:28: 3.688] InstallController.ViewLogCommand_ExecutedStart - sender=Microsoft.SqlServer.SqlExpressWrapper.UI.ErrorDialog; e=System.Windows.Input.ExecutedRoutedEventArgs
        Verbose: [T1][14:28: 3.688] InstallController.ViewLogCommand_ExecutedEnd
        Verbose: [T1][14:30:18.832] InstallController.ViewLogCommand_ExecutedStart - sender=Microsoft.SqlServer.SqlExpressWrapper.UI.ErrorDialog; e=System.Windows.Input.ExecutedRoutedEventArgs
        Verbose: [T1][14:30:18.847] InstallController.ViewLogCommand_ExecutedEnd

    Ok I found the log file. I used Process Monitor to trace setup.exe and it created SQLSetup.log in %userprofile%\appdata\local\temp\SqlSetup.log.
    these are the lines which seem to be causing the error. Any idea of how I fix this ?
    11/13/2008 09:40:44.273 Checking to see if policy file exists
    11/13/2008 09:40:44.286 .Net security policy file does exist
    11/13/2008 09:40:44.304 Attempting to load .Net security policy file
    11/13/2008 09:40:44.318 Error: Cannot load .Net security policy file
    Naim
    here is the full log file:
    11/13/2008 09:40:43.853 ======================================================================
    11/13/2008 09:40:43.872 Setup launched
    11/13/2008 09:40:43.884 Attempting to determine media source
    11/13/2008 09:40:43.895 Media source value not specified on command line argument.
    11/13/2008 09:40:43.914 Setup is launched from media directly so default the value to the current folder.
    11/13/2008 09:40:43.973 Media source: C:\temp\SqlExpress\
    11/13/2008 09:40:43.985 Attempt to determine media layout based on file 'C:\temp\SqlExpress\mediainfo.xml'.
    11/13/2008 09:40:44.020 Media layout is detected as: Core
    11/13/2008 09:40:44.033 Media LCID is detected as: 1033
    11/13/2008 09:40:44.052 Local setup.exe not found, so continuing to run setup.exe from media.
    11/13/2008 09:40:44.063 /? or /HELP or /ACTION=HELP specified: false
    11/13/2008 09:40:44.075 Help display: false
    11/13/2008 09:40:44.088 Checking to see if we need to install .Net version 2.0
    11/13/2008 09:40:44.099 Determining the cluster status of the local machine.
    11/13/2008 09:40:44.132 The local machine is not configured as a cluster node.
    11/13/2008 09:40:44.154 Attempting to find media for .Net version 2.0
    11/13/2008 09:40:44.166 .Net version 2.0 is installed
    11/13/2008 09:40:44.178 RedistMSI::GetExpectedBuildRevision - Setup expects MSI 4.5.6001.22159 at the minimum
    11/13/2008 09:40:44.189 Attempting to get Windows Installer version
    11/13/2008 09:40:44.206 Windows Installer version detected: 4.5.6001.22162
    11/13/2008 09:40:44.225 RedistMSI::IsVistaRTM - Not Vista RTM build
    11/13/2008 09:40:44.237 Required version of Windows Installer is already installed
    11/13/2008 09:40:44.249 Attempt to initialize SQL setup code group
    11/13/2008 09:40:44.262 Attempting to determine security.config file path
    11/13/2008 09:40:44.273 Checking to see if policy file exists
    11/13/2008 09:40:44.286 .Net security policy file does exist
    11/13/2008 09:40:44.304 Attempting to load .Net security policy file
    11/13/2008 09:40:44.318 Error: Cannot load .Net security policy file
    11/13/2008 09:40:44.341 Error: InitializeSqlSetupCodeGroupCore(32bit) failed
    11/13/2008 09:40:44.357 Error: InitializeSqlSetupCodeGroup failed: 0x80004005
    11/13/2008 09:40:44.375 Setup closed with exit code: 0x80004005
    11/13/2008 09:40:44.399 ======================================================================

  • SQL Server Express 2012 Login Error

    I’m trying to access sql database from another PC on the LAN and I’m getting this error message “Login failed for user ‘Officeo1\Guest’. I’m using SQL Server Express 2012 and on the other PC I’m trying to connect with MS Visual Studio 2013. I’m adding a
    data connection with the data source set to Microsoft SQL Server (sqlClient), server name OFFICE01\SQLEXPRESS using windows authentication. I can see the server in the dropdown box but I cannot see any databases in the database name dropdown box.
    why767

    These computers are not on a domain but on the same workgroup. This is the error I get when I try to connect from MS SQL Server 2014 Import and Export
    ==================================
    Could not retrieve table list. (SQL Server Import and Export Wizard)
    ===================================
    Login failed for user 'OFFICE01\Guest'.
    Cannot open user default database. Login failed. (Microsoft SQL Server Native Client 11.0)
    Program Location:
       at System.Data.OleDb.OleDbConnectionInternal..ctor(OleDbConnectionString constr, OleDbConnection connection)
       at System.Data.OleDb.OleDbConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningObject)
       at System.Data.ProviderBase.DbConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
       at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionInternal.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
       at System.Data.OleDb.OleDbConnection.Open()
       at Microsoft.SqlServer.Dts.DtsWizard.SQLServerForm.LoadDatabasesList()
    why767

  • SQL Server Express 2008 Installation error. PLEASE HELP.

    Hey guys anyone know what I should do to install SQL Server Express 2008?
    Im running Vista Home Premium SP1 32bit
    These are folders i got on framework folder:
        *      v3.5
        *      v3.0
        *      v2.0.50727
        *      v1.1.4322
        *      v1.0.3705
    Installing SQL Server 2008 Express (run time only)
    And this is the error I get during the process
    "Attributes do not match. Present Attributes (Directory, Compressed), included attributes (0), excluded attributes (Archive, Compressed, Encrypted)."
    I have downloaded and installed all Visual Studio 2008 SP1 Express Ed (C++, C#, VB, WebDev) and all worked well
    I get this error during the "Feature Selection" setup process.
    I also noticed when I tried to use Windows Update, I saw Microsoft SQL Server 2008 Service Pack 1 (KB968369) suddenly available (I have updated windows and installed all important updates before installing Microsoft Visual Studio and SQL). Then I used Windows Update to install SQL Server 2008 SP1 and I still got this error:
    Error
    Code 84B40000 Unknown error....
    I also get this downloading error on SQL Server while installing all 4 Visual Studio Express Editions (C#, C++, VB, WebDev).
    "The following cannot be downloaded:"
    I've already tried the troubleshooting guide about BITS but the tool fix seems to only supports Windows XP Operating Systems.
    Please please please Help Me (^_^).. thanks to all.
    P.S.
    I think this might have some connections to why I get errors on a simple 'Hello World' Website.
    I was just trying to simply make a 'Hello World' Website .. Just THAT on my website.
    A simple Website for me to start. Just showing those text on the website. But when I tried to run (debug) the program. This error shows...
    'Firefox can't establish a connection to the server at localhost:5903.'
    I have Build the Web Site and there was no error. Since it was just simply 'Hello World' text.
    Im sure there's some problem but I'm completely stuck here.  I dunno if its connected to the problem above.
    Please help me solve this problem. Thank you so much.
    I appreciate everyone's help.

    In my case I had to uncheck "Allow files in this folder to have contents indexed in addition to file properties"
    Right click on C:\Program Files\Microsoft SQL Server
    Click Advanced on General Tab
    Uncheck "Allow files in this folder to have contents indexed in addition to file properties"

  • SQL Express 2008 R2 Error:15209 - An error occurred during encryption

    I am trying to install SQL Server Express 2008 R2 but it keeps failing .
    The computer is Windows 7 x64, all the latest service packs and updates installed. 
    The application is by Greatland, called Yearli (formerly called WinFiler). 
    Last year’s WinFiler, which was installed on this PC, used SQL 2008 Express (x86). 
    This year’s version is using R2 and attempted to install a new database. 
    I have since uninstalled last year’s database.
    When I run the Yearli install, it first attempts to install SQL Express 2008 R2, but the install fails with this error at the end of ERRORLOG:
    Error: 15209, Severity: 16, State: 1. "An error occurred during encryption."
    I have been researching this for days.  What I have done so far, based on MSKB and other user posts, is the following:
    Changed the account for the SQL service from Local System to NETWORK SERVICE. 
    Add NETWORK SERVICE to the “Protect” folder with Full permission added.
    Neither of these have worked.  SQL appears to be installed, but the service will not start.
    In the Windows System log I get this message:
    The SQL Server (WFP_SS8E) service terminated with service-specific error The specified resource name cannot be found in the image file..
    In the Windows Application log I get this message:
    FileMgr::StartLogFiles: Operating system error 2(The system cannot find the file specified.) occurred while creating or opening file 'e:\sql10_main_t.obj.x86fre\sql\mkmastr\databases\objfre\i386\MSDBLog.ldf'. Diagnose and correct the operating system error,
    and retry the operation.
    The App log error is interesting because there is no E: drive on the system.
    SFC /Scannow came up clean.
    I don’t have any other ideas, so if anyone else does, I’d appreciate it.

    SQL appears to be installed, but the service will not start.
    In the Windows System log I get this message:
    The SQL Server (WFP_SS8E) service terminated with service-specific error The specified resource name cannot be found in the image file..
    In the Windows Application log I get this message:
    FileMgr::StartLogFiles: Operating system error 2(The system cannot find the file specified.) occurred while creating or opening file 'e:\sql10_main_t.obj.x86fre\sql\mkmastr\databases\objfre\i386\MSDBLog.ldf'. Diagnose and correct the operating system error,
    and retry the operation.
    Hi dfosbenner,
    According to your description, SQL Server fails to start and you get the error message (Operating system error 2……) in Windows Application log. To work around this issue, you might have to change the path of the files by running the following scripts from
    the command prompt. The example is to put MSDB files in C drive, you can change the path of the files to other drives.
    NET START MSSQL$SQLEXPRESS /f /T3608
    SQLCMD -S .\SQLEXPRESS
    ALTER DATABASE msdb MODIFY FILE ( NAME = MSDBData, FILENAME = 'C:\MSDBData.mdf');
    ALTER DATABASE msdb MODIFY FILE ( NAME = MSDBLog, FILENAME = 'C:\MSDBLog.ldf');
    go
    exit;
    NET STOP MSSQL$SQLEXPRESS
    For more details, please review the following thread.
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/54bbcac3-41c5-4a5d-a4f6-2669e538dc82/sqlserver-2008-express-install-error?forum=sqlexpress
    Thanks,
    Lydia Zhang

  • Upgrade from 2005 express to 2008 r2 express - provisionsystemaccounts.sql error

    Hi,
    I’ve been upgrading several of my clients and ran into this problem for one of them.
    When doing the upgrade I got..
    Looking at the error logs indicated..
    2015-03-21 11:54:07.58 spid7s     
    Database 'master' is upgrading script 'provisionsystemaccounts.sql' from level 0 to level 2.
    2015-03-21 11:54:07.59 spid7s     
    2015-03-21 11:54:07.59 spid7s     
    Starting provisionsystemaccounts.sql ...
    2015-03-21 11:54:07.59 spid7s     
    2015-03-21 11:54:08.02 spid7s     
    Error: 15151, Severity: 16, State: 1.
    2015-03-21 11:54:08.02 spid7s     
    Cannot find the user 'FILESERVER01\SQLServer2005MSFTEUser$FILESERVER02$ORSQLEXP', because it does not exist or you do not have permission.
    2015-03-21 11:54:08.03 spid7s     
    Error: 912, Severity: 21, State: 2.
    2015-03-21 11:54:08.03 spid7s     
    Script level upgrade for database 'master' failed because upgrade step 'provisionsystemaccounts.sql' encountered error 15151, state 1, severity 16. This is a serious error condition which might interfere with regular operation and the database will be
    taken offline. If the error happened during upgrade of the 'master' database, it will prevent the entire SQL Server instance from starting. Examine the previous errorlog entries for errors, take the appropriate corrective actions and re-start the database
    so that the script upgrade steps run to completion.
    2015-03-21 11:54:08.03 spid7s     
    Error: 3417, Severity: 21, State: 3.
    2015-03-21 11:54:08.03 spid7s      Cannot recover the master database. SQL Server is unable to run. Restore master from a full backup, repair it, or rebuild it. For more information about how
    to rebuild the master database, see SQL Server Books Online.
    2015-03-21 11:54:08.03 spid7s   
      SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.Running the Repair from the Installation centre
     brings up the same error.
    I noticed that the instance appears to be upgraded but basically the service won’t run. I can start it but it just stops again.
    So I found this which seems the same as my problem..
    https://ilkirk.wordpress.com/2011/03/07/in-place-sql-upgrade-error-2005-to-2008/
    Even though I can start the SQL Services using point 1 from the link above I can’t connect to sql using DAC.
    The sqlcmd won’t work and trying to connect through SSMS.
    > SQLCMD –E –A. I’ve also tried >SQLCMD FILESERVER1\ORSQLEXP –E –A and get the same results
    HResult 0xFFFFFFFF, Level 16, State 1
    SQL Server Network Interfaces: An error occurred while obtaining the dedicated administrator connection (DAC) port.
    Make sure that SQL Browser is running, or check the error log for the port number [xFFFFFFFF].
    When I try to connect to DAC via SSMS I get ..
    So I seem to currently have 2 problems, one using sqlcmd/DAC and the other with provisionsystemaccounts.sql.
    The sqlbrowser is running but from 90 (not sure if that matters) and I have removed (following online research) the 80 and 90 binn settings from the PATH just leaving 100 but this hasn’t changed the errors.
    I’ve tried enabling DAC using this advice below but it hasn’t made any difference. The service keeps stopping and no SQLCMD action.
    http://www.mssqltips.com/sqlservertip/2538/enabling-dedicated-administrator-connection-in-sql-server-2008-express-edition/
    So after trying numerous options I currently stumped.

    An update to this. I can now DAC via sqlcmd.
    Following the advice on
    [url]https://ilkirk.wordpress.com/2011/03/07/in-place-sql-upgrade-error-2005-to-2008/[/url]
    I'm at point 3
    3.Issue a ‘create login’ command to create the user / group you’re missing, followed by the all important GO
    and I'm a bit unclear on what to do. The user according to the error log is 'FILESERVER01\SQLServer2005MSFTEUser$FILESERVER02$ORSQLEXP'
    and I tried
    >sp_addsrvrolemember 'FILESERVER01\SQLServer2005MSFTEUser$FILESERVER02$ORSQLEXP', 'sysadmin'
    >go
    adding this seemed to work without error but running the repair from the installation centre bought up the exact same error as before.
    So, bearing in mind using the advice from the above link
    Have I added the user to the correct group?
    If not how do I do that?
    In the advice he also mentions..
    Now – why did this happen?  Well, in my situation it seems to be related to the fact that I upgraded the default instance first which also upgraded the Full Text Engine.  That, in turn, removed the Full Text Engine user group from the local groups. 
    In particular, I was missing “<ServerName>\SQLServer2005MSFTEUser$<ServerName>$MSSQLSERVER”.  Note the fact that it mentions the default instance, not the named instance!
    The SQLServer2005MSFTEUser login refers to a local Windows group that is used for controlling access to the Full Text Engine.  I suspect that when I upgraded the default instance, the installer removed the group from Windows, but not necessarily
    from the named instance of SQL.  Once I recreated the group, granted my service account access to mirror the other similar groups, and added that login back into SQL via the DAC, everything went fine from there.
    thanks,

Maybe you are looking for

  • HELP ME... Video chat doesn't work!!!

    So my friend and I always used to be able video chat but now we have different wireless systems and we always get error: Date/Time: 2007-09-20 21:43:56.522 -0700 OS Version: 10.4.10 (Build 8R2232) Report Version: 4 iChat Connection Log: AVChat starte

  • Logic midi exporting problems (does not work with cubase)

    ok so there is an audio file i need converter to midi for something i'm working on someone with who uses cubase... so basically an audio file from cubase needs audio to midi. since cubase does not have this feature i imported the .aif file from the c

  • Why does A3 only show low rez unedited photos after DB restore.

    After restoring my Aperture 3 DB w/Time Machine, I only see VERY low resolution versions without the cropping and other adjustments applied.  Once I click on them, it loads the full version and applies the cropping, straightening and other adjustment

  • Adding dinamic fields into table control..

    hi friends, i wan to knw , is it possible to add fields dynamically in table control? actually the requirement is like, it is not fixed how many fields will be their in table control, it may change depending upon date. so if u knw, please help me out

  • Power PC G5... Will it work with 802.11n?

    I have a 20" iMac, 2.1 GHz Power PC G5, running OS 10.4.11. Can I connect with wifi on the "n" side of the extreme base station with this computer? I currently have the 802.11g side with the older extreme base station. But I'm thinking about getting