Viewing 15 posts - 601 through 615 (of 1,193 total)
Do you need to retain changes made on the test system? Or just have a copy of live data to work on?
January 26, 2013 at 4:30 am
Open your browser as administrator - should allow you in & then you can set up relevant security (Site Settings if I recall correctly).
January 26, 2013 at 4:20 am
Only way I'd know is to estimate your average BLOB size.
Or for safety, find the maximum likely size and use that.
(Sorry if they're obvious suggestions).
January 25, 2013 at 9:32 am
Temp tables are fine in SSRS text type reports - that error just comes up in the visual query designer mode.
The SQL should execute with no problems.
January 25, 2013 at 9:15 am
Sorry if my terminology isn't clear - when I say SSRS I mean Report Manager 🙂
They're the same to my mind.
It needs databases to store info, but they can go...
January 24, 2013 at 4:44 pm
If you've got 2 or more Report Manager instances pointing at the same RS databases, yes that's scale out. Wasn't sure if you already had RS installed or not on...
January 24, 2013 at 4:27 pm
No need for scale out here as far as I can see.
Just install SQL database engine but not SSRS on the first machine, and SSRS on the other. The RS...
January 24, 2013 at 4:12 pm
Stuart Davies (1/24/2013)
Got it right as I thought that "either" was the most probable answer.Like most people are saying here I think the real answer is "it depends".
"It depends" was...
January 24, 2013 at 3:44 am
ChrisM@Work (1/23/2013)
DECLARE @YEAR INT, @MONTH INT
SELECT @YEAR = 2005, @MONTH = 6
DECLARE @StartDate DATETIME, @EndDate...
January 23, 2013 at 6:51 am
dwain.c (1/23/2013)
Gazareth (1/23/2013)
dwain.c (1/22/2013)
So I went back and modified the code to...
January 23, 2013 at 5:31 am
lestatf4 (1/23/2013)
Surely the column order in the query is irrelevant to the optimizer?
create view...
January 23, 2013 at 5:27 am
Are all the columns included in the where clause of the query? Could be that the order of columns in the index means the optimiser is disregarding it.
If you could...
January 23, 2013 at 4:10 am
I think the database owner is an invalid login - check in sys.databases.
If so, you can change it using ALTER AUTHORIZATION.
January 23, 2013 at 3:43 am
dwain.c (1/22/2013)
So I went back and modified the code to show you...
January 23, 2013 at 3:36 am
What's wrong with using ESCAPE?
You're along the right lines with the last approach - try using CHARINDEX instead though:
SELECT CHARINDEX('[[% SQL Server %]]', @string)
January 23, 2013 at 2:53 am
Viewing 15 posts - 601 through 615 (of 1,193 total)