Viewing 15 posts - 4,666 through 4,680 (of 5,111 total)
Phil Parkin (12/20/2016)
frederico_fonseca (12/19/2016)
if excel file format is 2010 or higher then https://msdn.microsoft.com/en-us/library/office/gg575571(v=office.15).aspx may be an option.Have you tried using this? How did it go?
No, as it's a Script task,...
December 20, 2016 at 7:13 am
GilaMonster (12/20/2016)
The answers in the last two posts will work fine, but they have an inherent performance problem. Have a look at the first section of https://www.simple-talk.com/content/article.aspx?article=2280
Getting a 404 on...
December 20, 2016 at 7:05 am
Please encapsulate your code in IFCode markup. It makes it so much easier to read as it preserves formatting.
I would also not suggest the ISNULL in your WHERE clause, but...
December 20, 2016 at 3:58 am
Yes, you still have 2016 installed (it's just acting like 2012), which is different to actually installing 2012.
December 20, 2016 at 2:04 am
frederico_fonseca (12/19/2016)
if excel file format is 2010 or higher then https://msdn.microsoft.com/en-us/library/office/gg575571(v=office.15).aspx may be an option.
Using a script task was exactly what I want to avoid 🙂
December 20, 2016 at 1:55 am
BrainDonor (12/19/2016)
December 19, 2016 at 9:29 am
Thanks Phil,
I got to step 4, and my error rows were about half of my data set. Exporting that data out showed nothing odd about it, but they were all...
December 19, 2016 at 9:07 am
DamianC (12/19/2016)
How does it handle schedules
I see it generates a schedule using @schedule_uid with a uniqueidentifier
If I script out the job, change the name and run...
December 19, 2016 at 5:49 am
I can't say I've encounter it before, but I would have thought this is quite simple to resolve.
Without the table this is guess work, but would this not work?
ValueColumn /...
December 16, 2016 at 3:01 pm
You can add permission denied to your SQL Server logs by using:
EXEC dbo.sp_altermessage 229, 'WITH_LOG', 'true';
I have, however, noticed this doesn't give you the user name. However, if you have...
December 16, 2016 at 2:06 pm
Phil's definitely is cleaner and faster, but yes does depend if you want to introduce a different language. Personally, I find Phil's very easy to read, and I don't write...
December 16, 2016 at 7:35 am
How active is your table going to be? Is it going to be in constant use? Are rows likely to be added to your existing dataset while you're trying to...
December 16, 2016 at 7:18 am
When you say Dim Tables, are you talking about your Dimension Tables (stored in a SQL database), or your Cube Dimensions (which is stored within your cube).
Tables, on SQL Server,...
December 16, 2016 at 5:07 am
This gives the expected results:
SELECT C.Id,
C.[value] AS CurrentValue,
C.valuedate AS CurrentValueDate,
...
December 16, 2016 at 2:05 am
That's one way of doing it yes.
If you didn't want to use a Script Task, you could use a For Loop container and then assign the filename to a variable...
December 15, 2016 at 10:01 am
Viewing 15 posts - 4,666 through 4,680 (of 5,111 total)