Viewing 15 posts - 106 through 120 (of 242 total)
Hi
You can use following expression:
=Format(CDate(Fields!FieldName.Value),"MMM - yyyy")
or
=Format(CDate(Fields!FieldName.Value),"MMMM - yyyy")
July 18, 2008 at 8:00 am
p.nagaravikumar (7/18/2008)
Hi,Please see the attachment
July 18, 2008 at 7:56 am
You can use the wildcard pattern matching characters as literal characters. To use a wildcard character as a literal character, enclose the wildcard character in brackets. Seefollowing examples of...
July 18, 2008 at 1:40 am
Which components of SQL Server 2008 can the Resource Governor operate on? (select all that apply)
But there are radio button to select the answer. Then what does it mean by...
July 18, 2008 at 1:31 am
Ohh sorry! Mike already posted it.
Thats true.
July 18, 2008 at 1:15 am
Hi Shiwani,
Try this
SELECT * From
(
SELECT '123//4' [Value] UNION
SELECT '143' UNION
SELECT '2343' UNION
SELECT '12.34' UNION
SELECT '23*5' UNION
SELECT '23a34' UNION
SELECT '456=' UNION
SELECT '345//4' UNION
SELECT '3434//4/5'
) AS Temp
WHERE [Value] LIKE '%[^0-9/]%'
July 18, 2008 at 1:14 am
Hi Fayez,
Are you passing the parameter to drill report?
You need to pass the field value where you want to click.
e.g. in navigation window YourParameter = Fields!Region.Value
And one more thing, there...
July 17, 2008 at 11:55 pm
Yeah James.
I just copied that line from earlier post and didnt changed it.
But you are right.
July 17, 2008 at 10:55 pm
Hi friends,
I got solution myself by writing script.
July 17, 2008 at 7:02 am
The Best way to use COALESCE function because its very fast compare to other techniques.
select @Numbers = 0, @Strings = ''
SELECT @Numbers = COALESCE(@Numbers,'')+iNumber,
@Strings = COALESCE(@Strings+',','')+sNumber
FROM @demo
July 17, 2008 at 6:27 am
No need to write a counter.
Suppose Your tables look like this:
CREATE TABLE TableA (ID int, Name VARCHAR(30)) --Source
INSERT INTO TableA SELECT 1,'james' union Select 15,'vinay' union select 5,'john'
CREATE TABLE TableB...
July 17, 2008 at 4:20 am
Hi Venkatesan,
Just check the Keep Identity check box of Destination and try again.
July 17, 2008 at 3:55 am
I think NO.
But you can create a parameter which has two values {True, False}
July 16, 2008 at 7:46 am
Viewing 15 posts - 106 through 120 (of 242 total)