Viewing 15 posts - 91 through 105 (of 223 total)
usharani.t (5/3/2011)
Am not able to modify SP...
So obviously, you have to do it at the report side.
the count values for alll months is displayed in any one month....
Even after many...
May 4, 2011 at 1:42 am
http://www.sqlservercentral.com/articles/SQL+Server+2008/67787/
It's fairly well explained, with examples. Check it out.
- arjun
May 3, 2011 at 11:30 pm
usharani.t (5/3/2011)
i want to write expression in rdlc for this.. give any suggestions
Huh? Please check what you said. Do you want to do this (finding count of modalityID based on...
May 3, 2011 at 11:28 pm
usharani.t (5/3/2011)
based on the month in scheduleDate, i want to count modalityID is it possible
i want to write expression in rdlc for this.. give...
May 3, 2011 at 6:30 am
ricer (5/2/2011)
Craig Farrell (5/2/2011)
Basically you're saying make sure my ID exists when...
May 2, 2011 at 12:50 pm
Thanks Craig. That's very helpful.
- arjun
May 2, 2011 at 11:41 am
Ok, thanks buddy. I do not understand what you mean by the tree structure in this context though.
I guess this was just a theoretical question from my boss. I was...
May 2, 2011 at 4:02 am
No, even if it was related to a hierarchy, the FK will be on a different column.
Typically, something like this (just the column names for simplicity)
EmployeeID smallint --PK
--
--
--
SupervisorID smallint --FK...
May 2, 2011 at 3:42 am
To make text appear as quoted, enclose the text in '
' beginning tag and end tag.
Alternatively, select the text in the editor and click on quote IFCode shorcut. The selected...
March 11, 2011 at 2:09 am
Thanks Todd and Gianluca. I wanted the OP to know his options. Yes, ITVF, when it does the job, is the best option.
- arjun
March 9, 2011 at 8:41 pm
dilipd006 (3/9/2011)
The date in the two fields are different, I want to insert the Date column along with all other entries into the temporary table #temp .I...
March 9, 2011 at 8:05 am
Shaikh, check this out. I added parentheses.
create PROC [dbo].[PTH_Overall_SecUpdate_Byfurcation_DPMA_PR1]
(@OUTXML xml output)
as
begin
set @OUTXML=
(
SELECT
M.CR ,
ISNULL([Critical],0) [Critical],
ISNULL([Low],0)[Low] ,
ISNULL([Moderate],0)[Moderate] ,
ISNULL([Important],0)[Important] ,
([Critical]+[Low]+[Moderate]+[Important])as totalpatch
FROM p1 M WITH(NOLOCK)
for xml auto,root('R')
)
end
- arjun
March 9, 2011 at 7:21 am
tfifield (3/4/2011)
Please be advised that while this type of scalar UDF (accessing a table based on parameters) has its place in some applications, it can lead to very bad performance...
March 9, 2011 at 7:15 am
It is more appropriate to use
select
c.query('.')
from
@var.nodes('//DaddyRoot/root') as tab(c)
as this looks precisely for 'root' child nodes of 'DaddyRoot'.
Reading this will help you - http://msdn.microsoft.com/en-us/library/ms188282.aspx
- arjun
March 9, 2011 at 12:36 am
Viewing 15 posts - 91 through 105 (of 223 total)