Viewing 15 posts - 1,051 through 1,065 (of 1,250 total)
Thanks for the replies but I think I've now got more questions than I had before. What's the best way of checking that clustering, mirroring and replication are set...
May 27, 2014 at 1:15 am
TomThomson (5/24/2014)
SQLRNNR (5/23/2014)
whereisSQL? (5/23/2014)
TomThomson (5/23/2014)
Revenant (5/23/2014)
Ed Wagner (5/23/2014)
SQLRNNR (5/23/2014)
Ed Wagner (5/23/2014)
crookj (5/23/2014)
Ed Wagner (5/23/2014)
BWFC (5/23/2014)
RingRule
Decree
Dictate
PotatoHead
Toy
Story
Board
Chalk
ongle
scratch
Fever
May 27, 2014 at 1:10 am
Steve Jones - SSC Editor (5/23/2014)
BWFC (5/23/2014)
May 23, 2014 at 1:36 pm
Ed Wagner (5/23/2014)
Koen Verbeeck (5/23/2014)
BWFC (5/23/2014)
May 23, 2014 at 5:42 am
Does anybody else feel a bit frustrated when there is no response from the OP after you post an answer to a question? I know that this is a...
May 23, 2014 at 2:09 am
Try this
create table #Parent
(
PKint primary key not null,
Descrvarchar(10) not null,
Reference_PKint null
)
insert into #Parent
select 1, 'Gautham',nullunion all
select 2, 'Harsha',nullunion all
select 3, 'Kamal',1union...
May 21, 2014 at 3:36 am
I came up against this recently and I was directed here[/url]. Don't be put off by the length of the article, the actual code it uses is very...
May 20, 2014 at 4:42 am
Borrowing heavily from Gail to give the results in the same column with a two digit year
DECLARE @dt DATETIME;
SET @dt = GETDATE();
SELECT DATENAME(month,@dt)+'-'+ right(YEAR(@dt),2)
May 16, 2014 at 6:38 am
Have look at this link . Down at the bottom there's a very simple way of extracting the image from the report.
May 14, 2014 at 8:44 am
Annoyingly, I've done something like this recently but I've a horrible feeling I had a copy of the logo from elsewhere that I edited and then added to SSRS. ...
May 14, 2014 at 8:13 am
Would it not be simpler to create a new image, edit it and then embed that? If you do it that way you can change it more quickly if...
May 14, 2014 at 8:01 am
Ed Wagner (5/13/2014)
Stuart Davies (5/13/2014)
crookj (5/12/2014)
Ed Wagner (5/12/2014)
Revenant (5/12/2014)
Ed Wagner (5/12/2014)
TomThomson (5/12/2014)
crookj (5/12/2014)
PlateGlass
Dinner
Roll
Butter
(Roll over) Beethoven
(Chuck) Berry
(Twist and) Shout
Yell
May 14, 2014 at 1:14 am
Viewing 15 posts - 1,051 through 1,065 (of 1,250 total)