Viewing 15 posts - 106 through 120 (of 221 total)
Hi,
I haven't used PIVOT because this can be solved with a CASE statement.
DECLARE @table TABLE
(
[Key] VARCHAR(50),
Value VARCHAR(50)
)
INSERT INTO @table
SELECT 'firstname', 'surya'
UNION ALL SELECT 'firstname', 'rakhi'
UNION ALL SELECT 'firstname', 'venkat'
UNION ALL...
April 17, 2013 at 3:38 am
April 15, 2013 at 8:07 am
Hi,
I do this in my index rebuild job by having a variable that stores the start time of the job. Then a while loop that runs through my indexes, but...
March 28, 2013 at 9:07 am
To my knowledge you won't be able to do that using SSRS. You may be able to do it with a macro or some VB script though.
March 18, 2013 at 3:14 am
Great thanks for your help. That was the option i was leaning towards.
March 5, 2013 at 2:04 am
What does SELECT COUNT(*) FROM [msdb].dbo.[sysjobhistory] s
return?
February 20, 2013 at 4:19 am
Hi,
If you have lots of jobs that run on that server you may need to update the history retention. If you right-click the sql agent and then go to History...
February 20, 2013 at 4:00 am
It's not huge, just inconvenient. I found out about the limitation of totalling and sets in Excel the other week. Frustrating to say the least.
Oh well, thanks for all your...
February 19, 2013 at 4:40 am
Hi,
I'm sort of with you. It might help if I give a bit more context to what i'm doing....
I'm creating a cube to duplicate a pro clarity solution. Essentially i'm...
February 18, 2013 at 10:30 am
Hi,
Thanks for your reply.
So, in SSDT (Bids for 2012) on my calculations tab I don't want a named set to achieve what i'm after?
Sorry if my question seems dim, but...
February 18, 2013 at 9:30 am
Hi,
I've handled Nulls in SSRS reports coming out of SSAS with this sort of expression.
=Iif(IsNothing(Fields!ANYFIELD.Value),"The Field Is Null",Fields!ANYFIELD.Value)
Found here:
http://www.mredkj.com/vbnet/RSNullCheck.html
Hope that helps.
Simon
February 5, 2013 at 2:42 am
Viewing 15 posts - 106 through 120 (of 221 total)