Quantcast
Channel: SQL Server Integration Services forum
Viewing all 24688 articles
Browse latest View live

ReinitializeMetaData problem - SSIS custom component

$
0
0

Hey ladies and gents, got a puzzling problem I'm encountering. I'm building a custom component for SSIS that accepts an unlimited number of inputs. I decided one way to keep things clean was to make sure that there was exactly one unattached input at a time. Validate() checks to see how many unattached inputs there are and returns VS_NEEDSNEWMETADATA if the amount is not equal to one. ReinitializeMetaData() then cleans up the InputCollection. I've attached the code below for both overridden functions (you can see that I've used message boxes to help verify the code is actually doing what it is expected to do).

I've verified that both functions work correctly, but the problem is that ReinitializeMetaData is not getting automatically called when Validate() returns VS_NEEDSNEWMETADATA. Instead, the little red error symbol appears with rollover text saying "Validation errors occurred", and if I click on the component, a window pops up saying "The component is not in a valid state. Do you want the component to fix itself automatically." Why isn't ReinitializeMetaData automatically running, and how can I fix it. All help greatly appreciated!

public override DTSValidationStatus Validate()
        {
            /// If there is an input column that no longer exists in the Virtual input collection,
            /// return needs new meta data. The designer will then call ReinitalizeMetadata which will clean up the input collection.
            if (ComponentMetaData.AreInputColumnsValid == false)
                return DTSValidationStatus.VS_NEEDSNEWMETADATA;

            /// The component should only have one unattached input at a time. If there are none, ReinitializeMetaData will create one.
            /// If there is more than one, ReinitializeMetaData will remove all extras.
            int unattachedInputCount = 0;
            foreach (IDTSInput100 input in ComponentMetaData.InputCollection)
            {
                if (input.IsAttached == false)
                    unattachedInputCount++;
            }

            MessageBox.Show("You have " + unattachedInputCount.ToString() + " unattached inputs.");

            if (unattachedInputCount!=1)
                return DTSValidationStatus.VS_NEEDSNEWMETADATA; 

            DTSValidationStatus status = base.Validate();
            return status;
        }

        public override void ReinitializeMetaData()
        {
            base.ReinitializeMetaData();

            this.ComponentMetaData.RemoveInvalidInputColumns();

            /// If there is more than one unattached input, removes all except one.
            IDTSInputCollection100 inputCollection = ComponentMetaData.InputCollection;
            int unattachedInputCount = 0;
            foreach (IDTSInput100 input in inputCollection)
            {
                if (input.IsAttached == false)
                {
                    unattachedInputCount++;
                    if (unattachedInputCount > 1)
                        inputCollection.RemoveObjectByID(input.ID);
                }
            }

            /// If there are no unattached inputs, adds a new one.
            if (unattachedInputCount == 0)
                inputCollection.New();

            /// Identifies remaining unattached inputs to verify the above has worked.
            unattachedInputCount = 0;
            foreach (IDTSInput100 input in ComponentMetaData.InputCollection)
            {
                if (!input.IsAttached)
                    unattachedInputCount++;
            }

            MessageBox.Show("You now have " + unattachedInputCount.ToString() + " unattached inputs.");
        }
    }


Best way in SSIS to copy tables from one database to another on different servers

$
0
0

I have about 6 or 7 smaller sized tables (out of around 100 tables) located in a SQL Server 2008 R2 database (64 bit) that I need copied to a Staging database on a different server (also SQL 2008 R2 64 bit) that I have created. The approach I was taking was using a FOREACH loop container to get the names of the tables I need and to store them in a string User variable called TableName. That part I have working. Then I was thinking of using a Script Task to take that tablename and copy the table from one server to another. I am assuming that I will need to use SMO to some degree in the script but I am having trouble figuring out how to do that.

Some things to consider are that I will never know what the exact names of the tables will be - only that they start with a certain string such as "LOS_Release". The tables are not guarenteed to have the same columns.

If anyone has a sample or advice on how to do this seemingly simple task I would appreciate it

Scott

can we open sas files in sql server,

$
0
0

hi frends ,

i am a beginner and dont know anything about SAS .. the task is i ve been given a huge data of sas files or call it data sets (Sry m unaware)

i need to be able to open it in sql server and organize the data .

is it possible to open an sas file in sql. if so please reply with the steps.

Multiple result column in lookup_plus result column.

$
0
0

Hi All,
How can we add multiple number of Result columns in lookup plus.
we have inputcolumn,reference and result column .
In result column i need to add multiple columns.
how can i get this?

How to create the batch file for ssis package

$
0
0
Hi ,

i had created ssis package. this ssis package how to create the batch file.
please tell me step by step details for this one.
i want schedule the ssis package on windows task scheduler.
send me full details for me .

Regards,
Abdul Khadir.

Could not continue scan with NOLOCK due to data movement

$
0
0

I'm using SSIS 2008, SQL Server 2008 R2.

I'm trying to create a data flow task which takes data from an excel file, and locates it in a local database table.

I established the excel file connection, and created OLE DB Destination.

After I choose the local connection server, I'm trying to choose the target table for the data but it doesn't find me any table and what I see is:

 

The test connection to the local server is ok, I can't find a solution to this.

Can somebody help?

Thanks.

How to get the SSIS templates in SQL Server Data Tools

$
0
0

Hello

I had installed SQL Server 2012 Express and over it I installed SQL Server Data Tools. Naturally, the SSIS project templated did not appeared in the Data Tools. Later on, I upgraded the Express edition with a Developer one; and I installed the December release of the Data Tools over it. 

Problem is that the SSIS project templated are still unvailable. What can I do?

Thanks  a lot.

How to use SSIS to export text file

$
0
0

Hi

I try to export data  to a text file with SSIS and I hope my format is fixed length.

For example:

I have table which 3 fields, the format is below.

    [ITEM_NUMBER] [nvarchar](2) NOT NULL,
    [NAME] [nvarchar](5) NULL,
    [ON_HAND] [numeric](13, 3) NULL

When I export it to a text file, the data I hope

it like this==>I1 test            1.0

Not like this ==>I1 test1.0

In the SSIS, I use replicate(' ', (16-len(on_hand)))+CONVERT(varchar,on_hand) as on_hand, but it still fail.

Could someone help to show me how to do it? Thanks.


Cooper


forcing negative values when entered as a string

$
0
0

Hi all.

I have an excel spreadsheet which contains financial figures. I have used SSIS to upload this information into a staging table. This information then gets processed into our main system using stored procedures. Upon cycling through these sourced procedures however, I have noticed that some figures do not enter correctly. This is because the spreadsheet represents it's negative values with a minus on the end of the figure rather than the beginning. For example         -£100 pounds displays as "100-".

Is there any way i can get this to represent a negative value in either SSIS or excel so that my SPs process the information correctly?

Thanks in advance.

The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020

$
0
0

In my SSIS package I have a OLEDB Source in one of the Data Flow Task and "Data Access Mode" is "Sql Command" with the Select statement. When I ran the process after some records were processed I'm getting the below error messages which are not pin pointing to specific errors to fix the issue. I'm having the hard time to figure out the issue. Please help me.

[SSIS.Pipeline] Error: Unspecified error

[OLE DB Source 1 [224]] Error: The attempt to add a row to the Data Flow task
buffer failed with error code 0xC0047020.


[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on component
 "OLE DB Source 1" (224) returned error code 0xC02020C4.  The component returned a failure code when
the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component,
 but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this
 with more information about the failure.

Database migration

$
0
0

We have two different data models. Columns, tables, datatypes would be different. But we want theDATA.

The source data model can be anything (different models)

The destination is the same. 

We basically want to build adapters which uses a common structure we define and build scrips to us. The common structure needs mapping from the source data model to destination data model.

Now the mapping we can use a open source, or a free tool or our own tool(need suggestions please) or a paid tool in the same priority.

Could you please provide some help.

Thanks in advance :-)


Sunil

Query Output Data missing in SSIS output file

$
0
0

I created a SSIS package which writes all data from a table to csv file. But in the output file the column data for a few rows is not found, which is visible when a select is run on the table in SSMS.

My database is on a cluster instance of SQL Server 2008 R2 Enterprise Edition 64-bit with SP2. Windows cluster is running onWindows 2008 R2 Enterprise 64 bit with SP1.

Build Error in SSIS

$
0
0

Hi all,

I am working on ssis packages i am using sql server 2008 and visual studio 2008. I am using TFS and i have taken the

SSIS Project from TFS into my locan machine and i made some changes and i tried to rebuild the solution. It is giving error saying

Error: Could not get a list of SSIS packages from the project

I am not able to build the project. When i set the property create deployment utility = false then build is getting succeedd and no errors. What might be the problem i am trying to trace it out.

any help and suggessions please...

Thanks

Error OLE DB or ODBC in Visual Studio

$
0
0
Hi everyone, I have a bad problem with a connection...I'm using ( running as administrator) Visual Studio. When I connect a project that I made using a database in SqlServer2012 no problem ( Ican export in Excel, I can change attributes, etc) but I'm tryng to use analysis tutorial ( I downloaded from Microsoft) that I put in a folder in C:\tutorial . Visual read the project but I'm not able to deploy it, it return an error OLEDB or ODBC 08001. I started the service PIPE in the protocol configuration but it goes on to show the Error above. Any suggestion? Thanks a lot

deploy package in sql 2012

$
0
0

hi,

i am deploying package first time in sql 2012.

i have done xml configuration. then in another server ,i click on msdb->file system->dtsx file.

when i am running package,it gives me error.

i would liek to know step by step how to do deployment. and what about configuration file,its not coming in pic at all.

can anybody please help me


SSIS Problem while exporting numbers stored as text in Excel

$
0
0

HI All,

In my SSIS package when I am exporting data from SQL Server to Excel-2007. The numeric data are stored as String in Excel and flag is showing in every cell saying that number stored as text.

Any help on this problem is appreciated.

Thanks

Microsoft Connector 1.1 for SAP BW - Connected and Mapped Table - Error Retrieving Data

$
0
0

We are able to connect and map the table from BW but the process does not bring over any of the rows populated via the SAP Process Chain.

Any help or insight would be greatly appreciated.

SQL Version: SQL 2008 R2 + SP1 / Microsoft Connector 1.1 for SAP BW

I have verified all of the following requirements for using the Microsoft Connector 1.1 for SAP BW:

  • OK - Windows Server 2003 and later, Windows Vista, or Microsoft Windows XP Professional with Service Pack 2.    
  • OK - SQL Server 2008 Integration Services. Microsoft Connector 1.1 for SAP BW needs to be installed on the same computer where Integration Services is installed.
  • OK - Windows Installer 4.5 and later.
  • OK - Extracting data using Microsoft Connector 1.1 for SAP BW from SAP BI system requires the SAP Open Hub license. For more information about SAP licensing, consult your SAP representative. 
  • OK - On the SAP BI system, SAP_BW component support package level 16 (as part of SAP NetWeaver Support Pack Stack 14) is required. SAP_BW component support package level 17 or higher is strongly recommended. 
  • OK - To use Microsoft Connector 1.1 for SAP BW in 32-bit (64-bit) mode on any 32-bit (64-bit) operating system, The 32-bit (64-bit) version of librfc32.dll needs to copied to the following location: %windir%\system32. 
  • N/A -To use Microsoft Connector 1.1 for SAP BW in 32-bit mode on a 64-bit operating system, the 32-bit librfc32.dll needs to be copied to the following location: %windir%\SysWow64.

What we know:

  1. In SAP they defined a simple process chain ( select f1, f2, etc. from Table_a - table_a has 32K rows )
  2. Using the new BI Connector we setup a data flow task that uses the "SAP BW Source", We can see the table structure and the test of the connection succeedsm and map source/target.
  3. We have verified that the SAP Process Chain is getting executed
  4. The temporary table that is defined on the SAP side is getting loaded with the 32000 rows of data ( confirmed by the BASIS team ) NOTE: The BASIS team was able to go into SAP and select the data from the table using our ID
  5. The data never gets to us ( see the results below ) and it has been confirmed that the two ports can talk.

SSIS Output:

SSIS package "Test_SAP_RemoteSQLSRVR.dtsx" starting.
Information: 0x4004300A at Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
Information: 0x4004300A at Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
Information: 0x40043006 at Data Flow Task, SSIS.Pipeline: Prepare for Execute phase is beginning.
Information: 0x40043007 at Data Flow Task, SSIS.Pipeline: Pre-Execute phase is beginning.
Information: 0x4004300C at Data Flow Task, SSIS.Pipeline: Execute phase is beginning.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Process Start Process, variant Trigger Open hub ZOH_POS for SQL Interface has status Completed (instance 4OOO29EJ7YWPHMN46BB1BFMZ8)
Information: 0x3E8 at Data Flow Task, SAP BW Source: Process Data Transfer Process, variant ZCDPOSCP -> ZOH_POS_FULL LOAD has status Active (instance DTPR_4OOO29M7QXIF096KC5DDLHLP0)
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is waiting for a notification.
Information: 0x3E8 at Data Flow Task, SAP BW Source: A notification was received., RequestID=268507; NumberOfRows=33060; NumberOfPackets=1; OHS Destination=ZOH_POS
Information: 0x3E8 at Data Flow Task, SAP BW Source: The extraction process is finished.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Number of rows: 33060.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Number of packets: 1.
Information: 0x3E8 at Data Flow Task, SAP BW Source: RequestID: 268507
Information: 0x3E8 at Data Flow Task, SAP BW Source: OHS Metadata validation passed.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry.
Information: 0x3E8 at Data Flow Task, SAP BW Source: Current status of process chain "ZADHOC_SQL_OPEN_HUP" is: A.
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now retrieving PacketID, "1".
Information: 0x3E8 at Data Flow Task, SAP BW Source: The component is now processing an incoming packet that contains 0 rows.
Error: 0x3E8 at Data Flow Task, SAP BW Source: Fatal error during reading of database
Information: 0x3E8 at Data Flow Task, SAP BW Source: Wait for 20000 seconds and retry. 



Discovering read-only columns programmatically via script

$
0
0

First, some background.

I am building an archive process that sends records from an operational data store to a separate archive server and database.  A list of tables whose records are to be sent across are pulled into a DTSX package.  Aforeachloop container cycles through the tables one at a time.  Inside the container is ascript task.  The script task programmatically builds a new DTSX package and populates it with adata flow task containing both source and destination components.  I have successfully sent data across our servers using this new dynamically generated package, however, there is a problem.

One of the tables has a computed column.  This computed column is a part of the table schema on both the ODS and archive databases.  Trying to insert data into a computed column will cause the package to fail.  I have spoken with the DBA and gotten a few suggestions (change archive table schema, store values "normally" and adjust logic to populate it, use DMVs to look for computed columns, etc.) but I'm hoping something within the SSIS API can help me out.  Is it possible to ignore any column in the destination (input) that would throw a read-only error?  Is there something within the metadata objects I could use to do so?

Thanks in advance.

SSIS Configuration Manager not updating with XML Config File credentials.

$
0
0

Hi all, I have query regarding configs in SSIS.

 

I currently have a XML config file set up and withing it have the following connection details username and password hashed out for this forum only###

    <Configuration ConfiguredType="Property" Path="\Package.Connections[SharePoint Credential].Properties[Password]" ValueType="String">
        <ConfiguredValue>#####</ConfiguredValue>
    </Configuration>
    <Configuration ConfiguredType="Property" Path="\Package.Connections[SharePoint Credential].Properties[UserName]" ValueType="String">
        <ConfiguredValue>AUR\#####</ConfiguredValue>

I dont believe there to be anything wrong with the config file as this file has been around working for 6 months, now im trying to update the credentials due to the password expiring for the account that is currently there.

When I update the XML config file with the new credentials and then open the solution the old credentials are still showing in the connection manager for the connection type (its sharepoint).

1.  I have checked the SSIS > Package Configuration to ensure the path is correct.

2.  I can edit the configuration so I know its connecting to the file but when I go through the wizard its still showing the details there.

3.  I have restarted the application pool on IIS (server)

4.  Checked the XML file there is no mention anymore of the old credentials..

Errors

Error    2    Validation error. SP to Temp SharePoint List Source 1 [108]: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoap.GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.ListsService_ListsSoap_GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.GetListAndView(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointList(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointFields(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    3    Validation error. SP Event Codes To TMP: SP Event Codes To TMP: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoap.GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.ListsService_ListsSoap_GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.GetListAndView(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointList(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointFields(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    4    Validation error. SP Event Codes To TMP SharePoint List Source 1 [618]: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoap.GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.ListsService_ListsSoap_GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.GetListAndView(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointList(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointFields(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    5    Validation error. SP To Temp: SP To Temp: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoap.GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.ViewsService_ViewsSoap_GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.GetViewCollection(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetSharePointListViews(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetViewList(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.LookupViewName(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    6    Validation error. SP To Temp SharePoint List Source [1]: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoap.GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.ViewsService_ViewsSoap_GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.GetViewCollection(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetSharePointListViews(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetViewList(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.LookupViewName(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    7    Validation error. SP Core Tasks To TMP: SP Core Tasks To TMP: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoap.GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.ListsService_ListsSoap_GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.GetListAndView(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointList(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointFields(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    8    Validation error. SP Core Tasks To TMP SharePoint List Source 1 [199]: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoap.GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.ListsService_ListsSoap_GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.GetListAndView(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointList(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointFields(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    9    Validation error. SP To Temp: SP To Temp: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoap.GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.ViewsService_ViewsSoap_GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.GetViewCollection(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetSharePointListViews(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetViewList(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.LookupViewName(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    10    Validation error. SP To Temp SharePoint List Source [1]: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoap.GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.ViewsService_ViewsSoap_GetViewCollection(GetViewCollectionRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ViewsService.ViewsSoapClient.GetViewCollection(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetSharePointListViews(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ViewsAdapter.GetViewList(String listName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.LookupViewName(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    
Error    12    Validation error. SP to Temp: SP to Temp: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'. ---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.     at System.Net.HttpWebRequest.GetResponse()     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)     at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)     at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)     at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoap.GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.ListsService_ListsSoap_GetListAndView(GetListAndViewRequest request)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.GetListAndView(String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointList(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointFields(String listName, String viewId)     at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, NetworkCredential credentials, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns(String sharepointUrl, String listName, String viewName)     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns()     at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate()     at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate(IDTSManagedComponentWrapper100 wrapper)    SharePointToDatamartUpdates.dtsx    0    0    

Any help appreciated only placed 14/40 errors...


SQLNCLI11.1 is not registered

$
0
0

Hi All,

I build SSIS package in SSIS 2008. I am doing it's configuration and getting the following error

Thanks,


hsbal

Viewing all 24688 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>