原帖地址: http://blog.csdn.net/nsrainbow/article/details/41575807

Sqoop是什么

sqoop是用于在传统关系型数据库跟hdfs之间进行数据导入导出的工具。目前sqoop已经出了2,但是截至当前,sqoop2还是个半成品,不支持hbase,功能还很少,所以我还是主要讲sqoop1

安装Sqoop1

[plain]view plaincopy
  1. yum install -y sqoop

用help测试下是否有安装好

[plain]view plaincopy
  1. # sqoop help
  2. Warning: /usr/lib/sqoop/../hive-hcatalog does not exist! HCatalog jobs will fail.
  3. Please set $HCAT_HOME to the root of your HCatalog installation.
  4. Warning: /usr/lib/sqoop/../accumulo does not exist! Accumulo imports will fail.
  5. Please set $ACCUMULO_HOME to the root of your Accumulo installation.
  6. 14/11/28 11:33:11 INFO sqoop.Sqoop: Running Sqoop version: 1.4.4-cdh5.0.1
  7. usage: sqoop COMMAND [ARGS]
  8. Available commands:
  9. codegen            Generate code to interact with database records
  10. create-hive-table  Import a table definition into Hive
  11. eval               Evaluate a SQL statement and display the results
  12. export             Export an HDFS directory to a database table
  13. help               List available commands
  14. import             Import a table from a database to HDFS
  15. import-all-tables  Import tables from a database to HDFS
  16. job                Work with saved jobs
  17. list-databases     List available databases on a server
  18. list-tables        List available tables in a database
  19. merge              Merge results of incremental imports
  20. metastore          Run a standalone Sqoop metastore
  21. version            Display version information
  22. See 'sqoop help COMMAND' for information on a specific command.

拷贝驱动到 /usr/lib/sqoop/lib

mysql jdbc 驱动下载地址

下载后,解压开找到驱动jar包,upload到服务器上,然后移过去

[plain]view plaincopy
  1. mv /home/alex/mysql-connector-java-5.1.34-bin.jar /usr/lib/sqoop/lib

导入

数据准备

在mysql中建立sqoop_test库
[sql]view plaincopy
  1. create database sqoop_test;
在sqoop_test里面建立一个表 
[sql]view plaincopy
  1. CREATE TABLE `employee` (
  2. `id` int(11) NOT NULL,
  3. `name` varchar(20) NOT NULL,
  4. PRIMARY KEY (`id`)
  5. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

插入几条数据

[sql]view plaincopy
  1. insert into employee (id,name) values (1,'michael');
  2. insert into employee (id,name) values (2,'ted');
  3. insert into employee (id,name) values (3,'jack');

导入mysql到hdfs

列出所有表

我们先不急着导入,先做几个准备步骤热身一下,也方便排查问题
先把mysql的测试用户设置成可以远程连接的,因为hadoop会把导入/导出任务分发到不同的机器上执行,所以你的数据库url里面不能写localhost而要写成域名或者IP。本例子中直接用root来测试,所以就改下root的Host (实际生产环境千万别这么干啊!)
[sql]view plaincopy
  1. mysql> use mysql
  2. mysql> update user set Host='%' where Host='127.0.0.1' and User='root';
  3. mysql> flush privileges;
列出所有数据库
[plain]view plaincopy
  1. # sqoop list-databases --connect jdbc:mysql://host1:3306/sqoop_test --username root --password root
  2. Warning: /usr/lib/sqoop/../hive-hcatalog does not exist! HCatalog jobs will fail.
  3. Please set $HCAT_HOME to the root of your HCatalog installation.
  4. Warning: /usr/lib/sqoop/../accumulo does not exist! Accumulo imports will fail.
  5. Please set $ACCUMULO_HOME to the root of your Accumulo installation.
  6. 14/12/01 09:20:28 INFO sqoop.Sqoop: Running Sqoop version: 1.4.4-cdh5.0.1
  7. 14/12/01 09:20:28 WARN tool.BaseSqoopTool: Setting your password on the command-line is insecure. Consider using -P instead.
  8. 14/12/01 09:20:28 INFO manager.MySQLManager: Preparing to use a MySQL streaming resultset.
  9. information_schema
  10. cacti
  11. metastore
  12. mysql
  13. sqoop_test
  14. wordpress
  15. zabbix
先用sqoop连接上数据库并列出所有表
[plain]view plaincopy
  1. # sqoop list-tables --connect jdbc:mysql://host1/sqoop_test --username root --password root
  2. Warning: /usr/lib/sqoop/../hive-hcatalog does not exist! HCatalog jobs will fail.
  3. Please set $HCAT_HOME to the root of your HCatalog installation.
  4. Warning: /usr/lib/sqoop/../accumulo does not exist! Accumulo imports will fail.
  5. Please set $ACCUMULO_HOME to the root of your Accumulo installation.
  6. 14/11/28 11:46:11 INFO sqoop.Sqoop: Running Sqoop version: 1.4.4-cdh5.0.1
  7. 14/11/28 11:46:11 WARN tool.BaseSqoopTool: Setting your password on the command-line is insecure. Consider using -P instead.
  8. 14/11/28 11:46:11 INFO manager.MySQLManager: Preparing to use a MySQL streaming resultset.
  9. employee
  10. student
  11. workers

这条命令不用跟驱动的类名是因为sqoop默认支持mysql的,如果要跟jdbc驱动的类名用

[plain]view plaincopy
  1. # sqoop list-tables --connect jdbc:mysql://localhost/sqoop_test --username root --password root --driver com.mysql.jdbc.Driver

导入数据到hdfs

[plain]view plaincopy
  1. sqoop import --connect jdbc:mysql://host1:3306/sqoop_test --username root --password root --table employee --m 1 --target-dir /user/test3
  • import 代表是导入任务
  • --connect 指定连接的url
  • --username 指定用户名
  • --password 指定密码
  • --table 指定要导入的数据源表
  • --m 代表任务并发数,这里设置成1
  • --target-dir 代表导入后要存储的hdfs上的文件夹位置
  • 更详细的参数介绍在 http://sqoop.apache.org/docs/1.4.5/SqoopUserGuide.html#_purpose
执行的效果

[plain]view plaincopy
  1. [root@host1 hadoop-hdfs]# sqoop import --connect jdbc:mysql://host1:3306/sqoop_test --username root --password root --table employee --m 1 --target-dir /user/test3
  2. Warning: /usr/lib/sqoop/../hcatalog does not exist! HCatalog jobs will fail.
  3. Please set $HCAT_HOME to the root of your HCatalog installation.
  4. Warning: /usr/lib/sqoop/../accumulo does not exist! Accumulo imports will fail.
  5. Please set $ACCUMULO_HOME to the root of your Accumulo installation.
  6. 15/01/23 06:48:10 INFO sqoop.Sqoop: Running Sqoop version: 1.4.5-cdh5.2.1
  7. 15/01/23 06:48:10 WARN tool.BaseSqoopTool: Setting your password on the command-line is insecure. Consider using -P instead.
  8. 15/01/23 06:48:11 INFO manager.SqlManager: Using default fetchSize of 1000
  9. 15/01/23 06:48:11 INFO tool.CodeGenTool: Beginning code generation
  10. 15/01/23 06:48:12 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM `employee` AS t LIMIT 1
  11. 15/01/23 06:48:12 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM `employee` AS t LIMIT 1
  12. 15/01/23 06:48:12 INFO orm.CompilationManager: HADOOP_MAPRED_HOME is /usr/lib/hadoop-mapreduce
  13. Note: /tmp/sqoop-root/compile/0989201fc3275ff35dc9c41f1031ea42/employee.java uses or overrides a deprecated API.
  14. Note: Recompile with -Xlint:deprecation for details.
  15. 15/01/23 06:48:45 INFO orm.CompilationManager: Writing jar file: /tmp/sqoop-root/compile/0989201fc3275ff35dc9c41f1031ea42/employee.jar
  16. 15/01/23 06:48:47 WARN manager.MySQLManager: It looks like you are importing from mysql.
  17. 15/01/23 06:48:47 WARN manager.MySQLManager: This transfer can be faster! Use the --direct
  18. 15/01/23 06:48:47 WARN manager.MySQLManager: option to exercise a MySQL-specific fast path.
  19. 15/01/23 06:48:47 INFO manager.MySQLManager: Setting zero DATETIME behavior to convertToNull (mysql)
  20. 15/01/23 06:48:47 INFO mapreduce.ImportJobBase: Beginning import of employee
  21. 15/01/23 06:48:57 INFO Configuration.deprecation: mapred.jar is deprecated. Instead, use mapreduce.job.jar
  22. 15/01/23 06:49:12 INFO Configuration.deprecation: mapred.map.tasks is deprecated. Instead, use mapreduce.job.maps
  23. 15/01/23 06:49:13 INFO client.RMProxy: Connecting to ResourceManager at host1/192.168.199.126:8032
  24. 15/01/23 06:50:10 INFO db.DBInputFormat: Using read commited transaction isolation
  25. 15/01/23 06:50:10 INFO mapreduce.JobSubmitter: number of splits:1
  26. 15/01/23 06:50:12 INFO mapreduce.JobSubmitter: Submitting tokens for job: job_1421771779239_0003
  27. 15/01/23 06:50:22 INFO impl.YarnClientImpl: Submitted application application_1421771779239_0003
  28. 15/01/23 06:50:23 INFO mapreduce.Job: The url to track the job: http://host1:8088/proxy/application_1421771779239_0003/
  29. 15/01/23 06:50:23 INFO mapreduce.Job: Running job: job_1421771779239_0003
  30. 15/01/23 06:57:10 INFO mapreduce.Job: Job job_1421771779239_0003 running in uber mode : false
  31. 15/01/23 06:57:16 INFO mapreduce.Job:  map 0% reduce 0%
  32. 15/01/23 06:58:13 INFO mapreduce.Job:  map 100% reduce 0%
  33. 15/01/23 06:58:19 INFO mapreduce.Job: Job job_1421771779239_0003 completed successfully
  34. 15/01/23 06:58:33 INFO mapreduce.Job: Counters: 30
  35. File System Counters
  36. FILE: Number of bytes read=0
  37. FILE: Number of bytes written=128844
  38. FILE: Number of read operations=0
  39. FILE: Number of large read operations=0
  40. FILE: Number of write operations=0
  41. HDFS: Number of bytes read=87
  42. HDFS: Number of bytes written=23
  43. HDFS: Number of read operations=4
  44. HDFS: Number of large read operations=0
  45. HDFS: Number of write operations=2
  46. Job Counters
  47. Launched map tasks=1
  48. Other local map tasks=1
  49. Total time spent by all maps in occupied slots (ms)=74359
  50. Total time spent by all reduces in occupied slots (ms)=0
  51. Total time spent by all map tasks (ms)=74359
  52. Total vcore-seconds taken by all map tasks=74359
  53. Total megabyte-seconds taken by all map tasks=76143616
  54. Map-Reduce Framework
  55. Map input records=3
  56. Map output records=3
  57. Input split bytes=87
  58. Spilled Records=0
  59. Failed Shuffles=0
  60. Merged Map outputs=0
  61. GC time elapsed (ms)=501
  62. CPU time spent (ms)=2680
  63. Physical memory (bytes) snapshot=107692032
  64. Virtual memory (bytes) snapshot=654852096
  65. Total committed heap usage (bytes)=17760256
  66. File Input Format Counters
  67. Bytes Read=0
  68. File Output Format Counters
  69. Bytes Written=23
  70. 15/01/23 06:58:35 INFO ipc.Client: Retrying connect to server: host1.localdomain/192.168.199.126:39437. Already tried 0 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=3, sleepTime=1000 MILLISECONDS)
  71. 15/01/23 06:58:36 INFO ipc.Client: Retrying connect to server: host1.localdomain/192.168.199.126:39437. Already tried 1 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=3, sleepTime=1000 MILLISECONDS)
  72. 15/01/23 06:58:37 INFO ipc.Client: Retrying connect to server: host1.localdomain/192.168.199.126:39437. Already tried 2 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=3, sleepTime=1000 MILLISECONDS)
  73. 15/01/23 06:58:37 INFO mapred.ClientServiceDelegate: Application state is completed. FinalApplicationStatus=SUCCEEDED. Redirecting to job history server
  74. 15/01/23 06:59:16 INFO mapreduce.ImportJobBase: Transferred 23 bytes in 601.9783 seconds (0.0382 bytes/sec)
  75. 15/01/23 06:59:16 INFO mapreduce.ImportJobBase: Retrieved 3 records.

查看一下结果

[plain]view plaincopy
  1. # hdfs dfs -ls /user/test3
  2. Found 2 items
  3. -rw-r--r--   2 root supergroup          0 2014-12-01 14:16 /user/test3/_SUCCESS
  4. -rw-r--r--   2 root supergroup         16 2014-12-01 14:16 /user/test3/part-m-00000
  5. # hdfs dfs -cat /user/test3/part-m-00000
  6. 1,michael
  7. 2,ted
  8. 3,jack

我遇到遇到的问题

如果你遇到以下问题
[plain]view plaincopy
  1. 14/12/01 10:12:42 INFO mapreduce.Job: Task Id : attempt_1406097234796_0017_m_000000_0, Status : FAILED
  2. Error: employee : Unsupported major.minor version 51.0

用ps aux| grep hadoop看下会发现hadoop用的是jdk1.6 。我的cdh是5.0.1 sqoop版本是 1.4.4 ,我遇到了这个问题。

原因:sqoop是使用jdk1.7编译的,所以如果你用 ps aux| grep hadoop 看到hadoop用的是1.6运行的,那sqoop不能正常工作
注意:CDH4.7以上已经兼容jdk1.7 ,但如果你是从4.5升级上来的会发现hadoop用的是jdk1.6,需要修改一下整个hadoop调用的jdk为1.7,而且这是官方推荐的搭配 

关于改jdk的方法

官方提供了2个方法
http://www.cloudera.com/content/cloudera/en/documentation/cdh4/latest/CDH4-Requirements-and-Supported-Versions/cdhrsv_topic_3.html
这个是让你把 /usr/java/ 下建一个软链叫 default 指向你要的jdk,我这么做了,无效 
http://www.cloudera.com/content/cloudera/en/documentation/archives/cloudera-manager-4/v4-5-3/Cloudera-Manager-Enterprise-Edition-Installation-Guide/cmeeig_topic_16_2.html
这个是叫你增加一个环境变量, 我这么做了,无效
最后我用了简单粗暴的办法:停掉所有相关服务,然后删掉那个该死的jdk1.6然后再重启,这回就用了 /usr/java/default 了
停掉所有hadoop相关服务的命令
[plain]view plaincopy
  1. for x in `cd /etc/init.d ; ls hive-*` ; do sudo service $x stop ; done
  2. for x in `cd /etc/init.d ; ls hbase-*` ; do sudo service $x stop ; done
  3. for x in `cd /etc/init.d ; ls hadoop-*` ; do sudo service $x stop ; done
  4. <span style="font-family: Arial, Helvetica, sans-serif;">/etc/init.d/zookeeper-server stop</span>
zookeeper , hbase, hive 如果你们没装就跳过。建议你们用ps aux | grep jre1.6 去找找有什么服务,然后一个一个关掉,先关其他的,最后关hadoop
启动所有
[plain]view plaincopy
  1. <pre code_snippet_id="538371" snippet_file_name="blog_20141201_15_171205" name="code" class="plain">/etc/init.d/zookeeper-server start

for x in `cd /etc/init.d ; ls hadoop-*` ; do sudo service $x start ; donefor x in `cd /etc/init.d ; ls hbase-*` ; do sudo service $x start ; donefor x in `cd /etc/init.d ; ls hive-*` ; do sudo service $x start ; done

从hdfs导出数据到mysql

接着这个例子做

数据准备

清空employee
[sql]view plaincopy
  1. mysql> truncate employee

导出数据到mysql

[plain]view plaincopy
  1. # sqoop export --connect jdbc:mysql://host1:3306/sqoop_test --username root --password root --table employee --m 1 --export-dir /user/test3
  • export 代表导出任务
  • --connect 连接的url
  • --username 用户名
  • --password 密码
  • --table 要导出的mysql数据表名字
  • --m 并发数
  • --export-dir  导出的hdfs源文件夹
  • 更详细的参数介绍在 http://sqoop.apache.org/docs/1.4.5/SqoopUserGuide.html#_purpose_3
执行效果
[plain]view plaincopy
  1. [root@host1 hadoop-hdfs]# sqoop export --connect jdbc:mysql://host1:3306/sqoop_test --username root --password root --table employee --m 1 --export-dir /user/test3
  2. Warning: /usr/lib/sqoop/../hcatalog does not exist! HCatalog jobs will fail.
  3. Please set $HCAT_HOME to the root of your HCatalog installation.
  4. Warning: /usr/lib/sqoop/../accumulo does not exist! Accumulo imports will fail.
  5. Please set $ACCUMULO_HOME to the root of your Accumulo installation.
  6. 15/01/23 07:04:44 INFO sqoop.Sqoop: Running Sqoop version: 1.4.5-cdh5.2.1
  7. 15/01/23 07:04:44 WARN tool.BaseSqoopTool: Setting your password on the command-line is insecure. Consider using -P instead.
  8. 15/01/23 07:04:45 INFO manager.SqlManager: Using default fetchSize of 1000
  9. 15/01/23 07:04:45 INFO tool.CodeGenTool: Beginning code generation
  10. 15/01/23 07:04:48 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM `employee` AS t LIMIT 1
  11. 15/01/23 07:04:48 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM `employee` AS t LIMIT 1
  12. 15/01/23 07:04:48 INFO orm.CompilationManager: HADOOP_MAPRED_HOME is /usr/lib/hadoop-mapreduce
  13. Note: /tmp/sqoop-root/compile/4e6318352dc0beeb6e1e7724c8a6d935/employee.java uses or overrides a deprecated API.
  14. Note: Recompile with -Xlint:deprecation for details.
  15. 15/01/23 07:05:07 INFO orm.CompilationManager: Writing jar file: /tmp/sqoop-root/compile/4e6318352dc0beeb6e1e7724c8a6d935/employee.jar
  16. 15/01/23 07:05:07 INFO mapreduce.ExportJobBase: Beginning export of employee
  17. 15/01/23 07:05:11 INFO Configuration.deprecation: mapred.jar is deprecated. Instead, use mapreduce.job.jar
  18. 15/01/23 07:05:24 INFO Configuration.deprecation: mapred.reduce.tasks.speculative.execution is deprecated. Instead, use mapreduce.reduce.speculative
  19. 15/01/23 07:05:24 INFO Configuration.deprecation: mapred.map.tasks.speculative.execution is deprecated. Instead, use mapreduce.map.speculative
  20. 15/01/23 07:05:24 INFO Configuration.deprecation: mapred.map.tasks is deprecated. Instead, use mapreduce.job.maps
  21. 15/01/23 07:05:25 INFO client.RMProxy: Connecting to ResourceManager at host1/192.168.199.126:8032
  22. 15/01/23 07:06:00 INFO input.FileInputFormat: Total input paths to process : 1
  23. 15/01/23 07:06:00 INFO input.FileInputFormat: Total input paths to process : 1
  24. 15/01/23 07:06:01 INFO mapreduce.JobSubmitter: number of splits:1
  25. 15/01/23 07:06:01 INFO Configuration.deprecation: mapred.map.tasks.speculative.execution is deprecated. Instead, use mapreduce.map.speculative
  26. 15/01/23 07:06:02 INFO mapreduce.JobSubmitter: Submitting tokens for job: job_1421771779239_0004
  27. 15/01/23 07:06:05 INFO impl.YarnClientImpl: Submitted application application_1421771779239_0004
  28. 15/01/23 07:06:06 INFO mapreduce.Job: The url to track the job: http://host1:8088/proxy/application_1421771779239_0004/
  29. 15/01/23 07:06:06 INFO mapreduce.Job: Running job: job_1421771779239_0004
  30. 15/01/23 07:08:03 INFO mapreduce.Job: Job job_1421771779239_0004 running in uber mode : false
  31. 15/01/23 07:08:03 INFO mapreduce.Job:  map 0% reduce 0%
  32. 15/01/23 07:12:15 INFO mapreduce.Job:  map 100% reduce 0%
  33. 15/01/23 07:12:49 INFO mapreduce.Job: Job job_1421771779239_0004 completed successfully
  34. 15/01/23 07:12:52 INFO mapreduce.Job: Counters: 30
  35. File System Counters
  36. FILE: Number of bytes read=0
  37. FILE: Number of bytes written=128509
  38. FILE: Number of read operations=0
  39. FILE: Number of large read operations=0
  40. FILE: Number of write operations=0
  41. HDFS: Number of bytes read=147
  42. HDFS: Number of bytes written=0
  43. HDFS: Number of read operations=4
  44. HDFS: Number of large read operations=0
  45. HDFS: Number of write operations=0
  46. Job Counters
  47. Launched map tasks=1
  48. Rack-local map tasks=1
  49. Total time spent by all maps in occupied slots (ms)=253584
  50. Total time spent by all reduces in occupied slots (ms)=0
  51. Total time spent by all map tasks (ms)=253584
  52. Total vcore-seconds taken by all map tasks=253584
  53. Total megabyte-seconds taken by all map tasks=259670016
  54. Map-Reduce Framework
  55. Map input records=3
  56. Map output records=3
  57. Input split bytes=121
  58. Spilled Records=0
  59. Failed Shuffles=0
  60. Merged Map outputs=0
  61. GC time elapsed (ms)=3872
  62. CPU time spent (ms)=3390
  63. Physical memory (bytes) snapshot=97640448
  64. Virtual memory (bytes) snapshot=652566528
  65. Total committed heap usage (bytes)=15585280
  66. File Input Format Counters
  67. Bytes Read=0
  68. File Output Format Counters
  69. Bytes Written=0
  70. 15/01/23 07:12:52 INFO mapreduce.ExportJobBase: Transferred 147 bytes in 448.1491 seconds (0.328 bytes/sec)
  71. 15/01/23 07:12:52 INFO mapreduce.ExportJobBase: Exported 3 records.

最后去mysql看成功导出了3条数据
[sql]view plaincopy
  1. mysql> select * from employee;
  2. +----+---------+
  3. | id | name    |
  4. +----+---------+
  5. |  1 | michael |
  6. |  2 | ted     |
  7. |  3 | jack    |
  8. +----+---------+
  9. 3 rows in set (0.12 sec)
hadoop是一个分布式系统,所有的map reduce任务都会被分发到各个节点上去执行,所以实际环境上mysql jdbc url 里面千万不要写localhost,否则只有你这台机子上的mysql的数据会被读到,其他机子上的任务都会失败

Alex 的 Hadoop 菜鸟教程: 第12课 Sqoop1 安装/导入/导出教程相关推荐

  1. Alex 的 Hadoop 菜鸟教程: 第10课 Hive 安装和使用教程

    原帖地址: http://blog.csdn.net/nsrainbow/article/details/41748863 最新课程请关注原作者博客 声明 本文基于Centos 6.x + CDH 5 ...

  2. Alex 的 Hadoop 菜鸟教程: 第5课 YARN 安装以及helloworld (基于centos的CDH)

    原帖地址:http://blog.csdn.net/nsrainbow/article/details/36627675 新老MapReduce的比较 说到YARN肯定要先说下老的MapReduce ...

  3. linux中mongo的导出数据,Linux下mongodb安装及数据导入导出教程(示例代码)

    Linux下mongodb安装及数据导入导出教程 #查看linux发行版本 cat /etc/issue #查看linux内核版本号 uname -r 一.Linux下mongodb安装的一般步骤 1 ...

  4. MongoDB 教程六: MongoDB管理:数据导入导出,数据备份恢复及用户安全与认证

    视频地址:MongoDB 教程六: MongoDB管理:数据导入导出,数据备份恢复及用户安全与认证 MongoDB数据库备份与恢复 一.备份 先介绍下命令语法: mongodump -h dbhost ...

  5. Linux下mongodb安装及数据导入导出教程

    Linux下mongodb安装及数据导入导出教程 #查看linux发行版本 cat /etc/issue #查看linux内核版本号 uname -r 一.Linux下mongodb安装的一般步骤 1 ...

  6. Eclipse安装教程 ——史上最详细安装Java Python教程说明

                                                                Eclipse安装教程 --史上最详细安装Java&Python教程说明 ...

  7. K3金碟新建账套及基础数据导入导出教程

    K3金碟新建账套及基础数据导入导出教程

  8. python3.7.4安装教程win7_Window10下python3.7 安装与卸载教程图解

    Window10下python3.7 安装与卸载教程图解 1.进入官网https://www.python.org/,点击Downloads下的Windows按钮,进入下载页面. 2.如下图所示,点击 ...

  9. MySQL8.0安装教程,在Linux环境安装MySQL8.0教程,最新教程 超详细

    在Linux系统安装MySQL8.0,网上已经有很多的教程了,到自己安装的时候却发现各种各样的问题,现在把安装过程和遇到的问题都记录下来. 需要说明的一点是我使用的是SSH secure shell ...

  10. JavaScript 导入导出教程与示例

    我很高兴今天有机会与您分享 JavaScript 导入和导出语句.import 语句用于导入由另一个 JavaScript 文件导出的绑定. 代码可管理性是 Web 开发中最重要的因素.如果您正在构建 ...

最新文章

  1. 复旦邱锡鹏团队:Transformer最新综述!
  2. 里程碑:DTrace 切换到 GPL 许可证
  3. dell服务器 稳定性,设计优秀管理方便 戴尔R710服务器评测
  4. mysql性能调优快捷键_mysql优化篇
  5. ZedGraph5.1.5源码分析去掉鼠标悬浮内容闪烁问题(附源码下载)
  6. 沉浸式模式与沉浸式状态栏
  7. Highcharts改Y轴的刻度值
  8. Android中long类型对应Java/Jni/C++中的类型
  9. 杭电 3400 Line belt 解题报告
  10. 商品订单(增删改查):新增订单;批量删除,发货;模糊查询,下拉菜单内容过滤(含时间);全选反选,列名排序
  11. 关于ROHDESCHWARZ公司电流探头EZ-17系数修正的说明
  12. 导数卷积 牛客 NTT
  13. 微信平台发布谣言整治报告:近半年处罚公众号约4.5万个
  14. 塔塔露也能学会的算法(1) | dijkstra从入门到放弃
  15. 2019华为优招-南研所
  16. windows10家庭版打开组策略
  17. 英语名篇——关于《论学习》的读后感
  18. Linux常见命令 24 - RPM命名管理-包命名与依赖性
  19. 阿里飞冰官网 Icework 一个集成框架 构建前端工具
  20. mysql常用查看表结构的SQL语句

热门文章

  1. 现代操作系统(原书第四版)课后题答案 —— 第一章 引论
  2. flash mx拖拽实例_Flash MX 2004 Professional的百叶窗过渡效果
  3. WEB前端优化必备压缩工具YUI-compressor详解
  4. delphi7 调用XE编译的DLL遇到的坑
  5. 动物老了没生存能力时,它的子女会养育照顾它吗?
  6. 计算机考试打字软件,书记员考试必备!打字练习软件及电脑练习打字快速提高方法?...
  7. 超实用ExtJS教程100例
  8. h264文件视频存储格式和音频存储格式
  9. widthStep、width
  10. TrueCrypt 密码找回工具