for issues related to Migration of CoreDate on OS X systems

learn more… | top users | synonyms

1
vote
0answers
20 views

CoreData mapping: how to remap relationship to new object

I have an old CoreData model with object VideoRecording which had relationship to object VideoMetadata. Now new version introduces intermediate object VideoFile, which contains several fields from ...
0
votes
1answer
21 views

light weight migration core data

I am using core data for storing. For the second release of my app I created a new entity in my core data,so I used light weight migration. By this my schema was change but user data got lost. How can ...
0
votes
1answer
16 views

See the core data table in Device

In my App am using core data to store the data. Now I need to do the core data migration. To check the core data migration done properly I want to see the core data table is there any way to do that ? ...
1
vote
1answer
33 views

How to migrate a core data data model when adding an abstract parent entity?

I created a new core data model version. The changes I made were I added a new entity called "FTASyncParent" which I set as an abstract entity. Then I set the parent entity of all my other entities to ...
2
votes
1answer
35 views

Retrieve core-data model version from appDelegate

Anybody knows how to get the core-data model version when the app starts? I've implemented the lightweight migration and it works fine but I need to check if the sqlite db is based to the old model ...
0
votes
1answer
27 views

CoreData Lightweight Migration + Custom

i'm trying to archive a lightweight migration with some handling after that. I already did the lightweight process and i need some help now handling my entities. On the old model i used to have an ...
1
vote
2answers
59 views

Migrating with custom policy in Magical Record

I'm updating one of my applications that uses Core Data for the data management. In this current version, I implemented Magic Record and also updated the data model. The data model will not be able to ...
0
votes
0answers
14 views

Can not find xcdatamodel to create new version

First of all in my app i added manually support for core data, so now i have to handle the migration from old version to new version , i am following this tutiorial ...
1
vote
1answer
129 views

Core data custom migration

My old core data model has an NSDate field, which I would like to change to a NSNumber. I read the Apple documentation and several similar questions on SO and other blogs (see references at end of ...
0
votes
1answer
41 views

Adding attribute with incremented value in coredata when migrating object model

I have a Bet object managed by coredata in an iphone app I am developing. I would like to add a UID (betnum) attribute to this bet object so in the future I can push the bets to a server using this ...
2
votes
0answers
56 views

Persistent store migration: Missing source managed object model error, despite same hashes

I'm trying to migrate a Core Data store using a mapping model, but I get this error: "Persistent store migration failed, missing mapping model." My app finds the mapping model, but doesn't use it, ...
1
vote
0answers
46 views

Core Data Lightweight migration, unable to map the new data model

I am using core data in my iOS project. I am using light weight migration for migrating schema between datamodel versions. I had version 3.5 set as current modal version for the app which is released ...
1
vote
0answers
35 views

Issue with data migration in sqlite database (coredata)

firstly i'wer having two entities in my .xcdatamodeld, GameInfo and Score with values stored in sqlite db. now, i had to made change in my GameInfo entity, one new field added to it. so in my new ...
1
vote
1answer
36 views

Using Core Data while development with many planned changes

I read this blog where he writes, that everyone should use core data as soon as he want to store more than just trivial data. So I added a xcdatamodeld to my project. I'm going to fill the database ...
0
votes
0answers
35 views

Core data migration with renamed relationship

I have renamed an existing relationship from "bundleTopic" to "bundle" (both "bundleTopic" and "topic" are the same relationship, the change is to improve readability). However I'm not able to map the ...
1
vote
0answers
31 views

Core Data does not use my Mapping Model

When I set the option 'NSInferMappingModelAutomaticallyOption' to yes, the new model is setup using the old models data. However, it should be using my custom Mapping Model to update specific values. ...
0
votes
0answers
14 views

How do I reference a related NSManagedObject in a custom Core Data Mapping?

I'm trying to update my model in a new release of an application. I've got so far as to create the custom mapping model of my application and I want to now update an attribute. Two objects: ...
0
votes
0answers
22 views

Getting a property from two NSManagedObjects, and saving it as the property of another

In a new version of my application I want to merge two properties on two different NSManagedObjects and use it on a relationship of both of these objects. For example, I have an object 'Document' ...
1
vote
2answers
60 views

Using “indexOfObject:” in value expression for Core Data mapping model

I need to migrate my core data model to replace an ordered relationship with a normal one to support iCloud. I've created an mapping model and tried to maintain the order by adding a new attribute ...
0
votes
0answers
33 views

NSMigrationManager's migrationProgress always return 0.0f while migrateStoreFromURL

I want to do manual migration without mapping model definition. but, the Migration manager does not have progressing value. always return 0.0f. How can I get migration progress value. Thanks for any ...
2
votes
1answer
90 views

Core Data migration fails for to-one relationship

I have the following model: parent is a to-one relationship (optional, no minimum, maximum=1). children is the inverse to-many relationship (optional, no minimum, no maximum). I added a new model ...
0
votes
2answers
90 views

iOS: backup core data and restore with newer model version

How can I backup my core data objects created in version 1 and restore them in version 2? Simply copy the .sqlite-file won't work if the model changes... Is there a way to backup the file restore it ...
0
votes
0answers
78 views

Core Data Migration and Mapping Models

I have a datamodel with a relationship from one entity to another entity : A { b<-->B } B { a<-->A } Both relationship A to B and B to A are non-optional. Then a make a new ...
0
votes
0answers
135 views

'Cannot create an NSPersistentStoreCoordinator with a nil model' after changing data model

I've made a series of potentially stupid mistakes that have culminated in the 'Cannot create an NSPersistentStoreCoordinator with a nil model' error when I try to run my app on my phone or on the ...
1
vote
0answers
82 views

App crashes after update. Core data error

I released in app store version of my app 1.1. Then I change my database and released version of app 1.2. After update app crashes when it starts. Can you help me? I have got this error: Unresolved ...
1
vote
0answers
64 views

Coredata lightweight migration “Can't find mapping model for migration”

I am doing a coredata database migration using lightweight migration in xcode4.5, I kept on getting "Can't find mapping model for migration" when I set "NSInferMappingModelAutomaticallyOption" to ...
1
vote
1answer
61 views

NSFetchResultsController delegate not getting called

I am using theNSFetchedResultsController for loading my tableView using coredata. Recently I have added a new Entity in my ManagedObjectModel and did coredata versioning and used light weight ...
1
vote
0answers
134 views

Core Data Migration with MagicalRecord - add attribute and fill it

I have an iOS app and I have some problems with UITableView and section headers using MagicalRecord. I need to sort my table by title and the title has entries with uppercase and lowercase letters. ...
0
votes
0answers
45 views

Core Data Migration Multiple Passes?

I am implementing a core data data version changes for one of my ipad applications. Apparently some user of my app has more than 1GB large database. As a result doing data migration using "light ...
1
vote
2answers
41 views

NSRangeException following Core Data migration

After adding a new Core Data model version to my app, I performed a lightweight migration, apparently successfully. The migrated file loaded fine, but upon the first attempt to access an attribute via ...
-1
votes
1answer
78 views

When are core-data functions calles in appdelegate [closed]

I'm trying to do core-data migration in my project. I've added all the code for core-data into my appdelegate. But it seems like they are never called? Any help?
1
vote
0answers
76 views

NSPersistentStoreCoordinator has no persistent stores

I am trying to do lightweigh migration for my core database. I've included all the code in my appdelegate like is said in every tutorial. Then I have this piece of code. - ...
0
votes
2answers
135 views

Retrieving Core Data Managed Object Model from Git

I currently have v1.1 of an app in the App Store that uses Core Data. I'm making simple changes to the Core Data schema by adding a few attributes to an existing entity for an upcoming release. Due ...
-1
votes
1answer
82 views

Adding an Attribute to a Core Data Entity

this has beed discussed alot, but nothing that I found helped me... I just want to add a single attribute to a singe entity. Of cause without loosing my data. To do that, I followed these steps But ...
-3
votes
1answer
70 views

Steps for migrating a core database [duplicate]

Possible Duplicate: Implementation of “Automatic Lightweight Migration” for Core Data (iPhone) I submitted an update of my app in the appstore. In this update I've added some things in my ...
0
votes
1answer
26 views

How can I exchange 2 attributes from my App Store version to my current development version?

How can I exchange 2 attributes from my App Store version to my current development version? The problem is that I'm not changing the data model, so there is no a data model migration. I tried adding ...
0
votes
0answers
99 views

Core Data migration error 134100

I am trying to migrate my current core data structure to a new data structure however I am continually getting the same error no matter what I do: Terminating app due to uncaught exception 'Open ...
0
votes
0answers
50 views

Are endEntityMapping and createDestinationInstancesForSourceInstance called from the same instance?

I'm using a clas derived from NSEntityMigrationPolicy and using the debugger I see that the self address is different in createDestinationInstancesForSourceInstance and endEntityMapping. Basically ...
1
vote
1answer
142 views

UIManagedDocument openWithCompletionHandler returns NO

So I was migrating my Core Data to UIManagedDocument. Calling openWithCompletionHandler on iPhone simulator works fine, but when I try to run my project on a real device it always returns NO. I ...
0
votes
0answers
17 views

Can a mapping model be used to split a model into two models?

Can a mapping model be used to split a model into two models? I mean, I have a model, but I'd like to extract a part in order to create a reusable component. Therefore my app will have two independent ...
2
votes
1answer
73 views

CoreData: Light-weight migration from xcdatamodel version n to n+5

Let’s say a user has MyApp2.xcdatamodel installed on their iPhone and that they have not upgraded their app for a while. Now the current version of the app uses MyApp7.xcdatamodel. Will the ...
0
votes
0answers
20 views

How can I execute a piece of code after doing an automatic lightweight migration?

I have a core data model, and I want to delete an entity in another new core data model, but when doing it (or after), I will like to execute some code (let's say, save old entities into a XML file or ...
0
votes
1answer
53 views

Is Core Data (SQLite) manual migration transactional?

Changed code and released. Now app is timing-out at launch while updating persistent store coordinator to new model. Want to know if the migration is transactional so I can work out what to do to ...
2
votes
2answers
105 views

Core-Data & iCloud limit number of items per entity - Potential Sync issue

I am currently developing an app that uses core-data and hopefully uses iCloud. I have an issue thou - My app has ONE profile entity where everything fall of it. I would like to sync this with iCloud ...
0
votes
0answers
33 views

CoreData migration - Concrete UseCase with inheritance

This post concern a use case of a CoreData migration. I have understand the principle of the lightweighted migration and the customer migration with NSEntityMigrationPolicy. I have build a project ...
0
votes
1answer
98 views

Core Data Model Versioning and Data Migration

i want to app version update,but at the new version i add two new attribute at the core data,i want to Migrate data from old version to new version. my step: choice .xcdatamodeld file,then ...
1
vote
0answers
73 views

iOS core data lightweight migration

I have got the problem with the core data lightweight migration. Application with the first version of model was submitted to the AppStore. Then there was data model with version 2 (wich was not ...
0
votes
0answers
63 views

Will implementing Core Data Lightweight Migration break earlier Mapping Model versions?

I've implemented lightweight migration into an existing project that previously took the mapping model approach (already has 18 xcdatamodels). Problem is I don't have the previous ipa's. I've just ...
0
votes
1answer
46 views

implementing coredata into existing application, create or autowritten sqllite

I am integrating core data into my application, I already have a sqllite DB file. Should I create a new one to make it easier, or should I use the existing one. I am sorry for the many questions, ...
0
votes
0answers
156 views

core data store missing getting error keypath entity.name not found in entity <NSSQLEntity

When I use Mac Finder, I can't find the .sqlite file for my iphone app. I also get this error: core data data store missing getting error: keypath owData.owOccurrenceDateTime not found in entity ' . ...

1 2 3 4 5