Questions tagged [mapping]

Corresponding every element of a given set to a unique element of another set or it may refer to a process of creating data element mappings between two distinct data models (objects)

In this context, mapping refers to the process of creating data element mappings between two distinct data models (objects).

When it refers to mapping in data integration, it is a set of source and target definitions linked by the transformation objects that define the rules for data transformation. Mappings represent the data flow between sources and targets.

Data mapping is typically used as a first step for a wide variety of data integration tasks such as:

  1. Data transformation or data mediation between a data source and a destination

  2. Identification of data relationships as part of data lineage analysis

  3. Replication of data between two entities with different key-value assignments

  4. Discovery of hidden sensitive data such as the last four digits social security number hidden in another user id as part of a data masking or de-identification project

  5. Consolidation of multiple databases into a single data base and identifying redundant columns of data for consolidation or elimination.

8349 questions
2
votes
2 answers

ArcGIS MapControl and Ms Access delay map re-draw?

This pertains to embedding ESRI MapControls into Access Database Forms. I have two access files, split into a frontend and backend. My backend is also a PersonalGeoDatabase that ArcGIS uses to store a feature class for display on a From embedded…
slawley
  • 61
  • 1
  • 6
2
votes
1 answer

Map an object in List

Assume the getter() method returns List. Assume the Object class has getFirstName(), getLastName(), and trying to do the following. public List<> getSomethingElse(@QueryParam("Id") Long Id) { getter(id).stream().map(p ->…
2
votes
3 answers

Reconstructing 3D locations of corresponding points

I'm working on a project where I would like to reconstruct the 3D locations of feature points I've extracted from my camera images. The idea is to: Make a camera recording (Greyscale information, VGA size: 640 x 480) Extract feature points in the…
Xilconic
  • 3,625
  • 3
  • 22
  • 34
2
votes
1 answer

NHibernate many-to-one mapping: If parent is null, set foreign-key as empty Guid instead of null

What I am trying to is really quite straigh forward, but I cannot seem to get the mapping right with NHibernate. I am working up against a database with parent and child objects. The child objects have a foreign key reference to the primary key of…
2
votes
2 answers

Automapper Set Decimals to all be 2 decimals

I want to use AutoMapper to link up two of my objects. It is working well but now I want to format my decimal items to all round to 2 decimals. This is what I have. What am I doing wrong? Mapper.CreateMap() .ForMember(x =>…
colemande
  • 392
  • 1
  • 5
  • 17
2
votes
4 answers

Symfony 3.4.11 doctrine Notice: Uninitialized string offset: 0

I am using Symfony and I upgrade to 3.4.11. But I have a big problem. When I run the command: php bin/console doctrine:schema:update --dump-sql in the terminal I have the next error: In ClassMetadataInfo.php line 1400: Notice: Uninitialized…
gabrielrincon
  • 336
  • 2
  • 12
2
votes
4 answers

Hibernate One-To-Many Unidirectional on an existing DB

Hello Stack Overflow Experts, i have need of your expertice: I am trying to use Hibernate on an Existing DB. Currently im trying to load a User object and a list of UserData objects that go along. in the DB the (simplified) layout is | User …
JesperGJensen
  • 401
  • 8
  • 23
2
votes
2 answers

Get mapping.txt file from the Proguard (Xamarin.Android)

After the release build I'd like to get mapping.txt file which could be done with Proguard. I have proguard.cfg (BuildAction is set to ProguardConfiguration) file added to the project with next content: -dontobfuscate -ignorewarnings -keep class...…
Bogdan
  • 107
  • 8
2
votes
1 answer

JPA StoredProcedureQuery: pass UUID as a parameter

I use JPA 2.1 (Hibernate), Postgres 9.6, and I need to pass java.util.UUID as a parameter to StoredProcedureQuery like this: StoredProcedureQuery proc = em.createStoredProcedureQuery(myProc) .registerStoredProcedureParameter(0, UUID.class,…
NikS
  • 55
  • 7
2
votes
0 answers

How to map dynamic JSON to object?

How do you create objects when beforehand you don't know all it's properties? I want to create a framework which works with 2 files: Input JSON file: Your JSON objects in a JSON file. Mapping JSON file: The mapping for these JSON objects in a JSON…
avregi
  • 117
  • 1
  • 6
2
votes
1 answer

elasticsearch mapping for keywords

I want to index document keywords as array datatype, not a string, something like: keywords:['key1', 'key2',...] and from elasticsearch documentation you can have keywords field as a string: PUT my_index { "mappings": { "_doc": { …
Saro
  • 47
  • 1
  • 9
2
votes
0 answers

Hibernate error: one-to-one mapping on superclass and subclass

I'm working on a project with Hibernate and MySQL, use annotation for mapping database to data object model. I need to mapping one-to-one between superclass and subclass on ID primary key of their classes. I've modified the sample of this tutorial:…
Đinh Hồng Châu
  • 4,700
  • 14
  • 47
  • 87
2
votes
1 answer

mapping similar text strings in between two pandas dataframes

I have dataset named data_feed contains feedbacks given as: feedback Fast Delivery. Always before time.Thanks I have order brown shoe .And I got olive green shoe …
James
  • 486
  • 4
  • 15
2
votes
4 answers

How to find all read-write memory address of a process in Linux/UNIX with C/C++ language?

Through /proc file system , it's probable to read memory mappings with /proc/PID_PROCESS/maps , but is there any native APIs that dedicated for this function in C/C++ ? i.e to find out memory address that are writable and readable for process with…
daisy
  • 19,459
  • 24
  • 111
  • 218
2
votes
4 answers

Copy Files quickly from a mapped network drive

Can anyone tell me how to quickly copy Files from a mapped network drive? The windows Copy Paste works very slow and hampers the performance of the system. I have used XCOPY source destination /i /s /z /q This was quick enough and copied a few…
user46795
  • 2,513
  • 3
  • 24
  • 30
1 2 3
99
100