Viewing 15 posts - 691 through 705 (of 1,193 total)
I used to get this a lot - same work around - close SSMS & reopen.
Patching SSMS to SP1 or 2 seemed to have stopped it happening.
November 19, 2012 at 5:00 am
Assuming you mean DataSet - double-click the dataset name, on the dialog box that pops up there's radio buttons for Text/Table/Stored Procedure.
November 19, 2012 at 4:52 am
No problem, good to hear it's working.
November 19, 2012 at 4:30 am
I'd go with nested REPLACEs. It's not going to look nice but I don't think there's a better way.
Perhaps wrap it in a Function if you need to reuse or...
November 16, 2012 at 7:01 am
I've never had any problem in a script when using SINGLE_USER, followed by another command against that database.
You could move the script around so the drop and restore are done...
November 16, 2012 at 6:56 am
Sorry, not quite sure what you're describing there.
Is the Date parameter a multi-valued parameter in the target report?
November 16, 2012 at 6:48 am
I suspect the expression's not generating the date in the right format - you might need to play with that a bit to get it working in date datatype.
November 16, 2012 at 3:25 am
Hi Debora,
Sounds like something's (RS URL?) missing in the Sharepoint RS config on the Central Admin Server - although I really am guessing in the dark now 🙂
There's some setup...
November 16, 2012 at 3:21 am
If I read it right, you're executing dynamic SQL (hence the @sql variable)?
Your temp table will be out of scope from within that execution - hence the error you're getting....
November 15, 2012 at 8:50 am
Is this any help? I assume you're generating the URL through an expression. Not sure on what format the date would be expected in though.
http://msdn.microsoft.com/en-us/library/ms155391(v=sql.105).aspx
(I'm also assuming that Jump to...
November 15, 2012 at 8:46 am
Hi Debora,
Not sure (as I don't use Sharepoint integration), but I think the RS Add-In needs to be installed on the Central Admin Server before it will appear on the...
November 15, 2012 at 6:11 am
Does this work?
= DATEADD("mm", DATEDIFF("mm", 0,Parameters!date.Value)-3, 0)
November 15, 2012 at 6:05 am
waxingsatirical (11/14/2012)
The code I've posted is just some sample code to replicate the problem. When this happened in real life the persisted column was not just a repeat of...
November 15, 2012 at 3:39 am
I think SQL optimiser is second-guessing you because your computed column is equal to the 'real' one.
See if you get the behaviour you expect when the column is defined as:...
November 14, 2012 at 10:43 am
Viewing 15 posts - 691 through 705 (of 1,193 total)