Viewing 15 posts - 1 through 15 (of 53 total)
can I get any help on this from the experts in this room ?
September 6, 2017 at 2:01 pm
Thanks.
I am using select columns (not *) and using sql command.
I tried to load data in raw file to see if its works fine. the load into raw...
August 28, 2017 at 7:57 am
The expression is mentioned the first post but I will update that to below:
I am using =Format(Fields!field1.Value,"#,#,,") as custom numeric formating where field1 comes from dataset.
Almost all...
March 9, 2017 at 10:16 am
the values are coming from a dataset(stored procedure).Not showing up means the cell is blank for some values(although the value is present in database table).
I read one link warning...
March 9, 2017 at 9:54 am
;with mycte as (
select * ,lag(sales,1)Over(Partition by countryid Order by stateid DESC) salesLag
, row_number() Over(Partition by countryid Order by stateid DESC) rn from countrydetails )
select * from mycte where rn=2
I...
September 30, 2015 at 1:11 pm
Correct XML:
DECLARE @myDoc xml
SET @myDoc = '<Root>
<ProductDescription Productname="A" Productd="Road Bike">
<Features Productname="B">
<Warranty Productname="C">1 year parts and labor</Warranty>
<Warranty Productname="D">1 year parts and...
June 30, 2015 at 12:13 am
June 29, 2015 at 11:33 pm
Thanks Eirikur.
I am looking for an output with resultset for value column as :
B/C/
B/D/E
I found one way with below query but this is...
June 29, 2015 at 11:32 pm
Viewing 15 posts - 1 through 15 (of 53 total)