Viewing 15 posts - 166 through 180 (of 220 total)
It really does sound like a permissions issue to me, did you check in the job details that it was executed by the user account you'd expect it to? And...
November 30, 2015 at 3:31 am
Alternatively if data driven subscriptions aren't an option, you could do it via SSIS (bit of a faff to maintain though so would use this as last resort) - have...
November 30, 2015 at 3:26 am
Can you post the exact error returned?
If you go to the job, click 'view job history', then expand the latest run and select the relevant step, is there an...
November 30, 2015 at 3:12 am
Is the account running the job the same one you used to test the package?
November 30, 2015 at 2:52 am
Is your snapshot configured to use a UNC path? (e.g \\myamazingcomputer\c$\mysnapshotfolder rather than c:\mysnapshotfolder)
Otherwise it could be an issue with your articles - would suggest carefully checking publisher vs subscriber...
November 26, 2015 at 9:32 am
Do you mean that it's importing a row consisting of entirely NULL values, or that when a certain field is NULL it shouldn't be imported? Is there a primary key...
October 23, 2015 at 5:00 am
I don't have the means to test at the moment - perhaps this would work?
SELECT *
FROM [Sheet1$B2:Q2]
UNION
SELECT *
FROM [Sheet1$B9:Q]
October 8, 2015 at 4:41 am
In the data flow source, use 'SQL Command' and do something like:
SELECT *
FROM [Sheet1$B9:Q]
October 6, 2015 at 9:55 am
ChrisM@Work (10/6/2015)
tindog (10/6/2015)
ChrisM@Work (10/6/2015)
I'm surprised it takes so long for so few rows....
October 6, 2015 at 5:53 am
ChrisM@Work (10/6/2015)
I'm surprised it takes so long for so few rows. What exactly...
October 6, 2015 at 5:34 am
RTaylor2208 (10/6/2015)
However it sounds potentially like you have blocking occurring which is holding...
October 6, 2015 at 5:26 am
Under the top menu (where you have 'Welcome, username', 'My Account', 'BriefCase', 'LogOut') you'll see some grey text - starting with 'Control Panel' in bold font. To the right of...
September 29, 2015 at 9:45 am
If it must be dealt with in SSIS you could use slowly changing dimension for upserts (you would need a separate task for your DELETEs). However in my experience this...
September 29, 2015 at 8:57 am
Do you have this at the top of your script:
Imports Microsoft.SqlServer.Dts.Runtime
August 12, 2015 at 7:24 am
I'm not a vb guru either I'm afraid, do you get any errors if you just copy in the procedure and leave the rest as is? (I.e Public Sub Main()....End...
August 12, 2015 at 6:39 am
Viewing 15 posts - 166 through 180 (of 220 total)