Viewing 15 posts - 1 through 15 (of 31 total)
bumpity bump. bump.
October 2, 2017 at 5:29 pm
Sorry I was unclear, I meant that was the interface I was using. Yes, it is checked to run 32-bit Runtime.
September 5, 2017 at 10:08 am
The latter, right-clicking the package where it resides in the Integration Services Catalogs\SSISDB in Object Explorer. The above screenshot is exactly what I'm using. No point in setting up an...
September 1, 2017 at 2:42 pm
Thank you Sue. The Compatibility level for the SSISDB on the server running the package is 130. Compatibility level of the destination database (on another server) is 100. The latter...
August 31, 2017 at 4:17 pm
I'm not sure what you mean by "Is your database not on the 2016 compatibility level?" The database is SQL Server 2016, the package is built for TargetServerVersion SQL Server...
August 31, 2017 at 11:02 am
Lowell,
I've tried both option available to me, same result. No Bueno.
March 21, 2016 at 4:51 pm
The implicit CAST was The Ugly. I changed my #temp structures to use VARCHAR() rather than NVARCHAR() and voila, things started moving along. While performance isn't down into...
March 18, 2016 at 11:40 am
If you're already bringing back 12 datasets, then this will add minimal overhead, even if you do it 12 times. With the exception of string manipulation, almost anything you...
November 9, 2014 at 11:40 am
Try using a SWITCH rather than an IIF. That will eliminate any simple divide/0 errors from the IIF behavior.
Actually, it looks like you've got no NULL handling in your...
November 6, 2014 at 3:49 pm
gajayku (11/4/2014)
I have a stored procedure which generates data from some X table(this table is an input to the stored procedure at runtime) with some columns(this columns are decided at...
November 5, 2014 at 9:22 am
In your dataset, return a field that identifies the "DayGroup". Then group on that.
Here's the formula to use on the SQL side: round((MyDaysCountValue - 1)/5, 0) as [DayGroup]
You...
November 4, 2014 at 11:32 am
You CAN do it at the dataset level. What you need to do is identify the RANGE of values that your Top X (10 in this case) encompasses. ...
November 4, 2014 at 11:19 am
Mkrish (10/12/2014)
iam able to calculate percentage
but my problem iam getting infinity and #error values
i tried to eliminate 'infinity' i got success
but...
October 30, 2014 at 7:02 pm
vecerda (10/16/2014)
I am trying to create a calendar style report will have 12 months (as columns) and store opening listing in rows. I have created a matrix, but the...
October 30, 2014 at 6:39 pm
hoseam (10/17/2014)
Have this expression down here in one of my column;
=WeekdayName(Weekday(CDate(Fields!DWH_Calendar_Header.Value)),0,FirstDayOfWeek.System)
But the problem with this is that All the "Y" are cut short, it is not the complete y (y...
October 30, 2014 at 6:34 pm
Viewing 15 posts - 1 through 15 (of 31 total)