Forum Replies Created

Viewing 13 posts - 16 through 28 (of 28 total)

  • RE: Print Procedure Parameter

    have u tried using the

    SELECT @TABLEHTML

    Replace the mail code withe the above statement and try executing the procedure

    and check what u get

  • RE: how to configure Sql Server Reporting Services

    In Reporting Services Configuration Manager - set the web service identity and windows service identity. Then the service has access permission to all the folders.

  • RE: PRINT vagaries

    Excellent question and great to know the deal

  • RE: Sql Doubt - 1

    START PROGRAMMING.....

  • RE: SQL sub query?

    You can also use the following query....

    select PostCode, count(*) as NumOfRecords,

    count(flag) as NumOfFlag

    from Demo

    group by PostCode

  • RE: Is NULL vs = NULL

    Although the topic is not relevant to the description and question that is being raised...

    IS NULL if used against the variable will check

    1. Whether the variable is assigned to any...

  • RE: insert into temp table

    Very nice question.

    Basic and something good to learn

  • RE: Report Locations

    You need the report files with .rdl extension in order to edit the report in BIDS (which will provide better UI enabled editing)....

  • RE: Help in writing this query

    I am really not sure what is required...

    Assuming that you are searching for the rows that do not have transations in year 2010, you can try the following one

    SELECT ...

  • RE: How many Records Will Get Selected

    I didnot like the question...

    Nothing to learn as the syntax err is quite obviously seen...

    Thought as a typo and gone with the wrong option...

    IT DOESNT SEEMS TO BE TRICKY AT...

  • RE: Stored Procedure Execution

    Very Nice question

    I am not sure but the query is returning me 5....

    I dont have the AdventureWorks db on the server...

    Tried using the test database with dbo schema.... may be...

  • RE: Grouping - SQL

    Try this one out!!!!

    Assuming the table name is temp

    select isnull(a.continent,''),isnull(a.country,''),city

    from (select continent,country,min(city) as city1 from temp group by continent,country) as a

    right outer join

    temp on a.city1 = temp.city

    Hope this can be...

  • RE: Query help

    Hi,

    I am not sure about the best way it can be done, or the way you had tried this .

    You can use the following query to get the required stats:

    select...

Viewing 13 posts - 16 through 28 (of 28 total)