SSIS 2005 TFS 2013 tfsbuild questions

I am tasked with building packages with a certain version or label and then deploying them to our production environment.
So, when I try a command line for msbuild, it complained that ssis packages are not supported.  A suggestion was made that I use a blank c# project.
So, now I have this for the project file: 
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0" DefaultTargets="Build">
   <PropertyGroup>
      <OutputPath>Bin</OutputPath>
   </PropertyGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <Target Name="BeforeBuild">
      <!-- Build the analysis SSIS project -->
      <Exec Command="&quot;C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\devenv.exe&quot; C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\ETFG_Transfer.sln /Build Debug /project C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\ETFG_Transfer.dtproj"
/>
  </Target>
</Project>
Now I get an error when I issue this command line:
msbuild.exe "C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_projectfile3.dtproj" /l:FileLogger,Microsoft.Build.Engine;logfile=C:\Temp\ETFG_Transfer_Build.log;verbosity=Diagnostic;encoding=utf-8
"C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_projectfile3.dtproj" (def
ault target) (1) ->
(CoreCompile target) ->
  CSC : warning CS2008: No source files specified [C:\ETL\SSIS\2005\ETFG_Transf
er\ETFG_Transfer\msbuild_projectfile3.dtproj]
"C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_projectfile3.dtproj" (def
ault target) (1) ->
(CoreCompile target) ->
  CSC : error CS5001: Program 'c:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\obj
\Debug\msbuild_projectfile3.exe' does not contain a static 'Main' method suitab
le for an entry point [C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_pro
jectfile3.dtproj]
    1 Warning(s)
    1 Error(s)
Thanks for the help!

Hi Bryan,  
Thanks for your post.
As we know that TFS invoke MSBuild command to build the solution by default. So we need ensure the solution/project can be built successfully using MSBuild command line first.
As this issue which you received is a MSBuild issue, so please post it in
MSBuild forum for the better response.
If your SSIS project can be built using VS(devenv.exe), I think you can custom the build process template to invoke devenv.exe command line to build your SSIS project. Please refer to the answer reply in this
post, and the solution in this article:
http://geekswithblogs.net/jakob/archive/2010/05/14/building-visual-studio-setup-projects-with-tfs-2010-team-build.aspx.
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • SSIS 2005 TFS 2013 msbuild questions

    I am tasked with building packages with a certain version or label and then deploying them to our production environment.
    A suggestion was made to look at an article, but I feel that until I am able to invoke msbuild with a command line, then I should not try anything else, but I am open to being corrected on that point.
     http://geekswithblogs.net/jakob/archive/2010/05/14/building-visual-studio-setup-projects-with-tfs-2010-team-build.aspx
    So, when I try a command line for msbuild, it complained that ssis packages are not supported.  A suggestion was made that I use a blank c# project.
    So, now I have this for the project file: 
    <?xml version="1.0" encoding="utf-8"?>
    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0" DefaultTargets="Build">
       <PropertyGroup>
          <OutputPath>Bin</OutputPath>
       </PropertyGroup>
       <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
       <Target Name="BeforeBuild">
          <!-- Build the analysis SSIS project -->
          <Exec Command="&quot;C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\devenv.exe&quot; C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\ETFG_Transfer.sln /Build Debug /project C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\ETFG_Transfer.dtproj"
    />
      </Target>
    </Project>
    Now I get an error when I issue this command line:
    msbuild.exe "C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_projectfile3.dtproj" /l:FileLogger,Microsoft.Build.Engine;logfile=C:\Temp\ETFG_Transfer_Build.log;verbosity=Diagnostic;encoding=utf-8
    "C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_projectfile3.dtproj" (def
    ault target) (1) ->
    (CoreCompile target) ->
      CSC : warning CS2008: No source files specified [C:\ETL\SSIS\2005\ETFG_Transf
    er\ETFG_Transfer\msbuild_projectfile3.dtproj]
    "C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_projectfile3.dtproj" (def
    ault target) (1) ->
    (CoreCompile target) ->
      CSC : error CS5001: Program 'c:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\obj
    \Debug\msbuild_projectfile3.exe' does not contain a static 'Main' method suitab
    le for an entry point [C:\ETL\SSIS\2005\ETFG_Transfer\ETFG_Transfer\msbuild_pro
    jectfile3.dtproj]
        1 Warning(s)
        1 Error(s)
    Thanks for the help!

    Actually, this is the better answer.  It uses the empty c# project file, like an article suggested and produces the build just the way I expect it to.
    <?xml version="1.0" encoding="utf-8"?>
    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0" DefaultTargets="Build">
       <PropertyGroup>
          <OutputPath>Bin</OutputPath>
       </PropertyGroup>
       <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
       <Target Name="BeforeBuild">
          <!-- Build the analysis SSIS project -->
          <Exec Command="&quot;$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\@InstallDir)\devenv.exe&quot;
    C:\Temp\TestSSIS\TestSSIS\TestSSIS.dtproj /BUILD" />
      </Target>
      <PropertyGroup>
        <CoreBuildDependsOn>
        </CoreBuildDependsOn>
      </PropertyGroup>
    </Project>

  • Unable to connect TFS 2013 from Visual Studio 2005

    Hi Team,
    Our customer had recently migrated all TFS Projects in Team Foundation Server from  2010 to 2013  (which has  .NET 2.0,3.5 and 4.0 Projects)  as well. We are facing one critical issue for some developers working in Visual Studio 2005
    projects after migrating to TFS 2013, were unable to use their VS 2005 Projects with TFS 2013 server.
    We installed the following software in the order
    VS 2005 professional edition
    Team Explorer 2005
    VS 2005 SP1
    Forward Compatibility Patch SP1
    MSSCCI Plugin for TFS 2013
    Team Explorer 2013
    We have also referred the below msdn links to resolve the problem
    http://blogs.msdn.com/b/tfssetup/archive/2014/01/23/connecting-to-team-foundation-server-2013-using-visual-studio-2005-thru-msscci-provider.aspx
    http://blogs.msdn.com/b/tfssetup/archive/2014/01/23/connecting-to-team-foundation-server-2010-using-visual-studio-2005-thru-msscci-provider.aspx
    SaranRam

    Hi SaranRam,
    It's suggested to use the same version of VS and TFS, and it would be better to use Visual Studio/Team Explorer 2013 to work with TFS 2013.
    For your situation, you can have a try to Team Explorer 2013 separately to connect to the team project in TFS 213 and work with the upgraded projects. You can also have a check on other machines to see if it works for you. Another option is clean team founation
    cache to see if it's related to your credential. Also view event logs to see if there any useful information.
    About the second link you referred, please have a double check if  you have configured it properly. And elaborate more details if the issue persists.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • TFS performance report pack not working on TFS 2013

    Hi
    I have TFS 2013 setup and I found TFS performance report pack from http://blogs.msdn.com/b/granth/archive/2009/02/03/announcing-tfs-performance-report-pack.aspx URL.
    These reports don't work after uploading to my report server. The blog talk about creating a shared data source TfsActivityReportDS
    and using Data Source=localhost;Initial Catalog=TfsActivityLogging
    as connection string.
    I don't have any database by name TfsActivityReportDS in my TFS and as a result I am not able to run any report on my TFS 2013 server.
    Is there any way to get these reports work for TFS 2013? Or is there other TFS performance report pack made for TFS 2013?
    Regards, Premal Acharya

    Hi Charles,
    Thanks a ton for your help. :)
    It worked on TFS 2013. I followed your steps. I also found one easy way to edit the queries mentioned in those rdl files. I opened them in text editor and replaced TfsActivityLogging with my TFS project name (Tfs_DefaultCollection). Saved rdl file and opened
    it in report builder and then my job was only to modify the data source.
    I really appreciate your help for getting the reports worked on TFS 2013.
    However I am only stuck with one little issue pertained to Server Status - Source Control Request Queue.rdl file
    This report file doesn't have any queries and it also uses XML as connection to the data source. When I run this report on my TFS server I am getting error as URL "http://localhost:8080/versioncontrol/v1.0/administration.asmx" not found.
    Detailed information about the report file is given below.
    Report Name
    Server Status - Source Control Request Queue
    Connection type
    XML
    Connection string in data source 
    http://localhost:8080/versioncontrol/v1.0/administration.asmx
    Query Under data set
    <Query>
       <Method Name="QueryServerRequests" 
    Namespace="http://schemas.microsoft.com/TeamFoundation/2005/06/VersionControl/Admin/03">
       </Method>
       <ElementPath IgnoreNamespaces="true">*</ElementPath>
    </Query>
    -------END---------
    I don't know how to get it work. Your help and advice on this will be highly appreciated.
    Thanks again for helping me to get other reports worked with TFS 2013.
    Regards, Premal Acharya

  • Running SSIS 2005 in SQL Server Job Agent 2012

    Hi Guys,
    I'm trying to create a job in SQL 2012 that calls an SSIS 2005 package, however i'm getting some issue.  I researched the issue a bit and got this link . The given link suggested to use dtexec as SQL 2012 try to convert it in the memory.
    I used the dtexec  but I'm still getting an issue.
    "Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 9.00.1399.06 for 32-bit  Copyright (C) Microsoft Corp 1984-2005. All rights reserved.    Started:  4:11:19 PM  Error:
    2015-04-13 16:11:26.24     Code: 0xC0012024     Source: OTH Market Exist?      Description: The task "OTH Market Exist?" cannot run on this edition of Integration Services. It requires a higher level edition.  End
    Error  Error: 2015-04-13 16:11:26.24     Code: 0xC0012024     Source: Arcticle CSV Exist?      Description: The task "Arcticle CSV Exist?"
    cannot run on this edition of Integration Services. It requires a higher level edition.  End Error  Error: 2015-04-13 16:11:26.24     Code: 0xC0012024     Source: BV Market Exist?      Description:
    The task "BV Market Exist?" cannot run on this edition of Integration Services. It requires a higher level edition.  End Error  Error: 2015-04-13 16:11:26.51     Code: 0xC002F210     Source: No Input
    Files Email Execute SQL Task     Description: Executing the query "DECLARE @result int;  EXEC @result = security.dbo.spSendEmail  
    @Subject='[GFK Import & Export] - All Input Files Are Missing',  
    @Message ='Processing has been stopped due to missing input files',  
    @ToID =25,   @ccID =0,  
    @Attachment =''" failed with the following error: "Database 'security' does not exist. Make sure that the name is entered correctly.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly,
    It seems that I do need to upgrade my packages to run in SQL 2012 unless if there's another way without upgrading it that would be great.
    I just want to get the confirmation if possible or not
    Many thanks guys.

    Hi Vaibhav,
    I created 2 jobs. the first job calls a simple package that execute a single SQL. It ran
    successfully when I execute the said job using this command 
    DTEXEC /FILE "\"C:\TFS\WDSHE SSIS Packages from DTS\GFK_Test_package.dtsx\"" /DECRYPT stud10 /CHECKPOINTING OFF /REPORTING E
    2nd Job, calls a complex package which contains several execute process tasks. this job fails with the error mentioned at the top.
    Now, I modified the simple package in the first job and add an Execute Process Task.
    I'm started to get an issue
    Message
    Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 9.00.1399.06 for 32-bit  Copyright (C) Microsoft Corp 1984-2005. All rights reserved.    Started:  4:51:57 PM  Error: 2015-04-13
    16:52:01.32     Code: 0xC0012024     Source: Unzip BV ZIP      Description: The task "Unzip BV ZIP" cannot run on this edition of Integration Services. It requires a higher level edition.  End Error  DTExec:
    The package execution returned DTSER_FAILURE (1).  Started:  4:51:57 PM  Finished: 4:52:01 PM  Elapsed:  4.212 seconds.  Process Exit Code 1.  The step failed.
    Have you had a similar issues before?
    I will try to install the SSIS service and see how I go. thanks for the link

  • Deleting old flat files inside a SSIS package - SSIS 2005

    Hi,
    after each flat file import, I need to move the acquired file into an history folder and deleting old files of 1 week ago.
    How can I cancel these files, acting inside my SSIS 2005 pckg?
    Many thanks

    While in foreach loop, after a successful import just move the file with the File System Task. Deleting old files is a little trickier, you can also loop thru the files and delete those older than based on name (if the date in the name of the file) or use
    File Properties Task to get file's age to a variable and then use a precedence constraint to decide on deleting or not
    conditionally.
    Your question is general. Many devs did this before, just Bing/Google examples out.
    Arthur My Blog

  • SSIS 2005 - Unable to access MSDB on Integration Services

    Hi all
    I have a little problem with my IS Server.
    I am using IS 9.0.1399 (SSIS 2005).
    I have one instance for databases.
    I am able to connect to Integration Services just with the Servername (no Instance Name) and I see the folders in there.
    When I try to open the MSDB Folder (under "Stored Packages") I get the following exeption:
    "Login timeout expired
    An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.
    SQL Network Interfaces: Connection string is not valid [87]."
    Any ideas??
    Thanks for any comment!!
    Best regards
    Jacky Barbier
    Regards, Jacky Please 'Mark as Answer' if my post answers your question and 'Vote as Helpful' if it helps you.

    It may be this
    http://sqlserversolutions.blogspot.ae/2011/04/cant-expand-msdb-in-integration.html
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • SSIS 2005 and SSIS 2012 Have Different Data Flow Output

    Hi Guys,
    I'm currently converting our SSIS 2005 packages to 2012 and I'm finding an odd difference on the Data Flow Output when it imports a txt file to a table.
    We have a pipe delimited file ( contains a totals on the bottom row).
    CATNO|Title|Total Stk Avail|Stk on Order|Rank|QOH|Allocated|Reserved|BackOrd|WIP|Cleared|Held
    CATNUM000067|Fast and Furious|9804|0||9804|0|0|0|0|0|0
    CATNUM000068|Frozen|0|0||0|0|0|0|0|0|0
    CATNUM000029|Brave|0|0||0|0|0|0|0|0|0
    CATNUM000029|Brave with Kinect|0|0||0|0|0|0|0|0|0
    CATNUM000029|Big Hero|0|0||0|0|0|0|0|0|0
    CATNUM000057|Transformers|27376|0||27376|0|0|0|0|0|0
    CATNUM000013|James Bond|121|0||121|0|0|0|0|0|0
    ,Total Available Stock,524259
    And these are the settings for the flat file connection
    In SSIS 2005, the total rows are being omitted automatically by the data flow. Basically only 7 rows are inserted whereas in SSIS 2012. 8 rows were inserted including the totals.
    if we think about it, SSIS 2012 is correct since we just feed what's ever in the file.
    But on the conversion and testing perspective, it's now harder as there's discrepancies between those 2 version.
    I just like to check if there's any other discrepancies in terms on results/output between SSIS 2005 and SSIS 2012
    Many thanks. 

    Hi Vinxster,
    After testing the issue that Flat File Connection Manager cannot handle file with total row in my SQL Server 2005 environment, I can reproduce it.
    Based on my research, the issue is caused by the Column Delimiter gets first preference and then Row delimiter. This is by design in SQL Server 2005, SQL Server 2008 or SQL Server 2008 R2.
    Good news is that the issue is fixed in SQL Server Data Tools which comes with SQL Server 2012. In SQL Server 2012, by default, the Flat File Connection Manager always checks for a row delimiter in unquoted data, and starts a new row when a row delimiter
    is found. This enables the connection manager to correctly parse files with rows that are missing column fields.
    If you want to fix the issue in SQL Server 2005, there is a sample component posted to the CodePlex that might help you with this:
    http://ssisdfs.codeplex.com/
    References:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2013/03/13/flat-file-source-cannot-handle-file-with-uneven-number-of-columns-in-each-row.aspx
    https://connect.microsoft.com/SQLServer/feedback/details/293193/ssis-import-of-flat-file-with-uneven-number-of-columns
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • TFS 2012 work items migration to TFS 2013 along with History,Links/Attachments & Custom fields??

    Dear All,
    TFS 2012 work items migration to TFS 2013 along with History,Links/Attachments & Custom fields?? is there any way..
    Tried couple of tools:
    1) Excel based migration : loss of data is custom fields, links, attachments, status
    2) few tools in Code plex : Crashing/Not working.
    Kindly provide your valuable comments here.
    Cheers, Tarun

    Hi Tarun,
    I'd like to know the tools that you used in CodePlex. Generally, CodePlex project is not supported in MSDN forum, and you can post your questions and concerns in the issue secton of the project.
    If you use TFS integration tools, according to this
    blog, it is limited to migrating only Version Control items, Work Items, and the links between them. Please check the limiation and have a check with your migration. For the customized fields, you might need to do the same customizatoin on the target
    team project.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Compatibility of TFS 2013's MSSCCI with PowerBuilder 12.5

    Does anyone know if there are any compatibility issues with using PowerBuilder 12.5 and TFS 2013?  We are planning on upgrading our TFS server from 2010 to 2013.  I've seen discussions on PB 12.5 using TFS 2012, and PB 11.5 using TFS 2013.....but
    what about PB 12.5 with TFS 2013?

     Hi Andria, 
    Thanks for your post.
    According the information in
    TFS 2013 MSSCCI Provider download site, the PowerBuilder 12.5 not displays in support products list. So we suggest you use PowerBuilder 11.5 works with TFS 2013 MSSCCI.
    And I noted that you have asked a question about this issue in that download site, please tracking the reply from there. And you can try to install the PowerBuilder 12.5 and TFS 2013 MSSCCI on a test machine to check if there’s any error. 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Does On-Premise TFS 2013 work with Office 365 natively or do I need an Exchange/O365 Hybrid solution?

    Hello. We currently have an on-premise Exchange 2010 environment with 2 servers setup in a DAG. Our Development Department uses an on-premise TFS 2013 server for everything, they can't work without
    it. Upper Management wants the IT Dept to move the company from on-premise Exchange 2010 DAG to Office 365. My concern is TFS 2013 since it uses AD and Exchange for workflow notifications. An employee's AD account is given permission to resources
    inside TFS 2013 and since Exchange attributes are tied to their AD account they receive workflow notifications. My question is will I need to keep a permanent Exchange 2010/O365 Hybrid solution in-place in order for TFS 2013 to continue function
    properly? If the answer is yes than that is fine, I am just looking for confirmation before I start the project. I would appreciate any advice on this topic.<o:p></o:p>
    Thanks<o:p></o:p>
    <o:p></o:p>

    Hi Cirbin,
    As far as I know, it's not supported to integrate TFS 2013 with Office 365. You can check the
    link for more information.
    For your situation, whether keep a permanent Exchange 2010/O365 Hybrid solution or not, you might open a new thread in SharePoint/Exchange forum for a better response.  From the thred, seems you need  to keep the hybrid solution.
    And for integration Office 365 users to TFS, please vote the user voice
    here.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Http service too busy error for SSIS adapters for SharePoint - SSIS 2005 and MOSS 2007

    Hi,
    a my old SSIS 2005 pkg that uses the SSIS adapters for SharePoint from only some days ago goes in error with this message for a data flow task that reads from a MOSS 2007 list:
    Error: System.ServiceModel.ServerTooBusyException: The HTTP service located at
    http://mysitename/_vti_bin/lists.asmx is too busy.  ---> System.Net.WebException: The remote server returned an error: (503) Server Unavailable.    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.ProcessGetResponseWebException(WebException
    webException, HttpWebRequest request, HttpAbortReason abortReason)    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.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.GetSharePointFields(String
    listName, String viewId)    at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields(Uri sharepointUri, 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(IDTSManagedComponentWrapper90 wrapper).
    Any suggests to me, in order to solve this issue? Many thanks

    Unfortunately your post is off topic as it's not specific to SQL Server Samples and Community Projects.  
    This is a standard response I’ve written in advance to help the many people who post their question in this forum in error, but please don’t ignore it.  The links I provide below will help you determine the right forum to ask your question in.
    For technical issues with Microsoft products that you would run into as an end user, please visit the Microsoft Answers forum ( http://answers.microsoft.com ) which has sections for Windows, Hotmail,
    Office, IE, and other products.
    For Technical issues with Microsoft products that you might have as an IT professional (like technical installation issues, or other IT issues), please head to the TechNet Discussion forums at http://social.technet.microsoft.com/forums/en-us, and
    search for your product name.
    For issues with products you might have as a Developer (like how to talk to APIs, what version of software do what, or other developer issues), please head to the MSDN discussion forums at http://social.msdn.microsoft.com/forums/en-us, and
    search for your product or issue.
    If you’re asking a question particularly about one of the Microsoft Dynamics products, a great place to start is here: http://community.dynamics.com/
    If you think your issue is related to SQL Server Samples and Community Projects and I've flagged it as Off-topic, I apologise.  Please repost your question and include as much detail as possible about your problem so that someone can assist you further. 
    If you really have no idea where to post your question please visit the Where is the forum for…? forum http://social.msdn.microsoft.com/forums/en-us/whatforum/
    When you see answers and helpful posts, please click Vote As Helpful,
    Propose As Answer, and/or Mark As Answer
    Jeff Wharton
    MSysDev (C.Sturt), MDbDsgnMgt (C.Sturt), MCT, MCPD, MCSD, MCSA, MCITP, MCDBA
    Blog: Mr. Wharty's Ramblings
    Twitter: @Mr_Wharty
    MC ID:
    Microsoft Transcript

  • Move a project from TFS 2008 to TFS 2013

    Hi, we are using 2 TFS servers in our company. TFS2008 and TFS2013 SP4. Now I need to migrate  one project (of 6) from TFS 2008 to TFS2013 with all the history and documents from SharePoint services. The TFS2008 is runnig on Windows Server 2008
    x86 and SQL 2005 and WSS. TFS2013 is running on Windows Server 2012 R2 nad SQL2012 and SharePoint Server 2010.
    I have found some discussions with this topic, most of them with backuping and restoring databases. But it was from TFS 2008 to TFS 2013 using TFSconfig.exe import. But this tool is not available in TFS 2013. Is it possible to do such task without installing
    single use TFS2010?
    Thanks, regards Martin

    Hi Martin,  
    Thanks for your post.
    You want only move team project source files and documents from TFS 2008 to TFS 2013 or you want move the whole team project data(source files and work items…) from TFS 2008 to TFS 2013?
    If you want move whole team project data within history from TFS 2008 to TFS 2013, we suggest backup your TFS 2008, and install a new TFS 2010(or 2012) Server using the TFS 2008 backup, then
    move the collection from TFS 2010 to TFS 2013 Server directly, after moved successfully, you can delete the unwanted team projects from moved collection in TFS 2013.
    If you want only move the source files and document from TFS 2008 team project to TFS 2013 Server, you can create a new team project in TFS 2013 Server, then try use the
    TFS Integration Tools to move source files from TFS 2008 team project to this new created TFS 2013 team project, but you need note the limitations in this tool.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SSIS 2005 and Oracle10g 64bit drivers

    This client works using net manager, I can connect to the database, however when SSIS 2005 connects to the database using this driver (OraOLEDB.Oracle.1) I get "driver not registered", or something similar to that.
    Has anyone else had this problem and fixed it?
    Microsoft is saying that there's some kind of issue with Oracle's drivers, but why does it connect normally, and not through SSIS?

    If the Development Studio environment does not even open then it is probably an installation issue. Possibly a DLL did not register properly. Could you take a look at the following forums where a similar issue is being discussed? You can also look for more
    responses by searching for "0x8007007e visual studio on windows 7" in your search engine.
    http://support.microsoft.com/kb/978714
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/0bcf22d6-adab-4595-b0d8-3a37ce7fbff3/2008-ssis-designer-stops-working-after-installing-vs11-dev-preview?forum=sqlintegrationservices
    http://stackoverflow.com/questions/10460118/the-specified-module-could-not-be-found-exception-from-hresult-0x8007007e
    - Aalamjeet Rangi | (Blog)

  • SSIS 2005 FTP with PPK

    Hello. I would like to automate sending an Excel file to a vendor FTP site with SSIS 2005.  I can see how to use ftp with user name and password options.  However, the twist here is that the vendor says that I need to incorporate a ppk key for
    security reasons. The problem is that I am not finding this on the ftp task bar in the SSIS GUI. Before I get into the weeds on how to set this up, the first question I'm asking is if this can actually be done in SSIS 2005?
    Thanks in advance for comments.
    Brian

    Hi Brian,
    not by using the stock FTP Task. It only is a wrapper around the command line FTP client.
    If you are able to code then it will be a Script Task with some VB or C#, but may be that then defeats the merits of using SSIS
    Arthur My Blog

Maybe you are looking for

  • How do I set background color of cell using JTable?

    Hello all! I have a question on the use of JTables. I am using a JDialog consisting of a JTable and a number of buttons to insert and to select OK or cancel. Everything is working perfectly, but I now must add editing capabilities to prevent invalid

  • Procurement Coordinator received Authorization Error when creating Bid Inv

    Hi All,         In SRM I have an issue Please help me in solving this. Please see below               Procurement Coordinator received Authorization Error when creating Bid Invitation from Sourcing Cockpit.  Message states u201CMissing Transaction BB

  • Problems in changing Thousand's separator appearance

    I am having problems in changing the thousands separator appearance. I am based out of India and here the thousands separator works in format - 1,00,00,000 (i.e. 2 digits after last 3 digits). I want to change this into standard 3 digit thousands sep

  • Firefox is incredibly choppy and sluggish on a new computer. Why is this happening?

    I bought a brand new laptop a few weeks ago. For some reason, Firefox is very choppy and slow, especially when I'm scrolling on websites. I noticed there are more problems when I am websites with a lot of image/video content such as Facebook. The wei

  • When to use FileTable, and DB design questions

    I have a kind of interesting scenario- lets say I have a list of people I wish to store in the database, so I create a table 'Person'.  Now lets say each person has a 2000 large image files (say high res photos or something).  Each image is > 5M.  Wh