Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Issue installing SQL Server 2005

    LTDEL9C9H5R1 : The current system does not meet the minimum hardware requirements for this SQL Server release. For system requirements, see Hardware and Software Requirements, in the readme file or...

  • RE: Selecting records based on count

    did you try something as

    declare @region_assoc_prod int

    set @region_assoc_prod = (select count(sa_status) from products)

    select product, region, status

    from products prd

    inner join pd_status S on s.product_status_key=prd.status_key

    where prd..product_status in ('active', 'on...

Viewing 2 posts - 1 through 2 (of 2 total)