Forum Replies Created

Viewing 13 posts - 16 through 29 (of 29 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

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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.

    Prashant Bhatt
    Sr Engineer - Application Programming

  • RE: PRINT vagaries

    Excellent question and great to know the deal

    Prashant Bhatt
    Sr Engineer - Application Programming

  • RE: Sql Doubt - 1

    START PROGRAMMING.....

    Prashant Bhatt
    Sr Engineer - Application 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

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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...

    Prashant Bhatt
    Sr Engineer - Application Programming

  • RE: insert into temp table

    Very nice question.

    Basic and something good to learn

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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)....

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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 ...

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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...

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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...

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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...

    Prashant Bhatt
    Sr Engineer - Application Programming

  • 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...

    Prashant Bhatt
    Sr Engineer - Application Programming

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