The core-data-migration tag has no wiki summary.
13
votes
5answers
1k views
Example or explanation of Core Data Migration with multiple passes?
My iPhone app needs to migrate its core data store, and some of the databases are quite large. Apple's documentation suggests using "multiple passes" to migrate data to reduce memory use. However, the ...
10
votes
1answer
423 views
Multiple Pass Core Data Migration In Chunks With iOS
I'm trying to migrate an iPhone/iPad sqlite store of about 11Mb. It has around thirty different entities, all quite heavily interrelated.
On a 3GS, it takes quite some time. Even a lightweight ...
8
votes
1answer
287 views
Out-Of-Memory while doing Core Data migration
I'm migrating a CoreData model between two versions of an application. I was storing binary data as blobs in the previous version and I want to take them out of the blobs for performance. My issue is ...
7
votes
5answers
162 views
Custom code execution after light weight migration of particular version
I have 2 object models in Core Data (say v1 and v2). This migration is eligible for light weight migration. Now, I want to execute custom code after the migration but only when the migration is from ...
5
votes
1answer
716 views
how to resolve “no such table: Z_METADATA” error for first deploy to an IOS device
The first deployment to an IOS device for my application is crashing as I'm getting a: "'no such table: Z_METADATA'" error. I have copied the SQLite file across from my device and opened it up in a ...
5
votes
1answer
1k views
Strange Core Data crash with _Unwind_SjLj_Resume after migrating
I am getting a strange crash from some of my beta testers that I am having trouble with. The symbolicated crash reports indicate that the crash is occurring in the simple allocation of a controller as ...
5
votes
1answer
2k views
Core data migration failing with “Can't find model for source store” but managedObjectModel for source is present
I have a cocoa application using core-data, which is now at the 4th version of its managed object model.
My managed object model contains abstract entities but so far I have managed to get migration ...
5
votes
6answers
7k views
Using mergedModelFromBundles: and versioning (CoreData)
I'm trying to use the migration feature in CoreData. I've followed the Apple Documentation. I have a problem in the following method:
/**
Returns the managed object model for the application.
If ...
4
votes
2answers
280 views
How to Test Core Data Migration With an App Already in the App Store?
We have an app that is currently in the app store. It uses Core Data as its persistence mechanism. We have a new version ready to go, and it has some schema changes. Specifically, we have added 1 new ...
4
votes
2answers
300 views
core data testing a migration mapping model
I was wondering what some people's opinions are about the best way to test a mapping model? I'm currently working on an app to an upgrade of an app in the app store and want to test the mapping model ...
3
votes
1answer
442 views
iCloud, Core Data, migration and model mapping
As said in the Apple documentation
Schema migration using mapping models is not supported (lightweight
migration is supported).
I was wondering about options we have in case we need to deal ...
3
votes
3answers
221 views
Core Data Relationship Lost After App Upgrade
I have a tough issue that I cannot find an answer to. My data model is structured like this:
Version 1:
project has many locations
location has many projects
But by mistake the inverse between the ...
3
votes
1answer
107 views
Migrating Core Data - how to do it safely?
I have an app released, and I want to release a new version.
The new version has a very small change in the Core Data model: adding a BOOL attribute ("hasUpdated") to an entity ("Users").
How would ...
3
votes
1answer
276 views
How to split an entity in Core Data migration mapping
It seems like this should be straight forward but I have not been able to find a good example of it. I have a simple Core Data entity that I want to split into two separate entities. Apple's ...
2
votes
2answers
115 views
Cannot create an NSPersistentStoreCoordinator with a nil model error
I have a coreData datamodel file which was running perfectly. Due to some special requirements i deleted the old datamodel file and created another datamodel file with exactly same entities. There is ...
2
votes
1answer
74 views
how to update attributes from old version to new version using core data in xcode 4
i want to add two new attributes in my current database..when i update that database and click on "Add model version" it automatically converted into new version and creates new updated database..how ...
2
votes
1answer
61 views
Must I enable versioning in my first release in order to use lightweight migration in subsequent releases?
My fear is the change of the data model in subsequent releases.
I created a new xcdatamodel file in Xcode which is not versioned by default. I know you can click somewhere and make it "the first ...
2
votes
3answers
254 views
Core Data - Migration question?
I am trying to do a migration
I have 2 versions of model
1.xcdatamodel
2.xcdatamodel
I created a mapping model from version 1 to 2
1to2.xcmappingmodel
The problem is that it can't find the ...
2
votes
1answer
148 views
Changing the core data model versionIdentifier
I'm trying to debug an issue with my mapping model not being used by my migration, and so I printed out the sourceModel and destinationModel's versionIdentifiers, but both were blank.
...
2
votes
2answers
991 views
Core Data lightweight migration: Can't find or automatically infer mapping model for migration
So I created a new version of my data model, and made a previously optional field non-optional (giving it a default value). According to the documentation, this should mean my migration is eligible ...
2
votes
2answers
887 views
Detecting a Lightweight Core Data Migration
I'm using Core Data's automatic lightweight migration successfully. However, when a particular entity gets created during a migration, I'd like to populate it with some data. Of course I could check ...
2
votes
1answer
2k views
Core Data Migration - “Can't add source store” error
In my iPhone app I'm using Core Data and I've made changes to my data model that cannot be automatically migrated over (i.e. added new relationships). I added the data model version (Design -> Data ...
2
votes
1answer
1k views
Validation Errors with Core Data Migration
I'm encountering a very annoying error using Core Data on Mac OS X 10.5.
All entities have classes in my application which share the same names.
Up to this point, I've done 5 migrations without ...
1
vote
1answer
26 views
Do multiple versions of xcdatamodel mean that we need multiple xcmappingmodel files?
I have multiple versions of xcdatamodel files:
app1.0.xcdatamodel
app1.1.xcdatamodel
app1.2.xcdatamodel (current)
Does this mean I need multiple combinations of xcmappingmodel files to cover all ...
1
vote
1answer
27 views
Removing CoreData migrations used in development
We developing a iOS app that uses CoreData. To keep ourselves from going crazy and having to delete the app every time we make a change to the models, we have been using lightweight migrations. At ...
1
vote
1answer
50 views
can a dataModel of Coredata be part of any other bundle than main bundle
I have a datamodel file "Abcde.xcdatamodeld" . It is currently a part of my main bundle and I am referencing it by using the following code.
- (NSManagedObjectModel *)managedObjectModel {
if ...
1
vote
1answer
38 views
Updating Application to use Core Data from previous double SQLite only persistent store
I'm currently upgrading an older iPhone flashcard application that uses two SQLite dbs (one with read-only questions that can only be updated by app updates, deletion of cards, addition of cards, ...
1
vote
1answer
100 views
Core Data migrating one-to-many relationship
Initially the model is like this, where the department has a set of workers:
Department <--->> Job
<--->> Worker
and it needs to be changed so the Worker relationships ...
1
vote
0answers
26 views
How do I create an instance of my new entity as part of a core data migration?
We have an app with a versioned core data model, and we're setting the NSMigratePersistentStoresAutomaticallyOption and NSInferMappingModelAutomaticallyOption options to handle the migration at the ...
1
vote
1answer
66 views
putpkt: Error and testing Core-Data Lightweight migration
I have an xcode project that has 4 targets (2 apps, 1 iPhone and 1 iPad version for each). I have recently implemented Core Data Lightweight Migration.
I am currently only testing two of the apps, ...
1
vote
1answer
132 views
iOS Core Data migration time out
I am getting this error message (and subsequent crash) in Xcode organiser that I suspect is related to a Core Data migration that takes too long to complete:
Oct 4 09:51:14 unknown ...
1
vote
1answer
47 views
Two Contexts, 1 Persistent Store: Duplicate Fetched Entries
I am attempting to create a way for users to import contacts to their phone. How it works is this:
There are two managed object contexts. The "real" context has the current data in their address ...
1
vote
2answers
86 views
Using one xcdatamodelId in two app
I created one project with core data that will work with unchangeable database. And I don't want to write code in this project , that will programmatically populate this database. So, I create second ...
1
vote
1answer
351 views
Custom Policy in my xcmappingmodel will not be executed
I'm trying to create a mapping model for my app that has some custom code. Thus I created a xcmappingmodel and I subclassed NSEntityMigrationPolicy and implemented the
...
1
vote
1answer
122 views
Core Data lightweight migration crash
I updating my database with a lightweight migration. If I do the update on my device through xcode in debug mode everything runs fine. If I load the app through iTunes as a archive file it will ...
1
vote
1answer
72 views
Adding data after lightweight migration process
I am not sure if it can be done by using lightweight migration. My problem is relatively simple, but I could not find a solution anywhere on the net.
I have a database where I need to add a new ...
1
vote
1answer
94 views
Lightweight Migration Fail
There are a few Lightweight Migration questions on Stack Overflow already, but most of them have extra wrenches in the mix. I'm doing the most basic migration possible and it's failing. I've done this ...
1
vote
1answer
206 views
Core data migration with custom NSEntityMigrationPolicy - efficiency?
My iPhone app's core data model is changing and I have a custom mapping model and an NSEntityMigrationPolicy for one of my objects. However, I am worried that some of my users will have thousands of ...
1
vote
1answer
190 views
Core Data Migration error when migrating between non-consecutive versions
The Problem
I've got 13 versions of my core data model.
I've made 13 mapping models (V1-V2, V2-V3 etc)
I've got automatic migration switched on.
On migration between two consecutive versions (e.g. ...
1
vote
1answer
626 views
Core data migration involving a new entity and a to-many relationship
Greetings all.
I am attempting to add a new entity (say B, with two "double" attributes) to my core data model and create an optional to-many relationship with an existing entity (say A). I created ...
1
vote
1answer
510 views
Syncing Core Data Databases in iOS applications
I have a doubt about Core Data migration.
Say I have an application which has some predefined values in a table A. I want to sync it with another database, with a table B in such a way that when new ...
1
vote
1answer
464 views
iPhone app's Core Data, after upgrade to App Store?
I managed to finish upload my first iPhone app to Apple's App Store couple of days ago. My app is based on Core Data so it contains users' data to their devices.
What I want to know is that what ...
1
vote
1answer
865 views
iPhone Core Data Lightweight Migration: Can't merge models
I just started with iPhone core data and I ran into a problem in lightweight migration.
I added two new fields to my old model
Regenerated the model class files
Made the new model version as current ...
1
vote
1answer
309 views
Migrating through several versions in core data
I have Core Data application and I have been migrating (upgrading) the core data model. Each time I create a new version I create a mapping model for each version.
Right now I have 16 versions and I ...
1
vote
1answer
180 views
Migrating from Dictionary to Core Data Entity
I've got a data model where there is a Person entity, which has a transformable attribute which is an array of dictionaries containing information. The model is much bigger than that, this is just the ...
0
votes
0answers
87 views
IPhone CoreData migration works only step by step and not at once
In the past I created several versions of my database with XCode 3 and it all runs smoothly. It should be a very simple task to add a new attribute to an existing entity without changing something ...
0
votes
1answer
20 views
Core Data automatic migration doesn't create the new entity in my new model
I made a new version of my core data model which includes one new entity "Test" with one attribute "type".
The lightweight migration worked with no errors but I noticed that the new entity was not ...
0
votes
0answers
17 views
How to process a Core Data entity mapping in a particular sort order
I need to migrate an iOS Core Data store to a new version. In one entity I naively relied on time stamps as a means to sort the data in the order received. This is problematic due to clock skew. In ...
0
votes
2answers
52 views
Enable saving of document NSManagedObjectContext immediately?
Starting from the standard Xcode Document-based Application w/ CoreData template on 10.7, I'm experiencing some frustrating behavior. I'm sure it's something simple that I'm overlooking.
Let's say in ...
0
votes
2answers
56 views
How i can access Sub-Entity attributes from Suber-Entity in Core data
I have a super entity in core-data called element and has two sub entity called (IsBoolean,IsGrade) i try to access these sub-entity attribute from below code.I need your help about this issue
...