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
4
votes
1 answer

Instruction transfer between CPU and GPU

I'm looking for information related to how CPU moves program code to the GPU when working with GPGPU computation. Internet is plenty of manuals about data transfer, but not about instruction/program loading. The question is: program is handled by…
amnl
  • 71
  • 3
4
votes
2 answers

SSIS data import with resume

I need to push a large SQL table from my local instance to SQL Azure. The transfer is a simple, 'clean' upload - simply push the data into a new, empty table. The table is extremely large (~100 million rows) and consist only of GUIDs and other…
TheNextman
  • 12,428
  • 2
  • 36
  • 75
4
votes
2 answers

IPC through writing into files?

I have a question about Inter-process-communication in operating systems. Can 2 processes communicate with each other by both processes opening the same file (which say was created before both processes, so both processes have the file handler) and…
xyz
  • 8,607
  • 16
  • 66
  • 90
4
votes
4 answers

How to invoke an on-demand bigquery Data transfer service?

I really liked BigQuery's Data Transfer Service. I have flat files in the exact schema sitting to be loaded into BQ. It would have been awesome to just setup DTS schedule that picked up GCS files that match a pattern and load the into BQ. I like the…
AIK DO
  • 288
  • 1
  • 4
  • 13
4
votes
1 answer

Transform relationship pairs into a matrix

I have one data frame like this. The id of each line is unique and the type defines the group of the id. id type a a1 b a1 c a2 d a3 e a4 f a4 I want to make a matrix like below. The value would be 1 if the two id belong to the same…
niuyw
  • 43
  • 3
4
votes
1 answer

Cost of copying files between Amazon S3 buckets in different Accounts

I want to copy the S3 files in my account to a different AWS account. How do I copy without a data transfer fee? Example command: aws s3 cp s3://sourceBucket/file s3://targetBucket/ Does it transfer files over the Internet or does AWS transfer over…
miralve
  • 43
  • 1
  • 5
4
votes
3 answers

Live data transfer over USB

I'm trying to figure out how to transfer frames rendered on a computer to an android phone. Wifi and Bluetooth aren't fast enough for a smooth framerate, but the data transfer speed across the USB connector is more than enough (up to 480 megabytes/…
4
votes
8 answers

Large amount of data - what is the best way to send them?

we have this scenario: A server which contains needed data and client component which these data wants. On the server are stored 2 types of data: - some information - just a couple of strings basically - binary data We have a problem with getting…
Vitek
  • 628
  • 3
  • 8
  • 15
4
votes
3 answers

Transfer data from partner continuously

I’ve been tasked with implementing a system for continuously receiving large amounts of data from a partner. The data schema on the partners’ side is different from ours, so some transformation has to take place when the data is received and…
Jakob Gade
  • 12,319
  • 15
  • 70
  • 118
4
votes
1 answer

Difference between Data transfer cost and Bandwidth costs in AWS

What is the difference between Data transfer costs and Bandwidth costs in AWS?? When I view my AWS bills, I see there are 2 types of expenses in Data Transfers tab, one of Data Transfer and one on Bandwidth costs. I tried to search a lot on this but…
Hardik Kamdar
  • 2,561
  • 4
  • 16
  • 21
4
votes
1 answer

In bluetooth low energy, Can observer scan the peripheral device?

I study the bluetooth low energy. During studying, I have a question. As I know, possible data transaction Role is observer-broadcaster(connectionless) and central-peripheral(connection) in BLE. But, What I wonder is data transaction between…
user3859506
  • 51
  • 1
  • 3
4
votes
1 answer

copyfile function on Mac OS X

I am working on a program that copies files and folders from point a to point b, it's pretty simple for the most part. I decided to use the copyfile function to do the actual copying because it handles all of the metadata. For whatever reason there…
ATSOTECK
  • 79
  • 1
  • 5
4
votes
1 answer

Data transfer between application outside profile and inside profile in Android Lollipop

Question related to Android for Work. My application was a device Admin privileged app and now I have modified the code which creates a managed work profile and sets itself as the profile owner. The question is, if I upgrade my application, it…
4
votes
4 answers

Bluetooth transfer App stops after using InputStream.read() with no error

I am trying to make a file transfer Bluetooth app work using these…
CoderRoller
  • 1,239
  • 3
  • 22
  • 39
4
votes
3 answers

Transferring objects between two independed applications (C#)

is it possible to transfer a object from one application to another (in C#)? I'm working with a CAD API. The initialization of that API takes a few seconds (10 - 15). Would be nice if I could initialize the object only once in App1 and call it up…
iDog
  • 361
  • 1
  • 3
  • 13