Click here to Skip to main content
15,894,955 members
Everything / Transfer

Transfer

Transfer

Great Reads

by Divyant Kulshrestha
This tip is useful when we have to move data from Oracle database to SQL Server database or vice-versa using SSIS.
by OKarpov
How to use ASM in C#.NET and most fast memory copy method
by Bjørn
A simple explorer and file transfer for files over a telnet connection
by Shivprasad koirala
In this article we will explain about Data Transfer Object Design pattern in C#

Latest Articles

by Divyant Kulshrestha
This tip is useful when we have to move data from Oracle database to SQL Server database or vice-versa using SSIS.
by Shivprasad koirala
In this article we will explain about Data Transfer Object Design pattern in C#
by OKarpov
How to use ASM in C#.NET and most fast memory copy method
by Bjørn
A simple explorer and file transfer for files over a telnet connection

All Articles

Sort by Score

Transfer 

26 Sep 2018 by Dave Kreskowiak
Your code is written to expect an entire message in one "receive packet" but that's not how communication, over ANY network, works. Your receive code has to buffer whatever is gets and keeps on adding to the buffered content on subsequent receive events until a complete message has been...
7 Dec 2015 by Divyant Kulshrestha
This tip is useful when we have to move data from Oracle database to SQL Server database or vice-versa using SSIS.
7 Feb 2014 by S Houghtelin
Here are some examples over at MSDN for you to check out. If you scroll down there are some web specific samples for you to look into.Networking Samples for .NET v4.0 [^]There is a simple example here:How can I send data over the internet using a socket?[^] (I apologise to CP for...
2 Nov 2015 by Member 12108821
I have a Live database on Server1 on which data is feeded frequently(daily). I need to access this on different sever(Server2) which needs to be updated every week with the data from Server1. How do we do this?I have no idea of how to begin. A bit of investigation helped me know about Sql...
2 Nov 2015 by amagitech
Example:Sunday 00:00 get an backup from databaseWrite an console program to update your database to another server.And use windows scheduled task to starting program sunday 00:15;
11 Dec 2015 by User 10668410
You haven't really given enough information but at a glance of your implementation i would probably just do one of these and not even bother with managing the threads myself.void DoStuff(){ // Has been called from a "wrong" thread? if (InvokeRequired) { // Dispatch...
12 May 2016 by Member 12387639
I need to transform between two different database schemas the same data. For example i have one table in old schema looking like this:OLD EMPLOYEE TABLEUSER_ID - NUMBER (PRIMARY KEY)FIRST_NAME - VARCHAR(50), (NOT NULL)LAST_NAME - VARCHAR(50), (NOT NULL)CITY - VARCHAR(50), (NOT...
12 Mar 2016 by RickZeeland
A trick you could use is something like:SELECT * INTO Schema2.NewTable FROM Schema1.OldTableBut I think you already have the tools to migrate data between two schema's, take a look at the Bulk Copy utility (BCP) that's included with SQL Server.With BCP you can export and import the...
7 Apr 2016 by Eswar1988
I am trying to send image through wcf from my windows application,See my sample code below:Windows code:private void BtnRegister_Click(object sender, EventArgs e) { FileStream fs; byte[] imgByteArrFriends; RetunImageBytes(PathFriends, out...
7 Apr 2016 by Richard MacCutchan
fs.Read(imgByteArr, 0, Convert.ToInt32(fs.Length));Why are you trying to convert an integer into an integer? You will end up with an invalid number and thus not read all the data.See FileStream.Length Property (System.IO)[^].
12 May 2016 by SMerrill88
Start the SQL Server Import and Export WizardIn your start menu SQL Server section you have a program which makes connections to both schemas and transfers the data between them with a wizard. Easy!
26 Sep 2018 by w8Ball
Hello. I have a tiny Arduino sketch that sends random data via Bluetooth Module (I am using HC-06) every 5 seconds and I have a VB.NET windows Application that receives and manages the data. The data would look like this for example: "(255**255**255)" My VB.Net Application receives current data...
9 Jul 2020 by AndyUK62
Hi there I have an issue I would love some help with please. I am writing an app which sends a database held on the PC to a server. The app is written in VB.net and the server uses Filezilla. There are approx. 380 files to transfer, mostly all...
8 Jul 2020 by Garth J Lancaster
I always thought (maybe incorrectly but anecdotally) FTP was a 'network greedy' protocol - and at some stage your going to hit max traffic with small files. I wonder if it would be better if you sent larger aggregations of files - re-zip into...
9 Jul 2020 by MadMyche
This may be by design at the server; hosts can and do place limits or throttle the services. DESTINATION LIMITS One major consideration is the maximum number of connections your destination will allow. Many (nearly all?) sizable FTP sites will...
19 Dec 2014 by OKarpov
How to use ASM in C#.NET and most fast memory copy method
2 Jun 2014 by Bjørn
A simple explorer and file transfer for files over a telnet connection
6 Nov 2015 by Shivprasad koirala
In this article we will explain about Data Transfer Object Design pattern in C#
29 Nov 2013 by Tharaka MTR
How to transfer ownership of the Android application
6 Feb 2014 by agent_kruger
I have tried to work with sockets which work over LAN but how to use them to transfer data over internet. cannot find a good example please help me?
10 Dec 2015 by sp_suresh
In UI i calls ProcessFiles method in Backgroundworker class.In this processfiles method i have created threads with monitorque method which is in worker class.Now i want to pass data to UI when there may be an multiple errors for each thread.How should i achieve this? I am placing code...
7 Jan 2018 by Member 13611541
i need to create a software on the monitor connected to the RPi. i need a code that can send data from my raspberry pi to the external connected microcontroller(say 8051) and store the data in it. then i can recollect the data from the microcontroller. What I have tried: i have the hardware...