Viewing 15 posts - 1 through 15 (of 289 total)
You have got a lot of problems here chief. I'm guessing you've copied some VBA code but that wont work the same.
December 3, 2020 at 10:29 am
The subscription configuration, including email addresses, are encoded as XML so your ampersand will be encoded to
&
You can see this in the ReportServer.dbo.Subscriptions table ExtensionSettings column. I...
November 26, 2020 at 11:40 pm
The function you've provided doesn't do what you've described tbh. If you want to do as described I'd suggest using the ImportExcel module as it has all this functionality built...
November 26, 2020 at 1:03 pm
Me three. Having a revision history is pointless if you don’t have the history of previous versions to diff against. All you know is something changed and you can’t reliably...
February 11, 2020 at 7:04 pm
Analysis Services returns it's values as text even if it's a number. You usually wont notice as it gets implicitly converted during most operations - however not in a...
December 9, 2016 at 2:57 am
Sure. So if you can do what I said above (apologies if the edit was after you started your post) then you would call the function in your stored...
October 18, 2016 at 7:03 am
For multi-valued parameters SSRS will pass a comma-delimited string to a stored procedure.
Could you elaborate a bit, are you trying to split the parameter in the stored procedure by a...
October 18, 2016 at 6:35 am
--DROP TABLE #tblStructure;
--DROP TABLE #tblItems;
CREATE TABLE #tblStructure (
VCode INT, [Name] VARCHAR(255)
)
CREATE TABLE #tblItems (
VCode INT, [Name] VARCHAR(255), StuctureVCode INT
)
INSERT INTO #tblStructure
( VCode,...
October 18, 2016 at 5:12 am
MMartin1 (9/29/2016)
(DT_DATE)((DT_WSTR, 4) year(getdate())+"-"+ REPLICATE( "0", 2-LEN((DT_WSTR, 2)(month(getdate())+1) )) + (DT_WSTR, 2)( month(getdate())+1) +"-01")
EDIT : This will give you the...
September 29, 2016 at 3:57 pm
Size and position cannot be set by expressions or custom code and even so you'd have to have chosen portrait or landscape at design time so the report will still...
September 28, 2016 at 5:47 am
The expression can be used as a Variable's expression, however Ken's solution kind of makes it a moot point now. 🙂
September 28, 2016 at 2:26 am
The code I posted is a SSIS expression so it can be used in the derived column transform.
September 27, 2016 at 8:41 am
Hi Kazmerelda,
The approach I usually take for things like this is to adjust the dates rather then try to parse strings.
DATEADD("MONTH",DATEDIFF("MONTH",(DT_DATE)"1900-01-01",GETDATE()) + 1,(DT_DATE)"1900-01-01")
We get the number of months between the...
September 27, 2016 at 7:57 am
Probably the easiest way to do what you are trying is to just pass the string to a derived column transform and try to cast it e.g. (DT_DATE)PolicyStartDate. If...
September 27, 2016 at 3:19 am
Slightly puzzled here - you are using date functions on PolicyStartDate in your expression. Are you importing the column as a DT_DATE already?
Also are you planning on writing...
September 27, 2016 at 2:46 am
Viewing 15 posts - 1 through 15 (of 289 total)