Viewing 15 posts - 5,596 through 5,610 (of 13,877 total)
May 12, 2017 at 7:14 am
If you know the absolute maximum number of rows in the source, you could perhaps add an NTILE to your source query & then have a conditional split which sends...
May 12, 2017 at 5:47 am
Ah, sorry, I should have read your post more closely.
At least it gave me the opportunity to create my first temporal table, so thanks for that!
May 11, 2017 at 11:45 am
I suspect that dd is a reserved word. Try using [dd] instead. I just tried this with no problem, and it's basically the same construct as yours:SELECT
May 11, 2017 at 10:10 am
I can only imagine how annoying that this is. I'm running out of ideas, but I think I would do the following:
1) As well as scripting the close...
May 11, 2017 at 7:48 am
May 11, 2017 at 7:14 am
May 10, 2017 at 5:56 am
If your data is always in the very structured format your sample data shows, this works:
DROP TABLE IF EXISTS #Temp;
CREATE TABLE #Temp (Name NVARCHAR(200));
May 10, 2017 at 5:56 am
Not sure whether it is relevant, but what is the value of the RetainSameConnection property on the Excel Connection Manager?
May 9, 2017 at 3:15 pm
Was the file copied, or moved? Copying should inherit permissions in the way you want, but moving does not necessarily do so.
May 9, 2017 at 1:47 pm
May 9, 2017 at 12:20 pm
May 9, 2017 at 11:47 am
OK, good.
If you check both
C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn
and
C:\Program Files\Microsoft SQL Server\130\DTS\Binn
Do the paths exist?
Do they contain any .bak files at all?
May 9, 2017 at 10:39 am
May 9, 2017 at 10:32 am
Viewing 15 posts - 5,596 through 5,610 (of 13,877 total)