Questions tagged [data-transfer]

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Examples of such channels are copper wires, optical fibres, wireless communication channels, storage media and computer buses. The data are represented as an electromagnetic signal, such as an electrical voltage, radiowave, microwave, or infrared signal.

While analog transmission is the transfer of a continuously varying analog signal, digital communications is the transfer of discrete messages. The messages are either represented by a sequence of pulses by means of a line code (baseband transmission), or by a limited set of continuously varying wave forms (passband transmission), using a digital modulation method. The passband modulation and corresponding demodulation (also known as detection) is carried out by modem equipment. According to the most common definition of digital signal, both baseband and passband signals representing bit-streams are considered as digital transmission, while an alternative definition only considers the baseband signal as digital, and passband transmission of digital data as a form of digital-to-analog conversion.

Data transmitted may be digital messages originating from a data source, for example a computer or a keyboard. It may also be an analog signal such as a phone call or a video signal, digitized into a bit-stream for example using pulse-code modulation (PCM) or more advanced source coding (analog-to-digital conversion and data compression) schemes. This source coding and decoding is carried out by codec equipment.

Wikipedia: http://en.wikipedia.org/wiki/Data_transmission

915 questions
6
votes
1 answer

Sending Data To Server While App is Running in Background in iOS 7

I wish to send a little data (location Co-ordinates) to my server from the application which is running in background in iOS 7. I am using NSURLSessions for this purpose. I am confused regarding the type of session I should use for this purpose…
aMother
  • 893
  • 8
  • 19
6
votes
2 answers

What is the easiest way to export a SQLServer 2000 database to XML?

I have an old SQL Server 2000 database that I want to get into XML so I can from there import parts of it into an SQLite database for a PHP website. I've accessed the SQL Server 2000 database via SQL Server Management Studio 2008 Express, I can open…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
6
votes
5 answers

How would one connect two clients behind firewalls?

When using an instant messaging application like Live Messenger or the desktop client for Google Talk, computers can transfer files between one another. I can't say for sure, but I'm fairly certain that the data being transferred between computers…
user149100
  • 1,089
  • 3
  • 12
  • 16
5
votes
1 answer

htons & ntohl in datatransfer

I have always wondered, why don't I have to use htons/ntohl when using write/read? (At least all examples I have seen so far don't.) How do I know that the bytes received have the correct endianness?
gaddomn
  • 125
  • 2
  • 4
5
votes
6 answers

Convert Access Database to SQL Microsoft DTS - Data Type '130' not in mapping file

I am trying to export a large Access .mdb database to an SQL Server database and have been running into a problem where Microsoft DTS does not recognise the data type of a particular type of field in the access database. I have taken a look at the…
TGuimond
  • 5,475
  • 6
  • 41
  • 51
5
votes
1 answer

Creating a table in oracle using sql server table

I have a table in SQL Server 2008 R2. It contains 1M or more records. Now I want to create a table in oracle with the same content that is in SQL Server 2008 R2.
Navin
  • 411
  • 3
  • 9
  • 17
5
votes
2 answers

Can my iphone app communicate with a connected computer?

Preferably, this would be a computer connected via cable, but if there's a way to do it over wifi then this would also be useful. I'm wondering if it's possible to send messages between them? Or if i had a mac app and an iPhone app, could I…
Andrew
  • 15,935
  • 28
  • 121
  • 203
5
votes
3 answers

How to only dispatch FileList from dataTransfer after File items are loaded

I'm using a Node package module called react-dropzone and React-Redux to allow users to drag a file onto the window and display the file info. The react-dropzone component is giving me the FileList from the standard event.dataTransfer.files. The…
Mitch Conquer
  • 101
  • 1
  • 7
5
votes
1 answer

What's the best practice for transferring huge binary files with ASP.NET?

Consider an ASP.NET page with this code: while (read) { Response.OutputStream.Write(buffer, 0, buffer.Length); Response.Flush(); } The application should be highly performance-tuned and handle thousands on concurrent requests and the main…
Xaqron
  • 29,931
  • 42
  • 140
  • 205
5
votes
2 answers

What is the best way to transfer an object between two iOS devices running the same app?

I'm trying to give my iOS app the ability to transfer an object to another iOS device running the same app. The object is on the order a few thousand KB of memory. Does anyone have a suggestion as to how to do this? I am considering using FTP,…
Michael
  • 1,009
  • 1
  • 9
  • 12
5
votes
3 answers

What is the easiest way to transfer Oracle database from one PC to another?

i want to transfer my oracle database to another PC. What is the easiest way to do it? Are there any GUI tools to do it?
Nubkadiya
  • 3,285
  • 13
  • 40
  • 45
5
votes
2 answers

Loading Neo4j database dump (neo4j-shell)

My database was affected by the bug in Neo4j 2.1.1 that tends to corrupt the database in the areas where many nodes have been deleted. It turns out most of the relationships that have been affected were marked for deletion in my database. I have…
retrography
  • 6,302
  • 3
  • 22
  • 32
5
votes
4 answers

What is the best way to move files from one server to another with PHP?

I want to setup a CRON that runs a PHP script that in turn moves XML file (holding non-sensitive information) from one server to another. I have been given the proper username/password, and want to use SFTP protocol. The jobs will run daily. There…
user4903
5
votes
4 answers

Any .NET implementation of Concise Binary Object Representation(CBOR)?

I'm on the look-out for any implementations of this new binary data representation.
redcalx
  • 8,177
  • 4
  • 56
  • 105
5
votes
2 answers

send multiple files using bluetooth in android programmatically

I am working on an android application that will transfer multiple image files to another mobile device through bluetooth connection. I have used following transfer method in android: ArrayList uris=new ArrayList(); String…
user1653853
  • 51
  • 1
  • 2