The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
19 views

How best to Merge Git Changes over SSH

I have a feeling I'm going about this the wrong way. I have a software project with 3 developers all working on their own GIT Repo making frequent changes. They're pushing their changes to the ...
0
votes
2answers
57 views

Perl script for combining 2 files with multiple entries

I have a tab-delimited text file like this: contig11 GO:100 other columns of data contig11 GO:289 other columns of data contig11 GO:113 other columns of data contig22 GO:388 other columns of data ...
1
vote
1answer
126 views

Trying to merge contents of several text files as a cell each in a spreadsheet

Essentially: I have several (400) text files each with a numerical file name (ie 12345.txt). Each text file contains some text(Long description style, plain text paragraphs, etc). I am trying to ...
2
votes
2answers
84 views

Merging two/three records in rails

I want to merge two profiles into the one. What is the best way to do this in rails. I have two profiles say User1 and User2 and there are at least 30 tables associated with them. Now i want to ...
0
votes
2answers
120 views

IOS: Merging and updating NSMutableArray with NSMutableArray from webservice

I'm currently using two JSON web-services to fill two separate NSMutableArrays asynchronously. Local Stock & Supplier stock The first web-service retrieves local stock, the other one retrieves ...
0
votes
0answers
163 views

Stata merging with different variable types?

So I am trying to merge 14 different datasets together. They have many overlapping variables, which, from what I understand, are automatically "merged" even if I don't specify them as key variables. ...
2
votes
2answers
113 views

Updating data.frame from another data.frame with different columns in R

Given two data frames old.df = data.frame(SampleNo=c('A1', 'B4', 'C5', 'D4'), Result=c(rep("Successful",4)), NoUnit = c(rep(4,4))) new.df = data.frame(SampleNo=c('A1', 'C5', 'D4', 'E4'), ...
7
votes
5answers
315 views

Performance with time related algorithm

I have a function that take 2 arrays ($schedule, $remove), both are arrays of days with time inside, it will remove time from the schedule . Now this function is working fine if I have between 1 ...
0
votes
0answers
106 views

Android endless ListView merging results

I'm developing my first android application and have a question about "Endless" list. My application should allow users to perform different searches. Search results might contain hundreds or ...
0
votes
3answers
195 views

sorting list of lists that contain both sorted and unsorted lists

There are k lists, which contain m unsorted lists (0 <=m < k). How can the lists be merged into a single large list which should also be sorted, No information provided about the lists that are ...
1
vote
3answers
111 views

Any efficient BlockingQueue implementations that allow combining of entries?

Are there any efficient (without synchronize everything) implementations of java.util.concurrent.BlockingQueue that allow combining of entries? By combining I mean to merge incoming item with ...
1
vote
3answers
176 views

SQL issue when merging two databases with foreign keys

I have a database at a workspace A and workspace B. Online there is a copy of this database which is always updated from both workspaces. Also both workspaces can need to update their databases ...
0
votes
1answer
35 views

Is indexing is based on system & database or just database?

I developed a Windows application for a company with MySQL database. The company is using it for all branches. They have a regular practice of sending the database to Head Office for merging ...
1
vote
1answer
1k views

Reading text and numeric data from .dat file in matlab

Here i am sharing one of my data which are in .dat file. I have 16162 different files. I merged all into one file and want to read it in matlab and need to extract three parameter's values from a ...
2
votes
2answers
398 views

Core Data, iCloud, and stock objects

I'm updating a local Core Data-driven app to support iCloud. One challenge I anticipate is around what I'm calling "stock objects" -- seed data the app provides at first launch that 99% of users will ...
10
votes
2answers
368 views

array_replace() vs. union operator in PHP

In PHP, (given that $a, $b and $c are arrays) is $a = array_replace($b, $c) always functionally identical to $a = $c + $b? I can't seem to find any edge cases that would indicate otherwise. (just ...
0
votes
1answer
40 views

Merging 3 lists (or more)

I have 2 lists/arrays of strings a list of currencies: String [] currencies = {EUR, USD, CAD, etc}; a list of time periods: String [] periods = {"T","O","SN", "1M","1Y","1W", ...
2
votes
3answers
5k views

AS3 Fastest way to merge multiple arrays

I'm trying to write a function where I can specify any amount of array, and the return value will be an array containing the contents of all of the specified arrays. I've done this, but it seems like ...
3
votes
3answers
397 views

Merging tables that are sorted differently with R

I have 2 big tables. One with identifiers (unsorted), another with a list of identifiers (containing all which are in the first table) plus the associated values for one variable. I want to add a ...
0
votes
2answers
333 views

Merge flash site into one executable

I need somehow to merge flash site into one executable. Site consists of: index.html images sounds pdfs etc. After clicking on a merged file, index.html is needed to be opened. Is this possible? ...
0
votes
1answer
110 views

Multiple data sources: data storage and retrieval approaches

I am building a website (probably in Wordpress) which takes data from a number of different sources for display on various pages. The sources: A Twitter feed A Flickr feed A database on a remote ...
0
votes
2answers
411 views

Matching and merging text files programmatically

I would like to merge an EDL (edit decision list) text file with another text file that contains subtitles. The EDL is generated from a video editing program, Final Cut Pro, while the text file is ...
0
votes
1answer
662 views

merging 2 hdf5 files with pytables

ptrepack is almost what i want except that it only has the options to overwrite or ignore duplicate paths. the example below illustrates what i want to happen with the structures input file one / ...
0
votes
2answers
2k views

MySQL merge tables with different structure

I have two databases with different structure. Table 1: ch_code ch_def ch_weight Table 2: address ch_code I need to merge this two tables, so the structure would look like: ch_code ...
0
votes
2answers
156 views

Analyzing data from same tables in diferent db instances

Short version: How can I map two columns from table A and B if they both have a common identifier which in turn may have two values in column C Lets say: A --- 1 , 2 B --- ? , 3 C ----- ...
2
votes
3answers
17k views

How to merge two databases in SQL Server?

Both databases have the same schema, but they may experience conflict with primary key in some tables. So I want them to just ignore the duplicate rows, and continue merging further.