Questions tagged [migrate]

Migration is the process of moving data from container to another. This includes migration to and from physical containers (e.g. hard disks) and migration to and from logical containers.

Migration is the process of moving data from container to another. This includes migration to and from physical containers (e.g. hard disks) and migration to and from logical containers.

Migration often involves some form of reorganization of the data.

Physical migration includes (but is not limited to):

  • moving data from an old hard disk to a newer one
  • moving data from one server to another

Logical migration includes (but is not limited to):

  • migrating data from one database system to another (e.g. Oracle 10g to MySQL 5)
  • migrating existing web applications from one web server to another
  • migrating a cell phones contact list to another cell phone

In contrast to , the data held in the original system after the migration process has been successfully completed is not necessarily used any more.

1099 questions
-1
votes
1 answer

Is Struts-core-6.X.X compatible with Jakartaee 10?

I am migrating my struts-application from Javaee 8 to Jakartaee 10, Payara 5 to Payara 6(use community version) and Jdk8 to JDK 11. Currently, I am using struts-core-2.5.26. Is latest version of struts-core-6.x.x compatible with Jakartaee 10? or Any…
priti
  • 1
-1
votes
2 answers

Replace Navchar (max) to Varchar(3000)? Migrate data from sql server to MariaDB Server using MYSQL workbench

I'm trying to migrate from ms sql server to MariaDB, using MySQL workbench There is a problem when Nvarchar(Max) is not compatible with MariaDB, the solution would be a script to change it to varchar(3000)? I write this code but I'm not sure if…
Nain9
  • 11
  • 3
-1
votes
1 answer

Laravel Migration Error: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes

[enter image description here][1]After creating a new project, I migrate and it gives this error This project is completely raw and no changes have been made enter image description here After creating a new project, I migrate and it gives this…
matima
  • 9
  • 2
-1
votes
2 answers

1045-Access denied for user 'root'@'localhost' (using password: NO) (SQL: SHOW FULL TABLES WHERE table_type = 'BASE TABLE')

I am working with laravel 7 and after clone my existing repo which was created via windows operating system and right now i am using macOS. After cloning I copy .env.example and converted into .env file and then run the below commands, composer…
Imdadul Haque
  • 1,635
  • 5
  • 23
  • 44
-1
votes
1 answer

Migrating html & css website into wordpress issue

Hello fellow developers, I have an issue that I am running up against regarding WordPress and the current website I am working on. I have been give a task to revamp a website, and to insert that website into WordPress. I have been working on a…
-1
votes
1 answer

Django django.db.utils.IntegrityError

Model: class List(models.Model): Lid = models.AutoField(primary_key=True) Name = models.CharField(max_length=100) addr1 = models.CharField(max_length=100) addr2 = models.CharField(max_length=100) City =…
Meera K
  • 11
  • 5
-1
votes
2 answers

How to convert Java enum to Swift enum?

Below is my java enum. I want to convert it to Swift enum. Can you please help me to migrate? package com.lifeplus.Pojo.Enum; public enum GattServiceEnum { CURR_TIME_SERVICE("00001805-0000-1000-8000-00805f9b34fb", "current_time"), …
Vikas
  • 1,548
  • 2
  • 12
  • 25
-1
votes
1 answer

SQLSTATE[42S02] Problem with artisan tinker

I have a problem with artisan tinker Problem: Illuminate\Database\QueryException with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'homestead.projects' doesn't exist (SQL: insert into `projects` (`title`, `description`,…
Mineral
  • 39
  • 1
  • 1
  • 7
-1
votes
1 answer

Migrate hashed string (SHA512) from one Oracle DB to another?

May I ask is it possible to migrate / clone the hashed string (SHA-512) from one Oracle database to another ? If not then how the big corp they migrate their users accounts ? Thanks,
Toan Dao
  • 551
  • 7
  • 19
-1
votes
1 answer

Create a Migration Final save button is disabled

I resolved my issue on my own. After doing this I reread the question and with the knowledge I now have I as a different user I would have known exactly what I needed and would have answered that user with about 3 sentences Reboot your PC after…
-1
votes
1 answer

az commands to migrate secrets from 01 keyvault to 02 keyvault in azure

I need a script or az command to move my secrets from keyvault01 to keyvault02. Does someone have az commands for that scenario?
-1
votes
1 answer

Added a detail to Users, but value doesn't get picked up

I added an extra field in devise when a user signs up: "barge_name", when i go to the sign up page I enter a barge_name, email address and password this all works. But when i try rails c, User.first is says barge_name is nil, I don't know why the…
skosman
  • 27
  • 5
-1
votes
2 answers

How to cotinuosly append data from DB2 server to sqlite using preferably django and if nothing else then python alone code

I am writing a django website that has some reports that pulls data based on DB2 database. Since I have only read only access to that database, I want the data from DB2 to be continuosly appended (or appended at intervals of lets say 20 minutes) to…
Sumit Singh
  • 93
  • 1
  • 10
-1
votes
1 answer

What should I do when migrate in django does not work?

I have a problem with creating models in Django. I want to create new model, so I write code: class Image(models.Model): title = models.CharField(max_length=100) image = models.ImageField() In the next step, I did python manage.py…
Koleole
  • 21
  • 5
-1
votes
3 answers

how to move my android studio project from my pc to my another pc with a different user name?

I installed a new windows with a different username. I have my android studio project files saved, now i want to use the same project in android studio after i installed the new windows. by the way the app is already published in google play…