mdb批量导入mysql_快速将 access 用的 mdb 文件导入到 mysql 里

下载链接:http://www.bullzip.com/download/a2m/msa2mys_5_4_0_274.zip

Access To MySQL

Access to MySQL is a small program that will convert Microsoft Access Databases to MySQL.

Wizard interface.

Transfer data directly from one server to another.

Create a dump file.

Select tables to transfer.

Select fields to transfer.

Transfer password protected databases.

Supports both shared security and user-level security.

Optional transfer of indexes.

Optional transfer of records.

Optional transfer of default values in field definitions.

Identifies and transfers auto number field types.

Command line interface.

Easy install, uninstall and upgrade.

Using Access to MySQL

When you start the program it will run you through a wizard. The wizard will ask you all the necessary questions to setup the database transfer. In the first step you are asked to supply the file name of the Microsoft Access Database to convert.

If your Access database requires you to log in you can specify a user name, password and a system database.

Specify Access database

The destination database and MySQL server connection settings are specified as shown below. You will have the choice of placing the result in a dump file instead of transferring it directly to another MySQL database.

MySQL connection and destination settings

You can specify exactly which tables you want to transfer to the destination database. Just check the box in front of each table name you want to transfer and click next.

Selecting the tables to transfer

Additional transfer options can be set in the dialog shown below. Here you can specify if you want to transfer the indexes of the Access database to MySQL. You can also select not to transfer any records. This will only create the tables in the destination table and leave them empty.

In both Access and MySQL fields can have default values. When creating the tables in MySQL the program can preserve the default values specified in the Access field definition. Also auto number properties of a field can be transferred if you check the Auto number properties box.

Setting advanced transfer options

After answering all the questions in the wizard you can press Finish. The transfer will now run until all the selected tables are transferred. When the transfer is done you will see a small report telling you how much data was transferred.

The settings of the wizard can be saved in a .ini file.

Installation

You can download the latest version here. After downloading the setup program you should simply run it to install the program.

More functionality

While our product offers a lot of functionality for free there is a commercial alternative. The commercial program has even more functionality but it comes at a small cost. We are an affiliate of DMSoft and if you buy any of their products then you also support our efforts to product great free software.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/359405.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

动画

1.UIVIew 1.1 动画块(改变背景颜色和移动) static BOOL flagYES; //开始动画 [UIView beginAnimations:nil context:nil]; //运动的时间 [UIView setAnimationDuration:2.f]; //延时启动 [UIView setAnimationDelay:2.f]; //速度曲线 [UIView setAnimationCurve:UIViewAnima…

app engine_Google App Engine:在您自己的域中托管应用程序

app engine在Google App Engine中创建新应用程序时,您将获得一个域名“ yourapp.appspot.com”。 但是,谁会想要以这样的后缀托管他们的应用程序(除非您喜欢它!)? 为了改善您的应用程序品牌,最好…

mysql二进制大文件_Mysql实例Mysql LONGTEXT 类型存储大文件(二进制也可以) (修改+调试+整理)...

《Mysql实例Mysql LONGTEXT 类型存储大文件(二进制也可以) (修改调试整理)》要点:本文介绍了Mysql实例Mysql LONGTEXT 类型存储大文件(二进制也可以) (修改调试整理),希望对您有用。如果有疑问,可以联系我们。#include "stdafx.h"/…

bzoj2243 [SDOI2011]染色

Description 给定一棵有n个节点的无根树和m个操作,操作有2类: 1、将节点a到节点b路径上所有点都染成颜色c; 2、询问节点a到节点b路径上的颜色段数量(连续相同颜色被认为是同一段),如“112221”由3段组成&am…

阿里云mysql创建多个用户_阿里云MySQL创建指定用户访问指定表

欢迎大家关注我的公众号,有问题可以及时和我交流。1.首先进入到root用户环境mysql -uroot -p输入自己的root密码登录。登录成功之后如果表之前已经存在的话就不需要创建,如果表不存在的话使用创建表命令创建。create database table;2.给用户…

自定义实现moveable button

实现的效果图: 自定义MVButton,继承自UIButton. 属性声明如下: property (nonatomic) CGPoint beginPoint; property (nonatomic) BOOL dragEnable;//自定义button对触摸事件进行响应- (void)touchesBegan:(NSSet *)touches withEvent:(UI…

jOOQ星期二:Vlad Mihalcea深入了解SQL和Hibernate

欢迎来到jOOQ Tuesdays系列。 在本系列中,我们每隔一个月的第三个星期二发布一篇文章,从jOOQ的角度采访我们发现该行业令人兴奋的人。 这包括从事SQL,Java,开放源代码以及其他各种相关主题的人员。 我们很高兴在第三版中与Vlad …

python编程序列类型_python序列类型种类详解

python序列类型包括哪三种python序列类型包括:列表、元组、字典列表:有序可变序列创建:userlist [1,2,3,4,5,6]修改:userlist[5] 999添加:userlist.append(777)删除:userlist.remove(4) 或者 del(userlis…

GitHub初次使用记录(一)

1、从GitHub上克隆或者复制别人的档案库: 克隆档案库时需要打开本地Git客户端(比如GitHub for Windows 和 GitExtesnsion )操作。 下面是用GitExtension克隆档案库: 转载于:https://www.cnblogs.com/lxf1117/p/4140048.html

mysql中逗号前的字符串_MySql逗号拼接字符串查询的两种方法

下面两个函数的使用和FIND_IN_SET一样,使用时只需要把FIND_IN_SET换成FIND_PART_IN_SET或FIND_ALL_PART_IN_SET例如某字段里是为1,2,3,4,5使用方法:第一种,传入1,3,6 可以查出来 select * from XXX where FIND_PART_IN_SET(1,3,6,1,2,3,4,5)第二种,传入1,3,6 查不出来 select *…

使用Maven,Jetty和Tomcat在嵌入式容器中运行Java Web应用程序

在开发Java Web应用程序时,从“真实”环境中获得快速反馈非常实用。 在本文中,我将探讨如何在嵌入式容器Jetty或Tomcat中运行带有Maven的Java Web应用程序。 在Podcastpedia.org网站的支持下,我将展示如何配置它们以开发podcastpedia项目。 …

Linux下查看文件和文件夹大小

当磁盘大小超过标准时会有报警提示,这时如果掌握df和du命令是非常明智的选择。 df可以查看一级文件夹大小、使用比例、档案系统及其挂入点,但对文件却无能为力。 du可以查看文件及文件夹的大小。 两者配合使用,非常有效。比如用df查看哪个…

moosefs mysql_moosefs搭建与应用

moosefs搭建与应用MooseFS简介:MooseFS是一个具备冗余容错功能的分布式网络文件系统,它将数据分别存放在多个物理服务器单独磁盘或分区上,确保一份数据有多个备份副本。因此MooseFS是一中很好的分布式存储。接下来我们通过搭建moosefs&#x…

Audio Offload

Audio Offload 音频分载,是系统将音频分载到声卡硬件进行分载处理的功能。从Windows 8开始,音频的硬件加速和分载处理又回来了。为什么说又回来了呢? 因为声卡自创通公司发明开始,相当长一段时间都是由声卡独立完成所有音频处理的…

mysql数据库迁徙_mysql数据迁徙详解

数据迁徙是每个后端都会遇到的工作之一&#xff0c;本文介绍了一些常见的数据迁徙方法与工具mysqldump&#xff1a;数据结构不变的数据迁徙导出数据 mysqldump -u root -p DATABASE_NAME table_name > dump.sql恢复数据 mysql -u root -p DATABESE_NAME < dump.sql或者连…

junit-4.9.jar_JUnit 4.9(测试版3)中的规则

junit-4.9.jar不久前&#xff0c; David Saff宣布了JUnit 4.9的beta版 。 因此&#xff0c;我认为现在是研究该版本中的新增功能的好时机。 JUnit领域中最有用的创新之一是Rule。 我在这里写了有关规则的文章 。 我在这里写了有关JUnit规则的用例 。 规则很棒。 借助JUnit 4.9&…

封装js千分位加逗号和删除逗号

//封装js千分位加逗号和删除逗号alert( format(2545678754.020001) ) //2,545,678,754.03alert( format(-2545678754.020001) ) //-2,545,678,754.02alert( format(2545678754.000000000009) ); //当值很长的时候会出现数字被截取的问题alert( delformat(2,545,678,75…

java集成_Java继承

一.继承1.简介&#xff1a;特点&#xff1a;利于代码复用&#xff1b;缩短开发周期。注&#xff1a;子类不能直接访问父类的私有属性满足“A is a B”的关系就可以形成继承关系例&#xff1a;父类&#xff1a;1 packagecom.swpu.animals;23 public classAnimal {4 //属性5 priv…

查找任意数目参数的最大值

查找任意数目参数的最大值 原文:查找任意数目参数的最大值《C和指针》第7章第4道编程题&#xff1a; 编写一个名叫max_list的函数&#xff0c;它用于检查任意数目的整型参数并返回它们中的最大值。参数列表必须以一个负值结尾&#xff0c;提示列表的结束。 1 /*2 ** 查找任意数…

如何以大数据的JAX-RS响应的形式将JPA结果流化/序列化

有时&#xff0c;有必要通过JPA检索大型数据集&#xff08;例如&#xff0c;超过1,000,000条记录&#xff09;&#xff0c;并将它们填充到java.util.List的单个实例中是有风险的&#xff08;内存障碍&#xff09;。 因此&#xff0c;这是一个快速的解决方案&#xff0c;它可以解…