Migration of personnal views with powershell ?

Hi
I'm trying to migrate SharePoint personal List views from a sharepoint site to another one (copy of a web site to split content database).
Is the a way, with the farm administrator credentials to get all the personnal views of all users ? 
I tried the $List.Views but it gets only public views and the farm admin personal ones. 
Thanks for your help
Regards
F

Hi  EKILOG,
To migrate the list personal view between sites,
Export and Import SharePoint Personal Views solution in Codeplex is designed to do this.
However, downloading the solution directly is not working, there should be some issue during the deployment. We can download the source code, create a new project,
move the source code to the new created project, build it, then we can use the command documented in the solution.
Please inform me freely if you have any questions.
Thanks
Eric Tao
TechNet Community Support

Similar Messages

  • How to add the Note board web part to a page with powershell

    Hi everyone,
    I've been looking around everywhere but haven't seen it explicitly mentioned. 
    Does anyone know how to add the Note Board web part to a Team Site page, e.g. Non-publishing site, Left Zone, First webpart in the zone in powershell?
    Examples like this one http://adicodes.com/adding-web-part-to-page-with-powershell/ only talk about custom web parts uploaded from a local drive.
    The example here looks good - http://spcrew.com/blogs/lists/posts/post.aspx?id=21 but is it for the Page Viewer Web Part. How would you go about getting the correct name for the note board web part and configuring it? 
    Many Thanks,
    Ashley
    function main(){
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    $url = "http://sp2010dev1/sites/test1"
    $OpenWeb = Get-SPWeb $url
    $OpenWeb
    $OpenSite = Get-SPSite $url
    $file = $OpenWeb.GetFile("http://sp2010dev1/sites/test1/SitePages/test1.aspx")
    $WebPartManager = $file.GetLimitedWebPartManager([System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    Add-PageViewerWebPart "http://sp2010dev1/sites/test1" "http://sp2010dev1/sites/test1/SitePages/test1.aspx" "Body" 0 "SPCrew Site" "sp2010dev"
    $OpenWeb.Dispose()
    function Add-PageViewerWebPart($SiteURL, $pageUrl, $webpartzone, $index, $title, $content)
        $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
        $web=$site.OpenWeb()
        $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
        $webpart = new-object Microsoft.SharePoint.WebPartPages.PageViewerWebPart
        $webpart.ChromeType = [System.Web.UI.WebControls.WebParts.PartChromeType]::TitleOnly;
        $webpart.Title = $title
        $webpart.ContentLink = "http://www.spcrew.com";
        $webpartmanager.AddWebPart($webpart, $webpartzone, $index);    
        $web.Close()
        $site.Close()
    function Get-SPSite([string]$url) {
        New-Object Microsoft.SharePoint.SPSite($url)
    function Get-SPWeb([string]$url) {
        $SPSite = Get-SPSite $url
        return $SPSite.OpenWeb()
        $SPSite.Dispose()

    Hi,
    According to your post, my understanding is that you wanted to add the Note board web part to a page with PowerShell.
    The name of the Note Board web part is SocialCommentWebPart.
    I recommend to use the powershell code below:
    $pageUrl="http://sitename/SitePages/test.aspx"
    $SiteURL="http://sitename"
    $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
    $web=$site.OpenWeb()
    $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    $webpart = new-object Microsoft.SharePoint.Portal.WebControls.SocialCommentWebPart
    $webpart.title="Note Board"
    $webpartmanager.AddWebPart($webpart, "MiddleZone", 0);
    $web.Close()
    Then the Note board web part will be added to the page.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to manage a connection with powershell using visual studio with C#

    Hi
     I want to manage a connection with powershell for a web app using visual studio with c#. and also run command with pipeline 
    Plz give a some suggestions..

    Hi Raj_Kumar_Saini,
    To make things clear, could you please clarify these thing?
    1. Do you mean you want to execute some PowerShell scripts from C# language? These blogposts may give you  some ideas:
    Executing PowerShell scripts from C#
    Powershell Automation and Remoting (a c# love story)
    Execute PowerShell from a ASP.NET Web Application
    2. Is your question related to Visual Studio Integration? Do you want to build a Visual Studio Extension?
    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.

  • Import materialized view with rowid

    We are upgrading the Data Warehouse and Source Database from Oracle 9i to 10G.
    For replication we use materialized views. Since in our source database we don't have any primary keys, we maintain materialized view logs based on rowids in Source/Master Database.
    Similarly in the Staging schema of or data warehouse we have defined materialized views with rowid and fast refresh option.
    We are using imp/exp utility for migrating both the source database and the data warehouse.
    Since our replication is based on rowid, when we migrate to new environment, all the rowids of the source tables would be redifined making the materialized view tables rowid obsolete.
    One way is to do compete refresh to bring both source database and Staging database baack in sync, but that would be expensive and time consuming.
    Is there any way we can preserve rowid or keep the materialized views in staging in sync with source database ?
    Thanks.

    WITH ROWID is used with REFRESH clause. Try
    SQL> CREATE MATERIALIZED VIEW xxca_project_status_mv
    2 REFRESH WITH ROWID
    3 AS
    do I have to create a log.Only if you want a fast refresh.

  • Different results using View with union all in 11R1 compared to 10R2

    Hello,
    I have the following situation:
    In Oracle 10R2 I defined a view which looks like this
    create view test_view
    as
    select 'field1;field2;field3' field from dual
    union all
    select field
    from (
    select tfield1||';'||tfield2||';'||tfield3 field
    from table1
    order by tfield1,tfield2,tfield3
    The idea is, my first line contains a header information an then the data in the required sorting order.
    So, in 10R2, when I export the view with select field from test_view, I get the result as expected, which means, the header from the part with the dual was in the first line and after that, the data in the required sort order.
    Now, in 11.1.0.7, it is completely different, because the row of the dual is somewhere in my result set. But if I send the sql instead of the view, I get the expected result as in 10R2.
    I have no idea why this is the case now, because in 10R2 this was working permanently as expected. When I look at the execution plan, I see, that he starts parallelisation, which is ok, but the difference is, that in this parallelisation the select from dual is included and in 10R2 he first make the line from the dual and then the parallelisation with the data. It's not clear to me, that if I send the sql to the database I see the required result, but if i define the view as mentioned, and start a select field from view, I get now get the different sorting, because of the parallelisation, where the optimizer he changes his behavior comparing the both database versions. So my question ist, how can I change this behavior to get the same behavior as in release 10R2.
    Best regards
    Rainer

    Hello,
    thank you for your sample, I see your idea for my sorting purpose.
    I want to look at the following point:
    I create the table, as you described. The table has the degree and instances 1. Now I deefine the following view:
    create view view_test
    as
    select 'field1;field2;field3' field
    from dual
    union all
    select tfield1 || ';' || tfield2 || ';' || tfield3 field
    from (select * from table1 order by tfield1,tfield2).
    This is the way I used it in 10 R2.
    Now, the SQL select field from view_test delivers the expected result:
    field1;field2;field3
    a;b;c
    d;e;f
    So far so good. But now, I changed the degree of the table1 (alter table table1 parallel (degree 4 instances 1);).
    The result looks like that:
    a;b;c
    field1;field2;field3
    d;e;f
    So, the parallelisation of my object seems to be the reason for the, in my eyes, "wrong" sort order. In 10R2 I used this degree and instance values for my table and defined a view and it was working fine. Now, after our migration, I had this "trouble". For me it seems, that the optimizer made some changes, or mabe this is a bug, who knows ?
    I also tried, to change the nls_comp, and set the undocumented parameters as described in the Metalink note 7497640.8, but with no effect of my result set.
    Best regards
    Rainer

  • Merging vhdx & .avhdx with powershell error ....

    i m trying to merge a vhdx & avhdx with powershell
    the codes are
    Run diskpart.
    Enter: select vdisk file="<full path to the latest differencing disk>"
    A differencing disk ends in either .avhd or .avhdx.
    Enter: merge vdisk depth=n
    n will be the number of parent files you want to merge.  Since I had two parents, one .vhd and one .avhd for this .avhd file, I used depth=2.
    the problem is whenever i try to select the differencing disk in step 2 , i get an error ...device not ready
    if i changed the avhdx to vhdx ... i get the same error
    i unchecked the read only ... gave full permissions to vm machine and user ... still get error
    please advice or if you suggest a third party that can migrate the vhdx with its avhdx

    You will need a backup to go back to a valid database.
    Snapshots are not supported in Production and cause in few cases  issues and behaviour like you are encoutering now.
    You have to avoid using snapshots in production, snapshots are nice and they unction propely in 99% of the cases. You were not lucky. If you want to use snapshots with a VM for a reason (test update or a  new configuration),  backup your VM before.
    Regards, Samir Farhat Infrastructure and Virtualization Consultant || Virtualization, Cloud, Azure ? Follow and Ask here https://buildwindows.wordpress.com

  • DFS V2 setting ABE with Powershell

    Hello everybody
    we currently have a stand-alone DFS running on W2K8R2 without replication. Inside our central namespace the access based enumeration is enabled. In former times we create a dfs-share with dfscmd.exe for and used dfsutil.exe for setting the abe. This
    works very fine.
    Now I tried this with powershell:
    new-dfsnfolder creates the share as expected.
    grant-dfsnaccess seems to works without an error.
    But the share itself still has "use inheritance permissions from local filesystem" instead of "set explicit permissions on the dfs Folder" and is viewable for everybody. Switching inside the gui to "explicit permission" shows
    the permissions given with grant-dfsnaccess.
    Has anybody an idea how to switch this Setting?
    Best regards from Germany   Guido

    Hi Guido,
    It seems that you have encounter the issue described in this article:
    The Windows PowerShell cmdlet Grant-DfsnAccess does not change inheritance on DFS links
    This is because although the Grant-DfsnAccess cmdlet successfully configures the view permissions for individual groups or users, the cmdlet does not change the inheritance mode from use inherited to set explicit.
    To work around this problem, use one of the following method:
    dfsutil property sd grant \\Contoso.com\Software\Projects Contoso\SarahJones:RX protect
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Re-map print queues for clients with powershell

    We reinstalled printer queues (share printer name is the same as before) and drivers on server, 99% users can't print properly, is a way to re-map print queues for all clients with PowerShell equivalent to remove and map again?

    Hi Brent,
    To re-map all of the printers, please check this script written by Boe Prox:
    <#
    .SYNOPSIS
    Logon Script to migrate printer mapping
    .DESCRIPTION
    Logon Script to migrate printer mappings
    .NOTES
    Author: Boe Prox
    Create: 09 NOV 2012
    Modified:
    Version 1.0 - Initial Script Creation
    1.1 Added Header Text for CSV file
    #>
    Param (
    $newPrintServer = "Server2",
    $PrinterLog = "\\LogSVR\PrintMigration$\PrintMigration.csv"
    <#
    #Header for CSV log file:
    "COMPUTERNAME,USERNAME,PRINTERNAME,RETURNCODE-ERRORMESSAGE,DATETIME,STATUS" |
    Out-File -FilePath $PrinterLog -Encoding ASCII
    #>
    Try {
    Write-Verbose ("{0}: Checking for printers mapped to old print server" -f $Env:USERNAME)
    $printers = @(Get-WmiObject -Class Win32_Printer -Filter "SystemName='\\\\Server1'" -ErrorAction Stop)
    If ($printers.count -gt 0) {
    ForEach ($printer in $printers) {
    Write-Verbose ("{0}: Replacing with new print server name: {1}" -f $Printer.Name,$newPrintServer)
    $newPrinter = $printer.Name -replace "Server1",$newPrintServer
    $returnValue = ([wmiclass]"Win32_Printer").AddPrinterConnection($newPrinter).ReturnValue
    If ($returnValue -eq 0) {
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    $newPrinter,
    $returnValue,
    (Get-Date),
    "Added Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    Write-Verbose ("{0}: Removing" -f $printer.name)
    $printer.Delete()
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    $printer.Name,
    $returnValue,
    (Get-Date),
    "Removed Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    } Else {
    Write-Verbose ("{0} returned error code: {1}" -f $newPrinter,$returnValue) -Verbose
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    $newPrinter,
    $returnValue,
    (Get-Date),
    "Error Adding Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    } Catch {
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    "WMIERROR",
    $_.Exception.Message,
    (Get-Date),
    "Error Querying Printers" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    Quote from:
    Use a PowerShell Logon Script To Update Printer Mappings
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to migrate 3.x workbook with multiple sheets to Bex7.0

    Hi,
    Would you help me in defining the procedure of how to migrate 3.x workbooks to Bex 7.0.
    I have found the following way which seems good.....
    1. Refresh a 3x workbook using Analyzer 3x
    2. Save as global view
    3. Open BW 7 Analyzer
    4. Open query, files of type: Query View...and choose the name I saved in 2nd bullet above
    5. Save workbook in BW 7
    6. Delete the view
    With this, i am able to migrate only single sheet to a workbook.is there a way to migrate all the sheets to a single workbook.
    For example:  3.x workbook contains monthly view,weekly view sheets.with the above procedure i am able to migrate only one sheet,either monthelt/weekly to 7.0 .In that case i need to create 2 workbooks for 2 different sheets.please suggest a way if there is any, to migrate the 2 sheets in a single workbook..

    Hi ,
    In bex analyser 3.x , clicked on save button, and had chosen save view global.
    once the view is saved, when i call the same view in SAP bex 7.0 is shows only one tab with name table and with the first sheet contect displayed in the 3.x.The second sheet is not seen .

  • Hyper-V BPA Automation with Powershell

    "draft" version of simple powershell script for Hyper-V BPA automation
    I'm not a pro in PS. I'll be happy to hear your comments and advices
    Anyway, I hope it will be useful for somebody. 
    http://rlevchenko.com/2014/05/02/hyper-v-bpa-automation-with-powershell/
    Roman Levchenko, MCSA, MCITP, MCTS http://www.rlevchenko.com

    Hi ,
    I am not familiar with powershell .
    #create Backup Path of the Day
    $path = new-item -ItemType Directory -Path "$rootPath\$(Get-Date -f yy_MM_dd_HH-mm)"
    I think it will create a new folder to store the export image when the script start to run .
    Also the disk space for storing these image is a factor what you can think of .
    Best Regards
    Elton Ji
    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.

  • [PowerShell] Ping multiple servers simultaneously with PowerShell: Test-ConnectionAsync (strange problems)

    I am hoping the author of the script "Ping multiple servers simultaneously with PowerShell: Test-ConnectionAsync" can help me.
    I found it at: https://gallery.technet.microsoft.com/scriptcenter/Multithreaded-PowerShell-0bc3f59b
    I am using the version dated: 5/8/2014
    I extraced the entire function from the .psm1 file for use in a script that continuously pings about 100 devices and sends an email when a device has failed three times in a row.  At some point, usually between 15 minutes and several hours, the script
    stops running.  If I break out of it <CTRL>-C, and run a "Get-Job" command, I can see that a job is "stuck" at the "Running" state.  I can even retrieve the data using "Receive-Job" and it looks fine.
     Here is a sample of the Get-Job after the program froze (I changed the Source and Destination to protect the names/IPs)...
    PS C:\Program Files\ServerScripts\DeviceMonitor> Get-Job
    Id     Name            PSJobTypeName   State         HasMoreData     Location             Command
    145678 Job145678       WmiJob          Running       True            .                    Test-Connection
    PS C:\Program Files\ServerScripts\DeviceMonitor> Receive-Job 145678
    Source        Destination     IPV4Address      IPV6Address                              Bytes    Time(ms)
    SERVER1  XX.XXX.XXX.XX   XX.XXX.XXX.XX                                             32       5
    SERVER1  XX.XXX.XXX.XX   XX.XXX.XXX.XX                                             32       5
    SERVER1  XX.XXX.XXX.XX   XX.XXX.XXX.XX                                             32       5
    SERVER1  XX.XXX.XXX.XX   XX.XXX.XXX.XX                                             32       5
    PS C:\Program Files\ServerScripts\DeviceMonitor> Get-Job
    Id     Name            PSJobTypeName   State         HasMoreData     Location             Command
    145678 Job145678       WmiJob          Running       False           .                    Test-Connection
    I tried added some additional output in the function to troubleshoot but I can't seem to find the root cause.  I would be happy if I could remove the "stuck" job after a certain amount time, even though this doesn't get to the root of the
    problem.
    Any assistance would be appreciated.  Even if you could point me in the right direction.
    Thank you.

    Hi,
    Questions for Gallery items should be asked on the QandA tab of the listing, as that is usually the fastest way to contact the script's author:
    https://gallery.technet.microsoft.com/scriptcenter/Multithreaded-PowerShell-0bc3f59b/view/Discussions#content
    Dave does frequent this forum, so you might get a response from him here directly.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Error syncing Project - Fails at migration of large revision (with 35000 adds)

    Hello Microsoft!
    We have managed to migrate large projects before. But this time we are getting errors, at a point where the tool tries to migrate a check-in with large (35000) adds. It then re-tries to process the 35000 adds and again fails, then re-tries.
    There are large adds in this revision because the user has checked-in a large lot of files at one time.
    The tool logs show that it is sometimes able to process 1000, sometimes 4000, sometimes 7000; I have even seen it reaching upto 21000 of 35969 adds. Not sure why this is happening!
    Below are logs. Please will you help us find solution to this.
    [2/4/2015 12:16:02 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finished scheduling! 
    [2/4/2015 12:33:23 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 1000 of 35969 Adds 
    [2/4/2015 12:50:58 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 2000 of 35969 Adds 
    [2/4/2015 1:10:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 3000 of 35969 Adds 
    [2/4/2015 1:38:42 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 4000 of 35969 Adds 
    [2/4/2015 2:09:35 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 5000 of 35969 Adds 
    [2/4/2015 2:34:02 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 6000 of 35969 Adds 
    [2/4/2015 2:44:20 AM] TfsIntegrationService.exe Warning: 0 : VersionControl: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. 
    [2/4/2015 2:44:20 AM] TfsIntegrationService.exe Information: 0 : VersionControl: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException:
    An existing connection was forcibly closed by the remote host 
    [2/4/2015 2:44:20 AM]    at System.Net.Sockets.Socket.EndReceive(IAsyncResult asyncResult) 
    [2/4/2015 2:44:20 AM]    at System.Net.Sockets.NetworkStream.EndRead(IAsyncResult asyncResult) 
    [2/4/2015 2:44:20 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.VersionControl.Client.UploadDownload.EndDownload(IAsyncResult asyncResult) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Client.DownloadFile(String downloadUrl, String localFileName) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Item.DownloadFile(String localFileName) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.Download(String localPath) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.downloadItem(BatchedItem itemToBeDownloaded) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendAdds() 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendChanges() 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.Flush() 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.Flush(BatchingContext context) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.ProcessChangeGroup(ChangeGroup group) 
    [2/4/2015 2:44:20 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Unresolved conflict:  
    [2/4/2015 2:44:20 AM]   Session: eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 
    [2/4/2015 2:44:20 AM]   Source: 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:20 AM]   Message: Cannot find applicable resolution rule. 
    [2/4/2015 2:44:20 AM]   Conflict Type: Runtime Error 
    [2/4/2015 2:44:20 AM]   Conflict Type Reference Name: f6dab314-2792-40d9-86cc-b40f5b827d86 
    [2/4/2015 2:44:20 AM]   Conflict Details: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was
    forcibly closed by the remote host 
    [2/4/2015 2:44:20 AM]    at System.Net.Sockets.Socket.EndReceive(IAsyncResult asyncResult) 
    [2/4/2015 2:44:20 AM]    at System.Net.Sockets.NetworkStream.EndRead(IAsyncResult asyncResult) 
    [2/4/2015 2:44:20 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.VersionControl.Client.UploadDownload.EndDownload(IAsyncResult asyncResult) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Client.DownloadFile(String downloadUrl, String localFileName) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Item.DownloadFile(String localFileName) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.Download(String localPath) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.downloadItem(BatchedItem itemToBeDownloaded) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendAdds() 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendChanges() 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.Flush() 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.Flush(BatchingContext context) 
    [2/4/2015 2:44:20 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.ProcessChangeGroup(ChangeGroup group) 
    [2/4/2015 2:44:20 AM]  
    [2/4/2015 2:44:20 AM]  
    [2/4/2015 2:44:20 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Stopping current trip for session: eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 
    [2/4/2015 2:44:20 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Recorded sync point for migration source fd615486-5fdc-4377-8a10-f130e635df3b of session eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 with Source High Water Mark 'HWMDelta' value of
    '22084' 
    [2/4/2015 2:44:20 AM] TfsIntegrationService.exe Information: 0 : VersionControl: VersionControl: Session stopped! 
    [2/4/2015 2:44:50 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Pipeline flow from 87766026-7889-4150-b6ff-bb09b4749ad6 to fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:50 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:50 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating linking delta for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:50 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating migration instructions for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Starting basic conflict detection 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finishing basic conflict detection 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Post-processing delta table entries from the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating to the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Processing linking delta 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating links to the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Recorded sync point for migration source 87766026-7889-4150-b6ff-bb09b4749ad6 of session eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 with Source High Water Mark 'HWMDelta' value of
    '68541' 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl:  
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Pipeline flow from fd615486-5fdc-4377-8a10-f130e635df3b to 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:52 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:53 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating linking delta for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:44:53 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:53 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating migration instructions for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:53 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Starting basic conflict detection 
    [2/4/2015 2:44:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finishing basic conflict detection 
    [2/4/2015 2:44:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:44:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Target AnalysisProvider detecting conflicts in ChangeGroup #134544 
    [2/4/2015 2:44:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Post-processing delta table entries from the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating to the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:44:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:44:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Processing ChangeGroup #132730, change 22081 
    [2/4/2015 2:45:10 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finished scheduling! 
    [2/4/2015 2:49:42 AM] TfsIntegrationService.exe Warning: 0 : VersionControl: TF400324: Team Foundation services are not available from server 10.100.2.69\DefaultCollection. 
    [2/4/2015 2:49:42 AM] Technical information (for administrator): 
    [2/4/2015 2:49:42 AM]   The request was aborted: The operation has timed out. 
    [2/4/2015 2:49:42 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Microsoft.TeamFoundation.TeamFoundationServiceUnavailableException: TF400324: Team Foundation services are not available from server 10.100.2.69\DefaultCollection. 
    [2/4/2015 2:49:42 AM] Technical information (for administrator): 
    [2/4/2015 2:49:42 AM]   The request was aborted: The operation has timed out. ---> System.Net.WebException: The request was aborted: The operation has timed out. 
    [2/4/2015 2:49:42 AM]    at System.Net.HttpWebRequest.GetResponse() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequestAndGetResponse(HttpWebRequest webRequest, WebException& webException) 
    [2/4/2015 2:49:42 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.ReadResponse(HttpWebResponse webResponse, WebException webException) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequest() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpRequestChannel.Request(TfsMessage message, TimeSpan timeout) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, TimeSpan timeout, Object[]& outputs) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, Object[]& outputs) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Repository4.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayer.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayerLocalWorkspaces.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType,
    Boolean generateDownloadUrls, Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec[] itemSpecs, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options, String[] itemPropertyFilters,
    String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec itemSpec, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, DeletedState deletedState, GetItemsOptions options) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, GetItemsOptions options) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, Boolean includeDownloadInfo) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.loadCachedItem() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.get_CachedItem() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.Download(String localPath) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.downloadItem(BatchedItem itemToBeDownloaded) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendAdds() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendChanges() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.Flush() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.Flush(BatchingContext context) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.ProcessChangeGroup(ChangeGroup group) 
    [2/4/2015 2:49:42 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Unresolved conflict:  
    [2/4/2015 2:49:42 AM]   Session: eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 
    [2/4/2015 2:49:42 AM]   Source: 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:49:42 AM]   Message: Cannot find applicable resolution rule. 
    [2/4/2015 2:49:42 AM]   Conflict Type: Runtime Error 
    [2/4/2015 2:49:42 AM]   Conflict Type Reference Name: f6dab314-2792-40d9-86cc-b40f5b827d86 
    [2/4/2015 2:49:42 AM]   Conflict Details: Microsoft.TeamFoundation.TeamFoundationServiceUnavailableException: TF400324: Team Foundation services are not available from server 10.100.2.69\DefaultCollection. 
    [2/4/2015 2:49:42 AM] Technical information (for administrator): 
    [2/4/2015 2:49:42 AM]   The request was aborted: The operation has timed out. ---> System.Net.WebException: The request was aborted: The operation has timed out. 
    [2/4/2015 2:49:42 AM]    at System.Net.HttpWebRequest.GetResponse() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequestAndGetResponse(HttpWebRequest webRequest, WebException& webException) 
    [2/4/2015 2:49:42 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.ReadResponse(HttpWebResponse webResponse, WebException webException) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequest() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpRequestChannel.Request(TfsMessage message, TimeSpan timeout) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, TimeSpan timeout, Object[]& outputs) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, Object[]& outputs) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Repository4.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayer.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayerLocalWorkspaces.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType,
    Boolean generateDownloadUrls, Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec[] itemSpecs, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options, String[] itemPropertyFilters,
    String[] itemAttributeFilters) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec itemSpec, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, DeletedState deletedState, GetItemsOptions options) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, GetItemsOptions options) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, Boolean includeDownloadInfo) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.loadCachedItem() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.get_CachedItem() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.Download(String localPath) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.downloadItem(BatchedItem itemToBeDownloaded) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendAdds() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendChanges() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.Flush() 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.Flush(BatchingContext context) 
    [2/4/2015 2:49:42 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.ProcessChangeGroup(ChangeGroup group) 
    [2/4/2015 2:49:42 AM]  
    [2/4/2015 2:49:42 AM]  
    [2/4/2015 2:49:42 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Stopping current trip for session: eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 
    [2/4/2015 2:49:42 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Recorded sync point for migration source fd615486-5fdc-4377-8a10-f130e635df3b of session eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 with Source High Water Mark 'HWMDelta' value of
    '22084' 
    [2/4/2015 2:49:42 AM] TfsIntegrationService.exe Information: 0 : VersionControl: VersionControl: Session stopped! 
    [2/4/2015 2:50:12 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Pipeline flow from 87766026-7889-4150-b6ff-bb09b4749ad6 to fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:12 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:50:12 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating linking delta for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:50:12 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating migration instructions for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Starting basic conflict detection 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finishing basic conflict detection 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Post-processing delta table entries from the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating to the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Processing linking delta 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating links to the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Recorded sync point for migration source 87766026-7889-4150-b6ff-bb09b4749ad6 of session eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 with Source High Water Mark 'HWMDelta' value of
    '68541' 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl:  
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Pipeline flow from fd615486-5fdc-4377-8a10-f130e635df3b to 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating linking delta for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating migration instructions for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:50:14 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Starting basic conflict detection 
    [2/4/2015 2:50:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finishing basic conflict detection 
    [2/4/2015 2:50:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:50:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Target AnalysisProvider detecting conflicts in ChangeGroup #134544 
    [2/4/2015 2:50:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Post-processing delta table entries from the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:50:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating to the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 2:50:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 2:50:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Processing ChangeGroup #132730, change 22081 
    [2/4/2015 2:50:22 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finished scheduling! 
    [2/4/2015 3:05:29 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 1000 of 35969 Adds 
    [2/4/2015 3:33:27 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 2000 of 35969 Adds 
    [2/4/2015 3:49:01 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 3000 of 35969 Adds 
    [2/4/2015 4:03:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 4000 of 35969 Adds 
    [2/4/2015 4:16:15 AM] TfsIntegrationService.exe Warning: 0 : VersionControl: TF400324: Team Foundation services are not available from server 10.100.2.69\DefaultCollection. 
    [2/4/2015 4:16:15 AM] Technical information (for administrator): 
    [2/4/2015 4:16:15 AM]   The underlying connection was closed: A connection that was expected to be kept alive was closed by the server. 
    [2/4/2015 4:16:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Microsoft.TeamFoundation.TeamFoundationServiceUnavailableException: TF400324: Team Foundation services are not available from server 10.100.2.69\DefaultCollection. 
    [2/4/2015 4:16:15 AM] Technical information (for administrator): 
    [2/4/2015 4:16:15 AM]   The underlying connection was closed: A connection that was expected to be kept alive was closed by the server. ---> System.Net.WebException: The underlying connection was closed: A connection that was expected to be kept
    alive was closed by the server. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly
    closed by the remote host 
    [2/4/2015 4:16:15 AM]    at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags) 
    [2/4/2015 4:16:15 AM]    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) 
    [2/4/2015 4:16:15 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 4:16:15 AM]    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) 
    [2/4/2015 4:16:15 AM]    at System.Net.PooledStream.Read(Byte[] buffer, Int32 offset, Int32 size) 
    [2/4/2015 4:16:15 AM]    at System.Net.Connection.SyncRead(HttpWebRequest request, Boolean userRetrievedStream, Boolean probeRead) 
    [2/4/2015 4:16:15 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 4:16:15 AM]    at System.Net.HttpWebRequest.GetResponse() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequestAndGetResponse(HttpWebRequest webRequest, WebException& webException) 
    [2/4/2015 4:16:15 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.ReadResponse(HttpWebResponse webResponse, WebException webException) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequest() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpRequestChannel.Request(TfsMessage message, TimeSpan timeout) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, TimeSpan timeout, Object[]& outputs) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, Object[]& outputs) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Repository4.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayer.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayerLocalWorkspaces.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType,
    Boolean generateDownloadUrls, Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec[] itemSpecs, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options, String[] itemPropertyFilters,
    String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec itemSpec, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, DeletedState deletedState, GetItemsOptions options) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, GetItemsOptions options) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, Boolean includeDownloadInfo) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.loadCachedItem() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.get_CachedItem() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.Download(String localPath) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.downloadItem(BatchedItem itemToBeDownloaded) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendAdds() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendChanges() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.Flush() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.Flush(BatchingContext context) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.ProcessChangeGroup(ChangeGroup group) 
    [2/4/2015 4:16:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Unresolved conflict:  
    [2/4/2015 4:16:15 AM]   Session: eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 
    [2/4/2015 4:16:15 AM]   Source: 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:15 AM]   Message: Cannot find applicable resolution rule. 
    [2/4/2015 4:16:15 AM]   Conflict Type: Runtime Error 
    [2/4/2015 4:16:15 AM]   Conflict Type Reference Name: f6dab314-2792-40d9-86cc-b40f5b827d86 
    [2/4/2015 4:16:15 AM]   Conflict Details: Microsoft.TeamFoundation.TeamFoundationServiceUnavailableException: TF400324: Team Foundation services are not available from server 10.100.2.69\DefaultCollection. 
    [2/4/2015 4:16:15 AM] Technical information (for administrator): 
    [2/4/2015 4:16:15 AM]   The underlying connection was closed: A connection that was expected to be kept alive was closed by the server. ---> System.Net.WebException: The underlying connection was closed: A connection that was expected to be kept
    alive was closed by the server. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly
    closed by the remote host 
    [2/4/2015 4:16:15 AM]    at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags) 
    [2/4/2015 4:16:15 AM]    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) 
    [2/4/2015 4:16:15 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 4:16:15 AM]    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) 
    [2/4/2015 4:16:15 AM]    at System.Net.PooledStream.Read(Byte[] buffer, Int32 offset, Int32 size) 
    [2/4/2015 4:16:15 AM]    at System.Net.Connection.SyncRead(HttpWebRequest request, Boolean userRetrievedStream, Boolean probeRead) 
    [2/4/2015 4:16:15 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 4:16:15 AM]    at System.Net.HttpWebRequest.GetResponse() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequestAndGetResponse(HttpWebRequest webRequest, WebException& webException) 
    [2/4/2015 4:16:15 AM]    --- End of inner exception stack trace --- 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.ReadResponse(HttpWebResponse webResponse, WebException webException) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpWebRequest.SendRequest() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpRequestChannel.Request(TfsMessage message, TimeSpan timeout) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, TimeSpan timeout, Object[]& outputs) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters, Object[]& outputs) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation operation, Object[] parameters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.Repository4.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayer.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType, Boolean generateDownloadUrls,
    Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.WebServiceLayerLocalWorkspaces.QueryItems(String workspaceName, String workspaceOwner, ItemSpec[] items, VersionSpec version, DeletedState deletedState, ItemType itemType,
    Boolean generateDownloadUrls, Int32 options, String[] itemPropertyFilters, String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec[] itemSpecs, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options, String[] itemPropertyFilters,
    String[] itemAttributeFilters) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItems(ItemSpec itemSpec, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, DeletedState deletedState, GetItemsOptions options) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, GetItemsOptions options) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer.GetItem(String path, VersionSpec version, Int32 deletionId, Boolean includeDownloadInfo) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.loadCachedItem() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.get_CachedItem() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsMigrationItem.Download(String localPath) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.downloadItem(BatchedItem itemToBeDownloaded) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendAdds() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.pendChanges() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.BatchingContext.Flush() 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.Flush(BatchingContext context) 
    [2/4/2015 4:16:15 AM]    at Microsoft.TeamFoundation.Migration.Tfs2010VCAdapter.TfsVCMigrationProvider.ProcessChangeGroup(ChangeGroup group) 
    [2/4/2015 4:16:15 AM]  
    [2/4/2015 4:16:15 AM]  
    [2/4/2015 4:16:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Stopping current trip for session: eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 
    [2/4/2015 4:16:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Recorded sync point for migration source fd615486-5fdc-4377-8a10-f130e635df3b of session eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 with Source High Water Mark 'HWMDelta' value of
    '22084' 
    [2/4/2015 4:16:15 AM] TfsIntegrationService.exe Information: 0 : VersionControl: VersionControl: Session stopped! 
    [2/4/2015 4:16:45 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Pipeline flow from 87766026-7889-4150-b6ff-bb09b4749ad6 to fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:45 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:45 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating linking delta for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:45 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:46 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating migration instructions for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:46 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Starting basic conflict detection 
    [2/4/2015 4:16:46 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finishing basic conflict detection 
    [2/4/2015 4:16:46 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 4:16:46 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Post-processing delta table entries from the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:46 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating to the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:46 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Processing linking delta 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating links to the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Recorded sync point for migration source 87766026-7889-4150-b6ff-bb09b4749ad6 of session eeb13092-fc5e-4ca6-89bd-ea30973c9eb0 with Source High Water Mark 'HWMDelta' value of
    '68541' 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl:  
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Pipeline flow from fd615486-5fdc-4377-8a10-f130e635df3b to 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating linking delta for the migration source fd615486-5fdc-4377-8a10-f130e635df3b 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating delta tables for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Generating migration instructions for the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Starting basic conflict detection 
    [2/4/2015 4:16:48 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finishing basic conflict detection 
    [2/4/2015 4:16:48 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 4:16:48 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Target AnalysisProvider detecting conflicts in ChangeGroup #134544 
    [2/4/2015 4:16:48 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Post-processing delta table entries from the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:48 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Migrating to the migration source 87766026-7889-4150-b6ff-bb09b4749ad6 
    [2/4/2015 4:16:48 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Loading 50 ChangeGroup(s) 
    [2/4/2015 4:16:48 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Processing ChangeGroup #132730, change 22081 
    [2/4/2015 4:17:03 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Finished scheduling! 
    [2/4/2015 4:29:47 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 1000 of 35969 Adds 
    [2/4/2015 4:43:54 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 2000 of 35969 Adds 
    [2/4/2015 4:56:26 AM] TfsIntegrationService.exe Information: 0 : VersionControl: Now processing 3000 of 35969 Adds 
    [2/4/2015 5:10:25 AM] TfsIntegrationService.exe Warning: 0 : VersionControl: Unable to read data from the transport connection: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection
    failed because connected host has failed to respond. 
    [2/4/2015 5:10:25 AM] TfsIntegrationService.exe Information: 0 : VersionControl: System.IO.IOException: Unable to read data from the transport connection: A connection attempt failed because the connected party did not properly respond after a period of
    time, or established connection failed because connected host has failed to respond. ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection
    failed because connected host has failed to respond 
    [2/4/2015 5:10:25 AM]    at System.Net.Sockets.Socket.EndReceive(IAsyncResult asyncResult) 
    [2/4/2015 5:10:25 AM]    at System.Net.Sockets.NetworkStream.EndRead(IAsyncResult asyncResult) 
    [2/4/2015 5:10:25 AM]    --- End of inner exception stack trace --- 

    Hi Nachiket,
    From the error message, seems the transport connection was lost during the migration process. You have to make sure the connection works between the two side. You  can delete the team foundation cache and try again. Also refer the blog to see if the
    issue cab be resolved:
    http://blogs.msdn.com/b/taylaf/archive/2010/02/10/team-foundation-server-unable-to-read-data-from-the-transport-connection-an-existing-connection-was-forcibly-closed-by-the-remote-host.aspx
    You can also exclude some of the pending chagnes items, and do the migrate for less pending changes each time if you can migrate thousands adds. Also refer to this
    page to limit the uploadchunksize. If the issue persists, please elaborate more details about your scenario.
    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.

  • Issue in Invoking an Updatable View with Instead of Trigger

    Hi,
    I am trying to insert a record using Updatable View with Instead of Trigger. When i try to save the data, i get the below error:
    java.sql.SQLException: ORA-01403: no data found
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:213)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1075)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1466)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3752)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3887)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:9323)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1508)
    at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:172)
    at oracle.jbo.server.OracleSQLBuilderImpl.doEntityDML(OracleSQLBuilderImpl.java:432)
    at oracle.jbo.server.EntityImpl.doDMLWithLOBs(EntityImpl.java:8566)
    Can someone help me resolve this issue?
    Also it would be great if you can share Sample codes for Invoking an updatable view with instead of trigger on Save/commit.
    Regards,
    Jeevan

    As a trigger is executed in the db and not in your app it's really hard to help as you did not give any useful information.
    Have you read this blog http://stegemanoracle.blogspot.com/2006/03/using-updatable-views-with-adf.html ?
    Timo
    Edited by: Timo Hahn on 22.09.2011 09:15
    And my friend google also found http://technology.amis.nl/blog/1447/adf-business-components-resfresh-after-insertupdate-and-instead-of-triggers

  • SharePoint 2013 List View with query string filter stops working after editing view from browser

    I have created one list definition in which I have added one list view which will filter data from query string paramater
    So when I am creating list from my list definition, view with query string filter is working fine.
    But when I am modifying view from UI(I am not changing any thing , just opening "Modify View" page and then click on "Save" button), view gets stop working means it's not filtering data based on query string
    Any suggestion what I am missing?
    Below is my list view schema
    <View BaseViewID="11" Type="HTML" TabularView="FALSE" WebPartZoneID="Main" DisplayName="$Resources:OIPLBScoreCard,viewFilterTasksByTarget;" MobileView="True" MobileDefaultView="False" Url="FilteredTasks.aspx" SetupPath="pages\viewpage.aspx" DefaultView="FALSE" ImageUrl="/_layouts/15/images/issuelst.png?rev=23">
    <Toolbar Type="Standard" />
    <ParameterBindings>
    <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)" />
    <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)" />
    <ParameterBinding Name="TargetId" Location="QueryString(TargetId)" />
    </ParameterBindings>
    <JSLink>hierarchytaskslist.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <JSLink>clienttemplates.js</JSLink>
    <RowLimit Paged="TRUE">100</RowLimit>
    <ViewFields>
    <FieldRef Name="Body"></FieldRef>
    <FieldRef Name="Title"></FieldRef>
    <FieldRef Name="StartDate"></FieldRef>
    <FieldRef Name="DueDate"></FieldRef>
    </ViewFields>
    <ViewData>
    <FieldRef Name="PercentComplete" Type="StrikeThroughPercentComplete"></FieldRef>
    <FieldRef Name="DueDate" Type="TimelineDueDate"></FieldRef>
    </ViewData>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="oipscTargetLookup" LookupId="TRUE"/>
    <Value Type="Lookup">{TargetId}</Value>
    </Eq>
    </Where>
    </Query>
    </View>
    I have one lookup field from "Target List" in my source list and I want to filter data based on that lookup field.

    Hi JayJT,
    The Miscellaneous is located in the contact list that you used for the connection.
    So , you need to edit the page, then edit the contact list that you used, in the web part properties of the contact list, you will find Miscellaneous, then expand it and select ‘Server Render’ .
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • View with Bind Variable and ADF table

    Hi all,
    Please note what i have noticed. I created a view with a bind parameter, overriden the prepareSession of my Application Module to set the bind parameter and execute the query. I then created a simple jsf page and included the view as an adf read-only table. When i run the page, the prepareSession is called, sets the bind parameter, however the selected record of the table is always the second record (Not the first record).
    This behaviour can be reproduced with the HR schema. Please follow the below instructions for reproducing the problem.
    1. Create a Fusion Web Application (ADF).
    2. Create business components from tables.
    3. Create a new connection with the HR schema.
    4. Import the Departments table as an entity and then click finish.
    5. Create a view based on the Departments entity.
    6. Modify the Query to include a where clause (where DDepartmentsEO.DEPARTMENT_NAME LIKE :BindParam)
    7. Provide an order by clause (DepartmentsEO.DEPARTMENT_ID DESC)
    8. Creata a bind variable named "BindParam" of type string.
    9. Create an Application Module and include the view object.
    10. Open the Application Module Class and override the prepareSession method
    11. include the following code after super.prepareSession(session):
    ViewObject myView = this.getDepartments1();
    myView.setNamedWhereClauseParam("BindParam", "%");
    myView.executeQuery();
    12. Create a jsf page
    13. Drag the view object on the page as an adf read-only table, selecting the Row Selection, Sorting and Filtering
    14. Run the page.
    You will see that instead of the first record being selected, the second record in the table is selected.
    Can anyone please help me?
    Thank you

    First of all i would like to thank you for replying to my thread.
    Secondly, i would like to inform you that the example that i have provided is just for REPRODUCTION purposes.
    The real scenario has to do with setting the where clause with the authenticated user so that the view will query for data only associated with the authenticated user.
    The only way to overcome this behaviour is to include a view action (namedWhereClause in the page definition)
    However, this is not how i want to implement this. This was working properly in 10g

Maybe you are looking for

  • Error whille Order copy from 11i to R12: INV-RSV TARGET ROW EXISTS

    Hi Gurus, I have copied the order from 11i to R12 using OE_ORDER_PUB.process_order api. Once the order is copied to R12, I am making the changes in 11i and now while the order is copying with the changes to R12 api is failing with the error message,

  • Images not displaying when selecting it from real table

    Case is, I have some HTML in a table, help texts for that matter. It has some images in it defined like that: ... <img src="&COMPANY_IMAGES.picture.gif"> ... But the &COMPANY_IMAGES. substitution does not take place. When testing, I found out that se

  • Unable to shrink undo tablespace... Help!

    Hi, I have problems to shrink the system undo tablespace, which has grown up to 14 GB. I use 9.2. Table space owner is 'SYSTEM', undo_management = AUTO. I tried to shrink the greatest rollback segments by the commands ALTER SESSION SET UNDO_SUPPRESS_

  • TreeCellEditor and isCellEditable method

    I'm confused about how to handle tree cell edits. See the example program below. As you click around the tree, note that the isCellEditable method is called on the cell you are leaving, and not on the cell you are going to. This causes the cell you a

  • Object Casting

    hi ,i have a question for .Base on this example below , i need to understand some casting basic .I understand how premitives values widening rules works but not on object casting rules. Question 1. Okay ,base on the example below why 'c=(Test) a' wil