Home Database Mysql Tutorial SqlServer转换为Mysql的一款工具推荐(mss2sql)

SqlServer转换为Mysql的一款工具推荐(mss2sql)

Jun 07, 2016 pm 03:20 PM
ms mysql sqlserver tool recommend Convert

前几天朋友发给我的这个 工具 ,用了一下 感觉蛮不错的。 分享上来,同时也以便记录下来以后自用。 工具 名称:mss2sql 来个操作流程: 1.首先下载 工具 (下载地址会在该日志底部提供) 2.解压出来如图: 3.运行mss2sql.exe 一共2个选项,我这里选择第一项:

前几天朋友发给我的这个工具,用了一下 感觉蛮不错的。

分享上来,同时也以便记录下来以后自用。

工具名称:mss2sql

来个操作流程:


1.首先下载工具(下载地址会在该日志底部提供)

SqlServer转换为Mysql的一款工具推荐(mss2sql)

2.解压出来如图:

SqlServer转换为Mysql的一款工具推荐(mss2sql)

3.运行mss2sql.exe

SqlServer转换为Mysql的一款工具推荐(mss2sql)

一共2个选项,我这里选择第一项:直接移动到Mysql服务器


4.下一步:

SqlServer转换为Mysql的一款工具推荐(mss2sql)

填写Sql Server的链接信息,我这里直接使用 "." (点),进行本机windows登陆方式进行链接,远程服务器的话就自己填写IP 、用户名、密码吧。


5.下一步

SqlServer转换为Mysql的一款工具推荐(mss2sql)

填写Mysql的链接信息,Access mode(访问模式,我这里选择Local(本地),如果是导入到远程主机就选Remote(远程)吧),然后填写好mysql的登陆账号、密码即可。(远程主机的话在下面Host 、Port number、分别填写IP地址和端口号)


6.下一步

SqlServer转换为Mysql的一款工具推荐(mss2sql)

选择Sql Server中需要转换的数据库,再右边可以勾选转换表的定义、跳过转换索引。我这里直接选择转换Test数据库。


7.下一步

SqlServer转换为Mysql的一款工具推荐(mss2sql)

这里选择需要转换过去的表,一般选择 Add all(全部),我这里只有一张表Table_1 作为测试的。

然后下一步会出现正在转换的进度条,进度条完成后,就转换完成啦。

SqlServer转换为Mysql的一款工具推荐(mss2sql)


我们到Mysql看看去:

SqlServer转换为Mysql的一款工具推荐(mss2sql)

完成~  我这张表的数据是图片,在dos界面下无法显示滴。。。~~


工具下载地址:http://download.csdn.net/detail/Andrew_wx/3645659

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The Purpose of SQL: Interacting with MySQL Databases The Purpose of SQL: Interacting with MySQL Databases Apr 18, 2025 am 12:12 AM

SQL is used to interact with MySQL database to realize data addition, deletion, modification, inspection and database design. 1) SQL performs data operations through SELECT, INSERT, UPDATE, DELETE statements; 2) Use CREATE, ALTER, DROP statements for database design and management; 3) Complex queries and data analysis are implemented through SQL to improve business decision-making efficiency.

MySQL for Beginners: Getting Started with Database Management MySQL for Beginners: Getting Started with Database Management Apr 18, 2025 am 12:10 AM

The basic operations of MySQL include creating databases, tables, and using SQL to perform CRUD operations on data. 1. Create a database: CREATEDATABASEmy_first_db; 2. Create a table: CREATETABLEbooks(idINTAUTO_INCREMENTPRIMARYKEY, titleVARCHAR(100)NOTNULL, authorVARCHAR(100)NOTNULL, published_yearINT); 3. Insert data: INSERTINTObooks(title, author, published_year)VA

Solve database connection problem: a practical case of using minii/db library Solve database connection problem: a practical case of using minii/db library Apr 18, 2025 am 07:09 AM

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

Solve caching issues in Craft CMS: Using wiejeben/craft-laravel-mix plug-in Solve caching issues in Craft CMS: Using wiejeben/craft-laravel-mix plug-in Apr 18, 2025 am 09:24 AM

When developing websites using CraftCMS, you often encounter resource file caching problems, especially when you frequently update CSS and JavaScript files, old versions of files may still be cached by the browser, causing users to not see the latest changes in time. This problem not only affects the user experience, but also increases the difficulty of development and debugging. Recently, I encountered similar troubles in my project, and after some exploration, I found the plugin wiejeben/craft-laravel-mix, which perfectly solved my caching problem.

MySQL: Key Features and Capabilities Explained MySQL: Key Features and Capabilities Explained Apr 18, 2025 am 12:17 AM

MySQL is an open source relational database management system that is widely used in Web development. Its key features include: 1. Supports multiple storage engines, such as InnoDB and MyISAM, suitable for different scenarios; 2. Provides master-slave replication functions to facilitate load balancing and data backup; 3. Improve query efficiency through query optimization and index use.

MySQL: Structured Data and Relational Databases MySQL: Structured Data and Relational Databases Apr 18, 2025 am 12:22 AM

MySQL efficiently manages structured data through table structure and SQL query, and implements inter-table relationships through foreign keys. 1. Define the data format and type when creating a table. 2. Use foreign keys to establish relationships between tables. 3. Improve performance through indexing and query optimization. 4. Regularly backup and monitor databases to ensure data security and performance optimization.

Laravel framework installation method Laravel framework installation method Apr 18, 2025 pm 12:54 PM

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

How to use Composer to manage PHP project version number How to use Composer to manage PHP project version number Apr 18, 2025 am 06:24 AM

Version control is a key link when managing PHP projects. Recently I was working on a Git-based PHP project and I encountered a problem: how to automatically generate and manage version numbers during development. This problem seems simple, but manual maintenance of the version number is not only cumbersome, but also prone to errors. After some exploration, I found a very useful tool - the sebastian/version library, which was easily integrated into the project through Composer, completely solving my troubles.

See all articles