Viewing 15 posts - 91 through 105 (of 134 total)
Hugo Kornelis (10/28/2010)
deepak.a (10/27/2010)
For the above you can write...
October 28, 2010 at 1:28 am
thanks for the Nice Question 🙂
To get the records with NULL value the WHERE condition needs to rewrite as WHERE NullableColumn <> '1' OR NullableColumn IS NULL.
For the above you...
October 27, 2010 at 11:12 pm
Jay_Noob (10/19/2010)
If you absolutely had to produce an error message, you could set a hidden boolean parameter (e.g. HIDE)...
October 19, 2010 at 10:56 pm
Daniel Bowlin (10/19/2010)
October 19, 2010 at 10:53 pm
Hi Daniel thanks for your reply can you please tel me how to set the cascade option im using SSRS 2008
October 18, 2010 at 7:16 am
Try the Below Code
SELECT
CASE WHEN EXISTS(SELECT 1 FROM secondtable S WHERE S.col1 = S1.col2 ) THEN '*' ELSE '' END + CONVERT(VARCHAR,Col1) AS Col1,Col2
FROM firsttable S1
October 18, 2010 at 4:00 am
Hugo Kornelis (10/15/2010)
deepak.a (10/15/2010)
Hugo Kornelis (10/15/2010)
deepak.a (10/15/2010)
(...)
in the above Quesries second one (Query 2) thrown on error while creating the index...
October 15, 2010 at 6:32 am
Hugo Kornelis (10/15/2010)
deepak.a (10/15/2010)
(...)
in the above Quesries second one (Query 2) thrown on error while creating the index on computed column...
October 15, 2010 at 5:50 am
Hugo Kornelis (10/15/2010)
henrik staun poulsen (10/15/2010)
<<If you want to index a computed column, you must persist it.
Are you sure?
I've just added a computed column to one of our big tables...
October 15, 2010 at 3:48 am
Hugo Kornelis (10/15/2010)
tilew-948340 (10/14/2010)
Hardy21 (10/13/2010)
If computed columns are persisted in nature (e.g. QTot AS QF1 + QF2 PERSISTED,) then you receive the error after "Insert Zeroes" print statement and...
October 15, 2010 at 12:56 am
Thanks For the Good Question Tom Brown i learnt some thing new today and also i tried to create index on the computed columns it will not alllow to create...
October 13, 2010 at 10:56 pm
Viewing 15 posts - 91 through 105 (of 134 total)