Viewing 13 posts - 16 through 28 (of 28 total)
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
July 2, 2010 at 6:18 am
In Reporting Services Configuration Manager - set the web service identity and windows service identity. Then the service has access permission to all the folders.
June 30, 2010 at 5:57 am
You can also use the following query....
select PostCode, count(*) as NumOfRecords,
count(flag) as NumOfFlag
from Demo
group by PostCode
June 23, 2010 at 6:48 am
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...
June 22, 2010 at 5:39 am
Very nice question.
Basic and something good to learn
June 18, 2010 at 6:44 am
You need the report files with .rdl extension in order to edit the report in BIDS (which will provide better UI enabled editing)....
June 17, 2010 at 5:33 am
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 ...
June 16, 2010 at 5:40 am
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...
June 15, 2010 at 7:14 am
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...
June 9, 2010 at 2:27 am
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...
May 13, 2010 at 7:00 am
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...
June 11, 2009 at 5:29 am
Viewing 13 posts - 16 through 28 (of 28 total)