Budget: 600 PLN Deadline: 4 days
I am a Laravel developer and I can perform the migration from MSSQL to MySQL (e-commerce + blog) with schema mapping, updating links in the blog tables, and verification on the staging database.
I have a ms sql server ecommerce database - a store with a blog that I want to migrate to a new Laravel application with a mysql database.
Scripts need to be written to migrate the data, and mapping will be necessary because the database schemas differ.
Links in the blog tables also need to be updated.
For reference and comparison, I have a populated stage database.
Budget: 600 PLN Deadline: 4 days
I am a Laravel developer and I can perform the migration from MSSQL to MySQL (e-commerce + blog) with schema mapping, updating links in the blog tables, and verification on the staging database.
Budget: 590 PLN Deadline: 5 days
Hello
I am ready to complete your task, I will write a migration script and successfully migrate all data from the old ms sql database to the new mysql. Message me in private!
Budget: 600 PLN Deadline: 1 day
Good day, I have experience in PHP for over 5 years and have experience in database migration (partially replication). I am ready to complete the task. The deadline will be final after additional information.
Budget: 6000 PLN Deadline: 10 days
Hi, hope you're doing well!
I can handle the MS SQL Server to MySQL migration for your Laravel e-commerce application. I will write custom PHP migration scripts using Laravel's database tools to handle the schema transformation, carefully mapping data types between MS SQL and MySQL (e.g., NVARCHAR to VARCHAR, IDENTITY to AUTO_INCREMENT, DATETIME differences), transferring all e-commerce and blog data with proper foreign key relationships, and updating all blog links using regex pattern matching and SQL queries to match the new system structure.
I will use the populated stage database you provided as a reference to verify schema mapping accuracy and ensure nothing gets lost. After migration, I will run data integrity checks comparing record counts, foreign key relationships, and sample data against the stage database to confirm everything transferred correctly.
Available to start immediately and looking forward to your response.
Thanks, Youssef Hachicha.
Budget: 600 PLN Deadline: 3 days
Hello!
I have experience in migrating databases between different systems (MS SQL Server → MySQL) and in working with projects based on Laravel, and I can help transfer your data to the new application.
I will prepare migration scripts taking into account the mapping of differences in database schemas, ensure the integrity of relationships, and correctly rewrite links in the blog tables. We can use the staging database as a reference point to verify the correctness of the migration.
I would be happy to familiarize myself with the structure of the current database and the details of the project to precisely define the scope of work and the timeline for completion.
Budget: 600 PLN Deadline: 4 days
Greetings Paweł
I will be happy to help you professionally carry out the migration from MS SQL to MySQL for any volume and load.
Please establish the budget and terms after discussing the details and scope of work.
Write to me, I am eager to collaborate. I look forward to your feedback.
Budget: 700 PLN Deadline: 1 day
Good morning,
I have experience in data migrations between MS SQL Server and MySQL, as well as in Laravel projects, where it was necessary to map different schemas and maintain the consistency of relationships.
I can:
- analyze both databases (production and staging)
- prepare the mapping of tables and fields according to the new schema
- write migration scripts (ETL / scripts in PHP or SQL)
- ensure the proper transfer of relationships (products, categories, blog, users, etc.)
- update links in the blog tables (e.g., changing the domain / URL structure)
- prepare the migration to be repeatable and safe
I work carefully — first testing on staging, then the target migration.
I would be happy to review the schemas of both databases and propose a specific action plan.
Budget: 600 PLN Deadline: 1 day
Hello!
I have experience in migrating databases between different DBMS (MS SQL Server → MySQL) and working with Laravel projects, so I can help transfer your ecommerce store with a blog to a new application on Laravel. I understand that the schemas differ, so it will require mapping of tables and fields, rather than a "direct" import.
What I can do for the task:
Prepare and describe the correspondence between the tables/fields of the old MS SQL database and the new MySQL one (taking into account the structure of the Laravel application).
Write scripts/migration jobs that will correctly transfer data (products, orders, users, blog posts, etc.) while preserving relationships and keys.
Use your staging database to compare migration results and verify data accuracy.
Update links in the blog tables (URLs in content, internal links) to match the new structure/domain.
If necessary, prepare a repeatable migration script (so that the transfer can be run again before the final launch).
Let's discuss the details in private messages: the volume of data, access to MS SQL/MySQL, whether there is a description of the new Laravel schema, and which entities are critical to transfer first. After that, I will be able to propose a work plan, timelines, and an estimated budget.
Budget: 2000 PLN Deadline: 20 days
Hello. I am ready to complete your project after agreeing in private messages. The final deadlines and price will be determined after the agreement. I can also offer technical support and assistance in the future.
Budget: 600 PLN Deadline: 3 days
Good morning,
I can do this. I have extensive experience in data migrations from MS SQL Server to MySQL and in Laravel projects.
I will prepare migration scripts with mapping of differing schemas, ensure data integrity, and update links in the blog tables.
The stage database as a reference is not a problem. I am available immediately.
Budget: 1200 PLN Deadline: 5 days
Good day
extensive experience in writing data conversion scripts between databases
for an accurate assessment, it is necessary to look at two databases
Budget: 599 PLN Deadline: 2 days
Hello! The task of transferring data from the e-commerce system on MS SQL to Laravel (MySQL) is clear. This is a complex process where it is important not just to copy the data, but to maintain the integrity of relationships and the correctness of URLs.
Here’s how I propose to solve the task:
Two-level connection: We will configure Laravel to work simultaneously with two data sources. This will allow the script to "stream" data directly without creating intermediate files.
Mapping through Artisan commands: Instead of simple SQL queries, I will write custom Laravel console commands. This will leverage the power of Eloquent and ensure flexible data transformation (for example, converting dates, price formats, and metadata) directly during the transfer process.
Cleaning and updating content: During the blog migration, we will use regular expressions (Regex) to find old links within the article texts. We will replace them with new SEO-friendly URLs that correspond to the Laravel architecture.
Validation through Stage: We will use your stage database as a benchmark (Gold Standard) to verify results after each stage of migration.
Below is a fragment of the script architecture that I plan to use for mapping:
PHP
// Fragment of the Artisan command for migration with mapping and link updating
public function handle()
{
// Connect to the old MS SQL database and read data in batches of 100 records
DB::connection('mssql')->table('OldPosts')->chunkById(100, function ($posts) {
foreach ($posts as $post) {
// 1. Mapping fields (transforming the old schema into the new one)
// 2. Content transformation: replacing old links with new ones via Regex
$updatedContent = preg_replace(
'/http:\/\/oldstore\.com\/blog\.php\?id=(\d+)/',
config('app.url') . '/blog/post-$1',
$post->Content
);
// 3. Writing to the new MySQL database (Laravel)
DB::table('posts')->updateOrInsert(
['old_id' => $post->ID], // Preserving the relationship for verification
[
'title' => $post->Title,
'content' => $updatedContent,
'slug' => Str::slug($post->Title),
'created_at' => Carbon::parse($post->DateCreated),
'status' => ($post->IsActive) ? 'published' : 'draft',
]
);
}
$this->info('Another 100 posts migrated...');
});
}
This approach guarantees that the database will be "clean".
Budget: 575 PLN Deadline: 3 days
Hello,
This is not just a simple export/import task since the schemas differ, so proper mapping and data transformation logic will be required. I have experience working with structured database migrations and writing custom scripts to safely transfer and validate data between different systems.
I can:
analyze both schemas and define a clean mapping strategy
write migration scripts for MS SQL → MySQL
ensure relational integrity (users, orders, products, blog content, etc.)
update blog links during the migration process
validate results against your stage database
Before confirming final scope, I would like to review the database size and table structure to estimate complexity accurately.
If everything is clear and structured, I can deliver a safe and well-tested migration within the proposed budget.
Looking forward to your response.
Budget: 600 PLN Deadline: 3 days
Good day, I am ready to implement the script for data comparison and migration from MSSQL to MySQL.
Budget: 600 PLN Deadline: 1 day
Hello
I am ready to complete your task, I will write a migration script and successfully migrate all data from the old ms sql database to the new mysql.
Write to me, we will discuss, I will be happy to collaborate!
Budget: 600 PLN Deadline: 7 days
Hi. I have solid experience with SQL database migrations and writing custom scripts for data transformation.
Since the schemas differ, I can write a script to map and convert your data from the MS SQL structure to the new MySQL format, using your stage DB as a reference. I will also handle the blog link updates during the transfer. Let's chat to discuss the details.
Budget: 600 PLN Deadline: 3 days
Hello!
I will transfer the database from mssql to mysql without problems and with quality.
Write to me in private messages.
Budget: 600 PLN Deadline: 3 days
Good morning!
I understand the need to migrate data from MS SQL to MySQL for Laravel API, including schema mapping and updating blog links. I have experience in Laravel, API, and complex database migrations.
Please contact me in a private message, and we will discuss the details.
C# / .NET WPF Developer – Completion of Migration of a Large Invoicing Program RAFSOFT.NET Sp. z o.o. is looking for a C# / .NET developer to complete the rewriting of a large, long-standing invoicing program to a new technology. The project involves the migration of an extensive desktop application for companies, used for invoicing, handling sales documents, contractors, records, and accounting-tax functions. The new version of the program is being created in C# / .NET, using DevExpress components. The project is already about 70% rewritten. We are looking for someone who can help bring it to completion, organize the missing elements, perform tests, and ensure the new version operates in accordance with the existing program. Scope of Work: completion of the migration of a large desktop application to C# / .NET, recreation of the functionality of the old program in the new version, maintaining as identical logic of operation, appearance, and handling as possible, working with DevExpress components, analyzing existing code and comparing the operation of the old and new versions of the program, fixing bugs, completing missing functions, and testing the application, collaborating on the final preparation of the program for deployment. Requirements: very good knowledge of C# and .NET, experience in creating desktop applications for Windows, knowledge of WPF or WinForms, experience with DevExpress or similar UI component libraries, ability to analyze a large existing project, accuracy and patience in reproducing existing functionality, ability to test one's own changes, very good ability to use AI tools supporting programming, code analysis, refactoring, and testing. Preferred: experience with legacy projects, knowledge of or previous work with Visual Basic 6.0, experience in migrating applications from older technologies to C# / .NET, knowledge of issues related to invoicing, accounting, JPK, or KSeF, experience working with large business applications. Who We Are Looking For: We are looking for a self-sufficient, precise, and technically experienced person who can enter an existing project, understand its logic, and consistently bring it to completion. In this project, it is very important not only to write new code but also to faithfully reproduce the operation of the old program — both in terms of functionality and appearance as well as handling. We also require proficiency in using AI tools in daily programming work. We are looking for someone who can use AI practically: for code analysis, bug finding, speeding up migration, creating tests, and organizing the project. About the Company: RAFSOFT.NET Sp. z o.o. is a Polish company creating software for entrepreneurs, accounting offices, and small and medium-sized enterprises. Our main product is the VAT Invoice program, supporting the daily handling of invoices, sales documents, contractors, records, and settlements in accordance with Polish regulations. We develop our own desktop applications and tools related to invoicing, accounting, KSeF, JPK, and automation of business processes. Our solutions are designed with stability, ease of use, and practical application in users' daily work in mind. Company website: www.rafsoft.net
It is necessary to calculate statistics in a medical project (including correlations). Additionally, there is a request to create a mathematical model for predicting the development of pathologies based on available data.
Hello, I need your help in implementing a task. Fix the bugs on the website page, the page displays a 404 error.
Project Meta Implement Viber integration without using third-party CRM systems. All work with messages should be done directly in our internal CRM based on BAS / 1C 8.3.Current System BAS / 1C 8.3 Custom configuration "Customer Service" Database of over 40,000 subscribersRequired Implementation Integration through an official Viber Business provider (TurboSMS, GMS Worldwide, or another agreed service). The button "Write to Viber" in the subscriber card. Sending messages directly from BAS. Receiving incoming messages via Webhook. Automatic linking of messages to the subscriber by phone number. Complete preservation of correspondence history in the subscriber card. Displaying the time, message status, and the manager who responded. Simultaneous work of multiple managers. Message templates for quick responses. Assistance with setting up the Viber provider, API keys, and Webhook. Transfer of all source code and settings after the work is completed.Acceptance Conditions The work is considered completed after successful testing of all functions on the working database and transfer of the source code.Guarantee 1 month warranty for fixing bugs related to the implemented functionality. Further modifications are carried out by separate agreement.Result After the project is completed, managers should be able to fully work with Viber directly in BAS: write to clients, receive responses, view correspondence history, and communicate without using third-party CRMs. All source code, modifications, API keys, and settings will be transferred to the client after the project is completed.
It is necessary to correct the SQL scripts for the Postgres database. It is required to check the scripts and update data from external Excel tables and between two Postgres databases (different servers). Scripts will be run through AnyDesk using Navicat. List of data for verification and correction: 1. Products subject to repair – assignment of a mark Result: Number of records discrepancies Correction script 2. List of Categories, Groups, Subgroups – comparison with the tmp table Result: Number of records discrepancies Correction script 3. Number of products in category. Groups, subgroups. (statistics) – Comparison by table, identification of discrepancies Result: Number of records discrepancies Correction script 4. List of spare parts in the system with category, group, subgroup - Comparison by table, identification of discrepancies, elimination of discrepancies Number of records discrepancies Correction script 5. Repair items related to spare parts - Comparison by table, identification of discrepancies, elimination of discrepancies Discrepancy table Correction script 6. Reconciliation of balances and SN Discrepancy table