Viewing 15 posts - 1,996 through 2,010 (of 13,838 total)
I appreciate the response, but unfortunately, this didn't work. The first file, with the "dummy" data loaded great. I then changed the setting on the Excel Source step to...
May 26, 2021 at 7:05 pm
It's been a while since I last worked on this issue, so I may have misremembered the 'solution'.
After your package has run against the dummy Excel file with the wide...
May 26, 2021 at 2:12 pm
I haven't fully tested this, but it should get you started:
DROP TABLE IF EXISTS #SomeData;
CREATE TABLE #SomeData
(
entity VARCHAR(50)
,col VARCHAR(50)
...
May 26, 2021 at 1:45 pm
For those who enjoy the additional challenge of working on the same question in multiple parallel threads, this question is also posed here.
May 26, 2021 at 9:13 am
To the OP: why did you cross-post? You have enough points to know better. Do you realise that this annoys those people who take the time to answer in one...
May 26, 2021 at 9:11 am
You'll need to create two AD groups, one for standard users, who should not see the sensitive columns, and one for privileged users, who can.
Drop the 'all logins' group...
May 26, 2021 at 9:07 am
Your BEGIN ... END surround a single statement and should therefore not be required, unless you put them there for clarity.
May 25, 2021 at 8:28 pm
Nearly! More like this, I think:
INSERT a2wh.dbo.CallLogCommon_dbc
(
CALL_ID
,DATE
,TIME
,lead_id
,DOMAIN
,SESSION_ID
...
May 25, 2021 at 8:26 pm
Yes indeed, that should work.
May 25, 2021 at 3:58 pm
OK, I can't think of any reasonable way of doing that! I'll leave it for others to chip in.
May 25, 2021 at 8:51 am
They say that they still need to use the domain logon as everyone needs access but want to secure the sensitive information on certain tables but still be accessible...
May 25, 2021 at 8:33 am
I've never tried this, but if you use the (oxymoronically named) ACE driver to read the text file, using a connection string like this:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=<filepath here>;Extended Properties="TEXT;HDR=YES;IMEX=1";
after...
May 25, 2021 at 7:55 am
Some background information from you would help illuminate the problem, I think.
So far, it seems that you periodically receive one-off files which contains hundreds of columns, which you would like...
May 25, 2021 at 7:46 am
As you are familiar with SSIS, you will probably know that you can redirect errors to an error table.
If your target staging table is set up with all of the...
May 21, 2021 at 3:23 pm
What action do you wish to take if validation fails (eg, invalid date) for a particular row?
May 21, 2021 at 7:44 am
Viewing 15 posts - 1,996 through 2,010 (of 13,838 total)