search
HomeBackend DevelopmentPHP TutorialDetailed steps for cross-platform migration of application systems based on DB2 and PHP (2)_PHP Tutorial
Detailed steps for cross-platform migration of application systems based on DB2 and PHP (2)_PHP TutorialJul 13, 2016 pm 05:35 PM
db2phptwoaddbased ondeal withFieldoperating systemdatabasestepofself-increasingsurfacedetailedCross-platformmigrateneed

5.处理数据库表中的自增字段

对于需要加载的含有自增字段的表,即该表的 ixf 数据文件中有自增列的值, 可以在 load 命令中加入如下参数控制自增字段值:
1). modified by identityignore :加载的数据文件中有自增字段值,load 时忽略数据文件中自增字段值 ;


2). modified by identitymissing :加载的数据文件中没有自增字段值,load 时自动生成自增字段值 ;

3). modified by identityoverride :加载的数据文件中有自增字段值,load 时使用数据文件中的自增字段值 。

为了使目标数据库中含有自增字段的表中数据与源数据库中的数据保持一致,本文实例中选择使用 modified by identityoverride 参数,在导入数据时使用数据文件中的自增字段值。读者可以根据不同情况选择适当的控制参数。

首先,在 srcdb1_tables.ddl 文件中查找所有包自增字段的表名 ( 含有 GENERATED ALWAYS AS IDENTITY 字段的表 ),然后在 srcdb1_load.sql 中将 modified by identityoverride 语句片段插入到这些含有自增字段的表所对应的 load 命令行中。

清单8. load 脚本中自增字段处理

db2 load from test.ixf of ixf modified by identityoverride insert into TEST;

6.执行导出脚本

执行导出脚本,导出所有表的数据 。

# db2 -tvf srcdb1_export.sql

导出的表数据以 ixf 格式存放于当前路径下。

7.保存脚本和数据文件

将所有 DDL 脚本以及数据文件 *.ixf 复制到目标系统所在站点。

LINUX 系统上的操作

1.通过命令行处理器(CLP)创建实例 SRCDB1:

# db2icrt SRCDB1

2.使用 CREATE DATABASE 命令创建数据库 SRCDB1,创建必要的表空间及配置必要的数据库参数。

# db2 create database SRCDB1

3.连接到数据库 SRCDB1,执行 srcdb1_tables.ddl 脚本创建缓冲池,表空间,UDF,表以及 Index,Sequence,视图等数据库对象。

# db2 connect to srcdb1

# db2 -tvf srcdb1_tables.ddl

4.进入到放置 .ixf 数据文件的目录,执行下面的命令导入表数据。

# db2 -tvf srcdb1_load.sql

5.使用 srcdb1_foriegnkeys.ddl,srcdb1_triggers.ddl ,srcdb1_procedures.ddl 脚本文件创建外键约束,触发器和存储过程。

# db2 -tvf srcdb1_foriegnkeys.ddl

# db2 -tvf srcdb1_triggers.ddl

# db2 -tvf srcdb1_procedures.ddl

成功完成上述步骤后,数据库的迁移工作基本完成。

Apache 服务器与 php 的安装和配置

Apache 服务器的安装和配置

Apache HTTP 服务器是一个模块化的软件,管理员可以通过选择服务器中包含的模块进行功能增减。模块可以在编译时被静态包含进httpd二进制文件,也可以编译成独立于httpd二进制文件的动态共享对象 (DSO)。DSO 模块可以与服务器一起编译,也可以用 Apache 扩展工具 (apxs) 单独编译。动态加载的方式相比静态加载具有更高的灵活性。使用动态载入特性,Apache 服务器必须以动态共享对象(DSO,Dynamic Shared Object)的方式编译。Apache 对 DSO 的支持,是基于一个叫 mod_so 的模块来实现的,为支持动态加载方式,这个模块必须预先被静态编译到内核中。因此可以通过 mod_so 模块检测已安装的 Apache 是否支持 DSO:

清单9. mod_so 模块检测

# $APACHEHOME/bin/httpd –l


Compiled in modules:

core.c

prefork.c

http_core.c

mod_so.c

如果在列出的模块名中有 mod_so.c,则说明安装的 Apache 已经支持 DSO,否则需要重新编译 Apache。Apache 的安装和配置过程十分简单,如下所示:

1.下载 httpd-2.0.54.tar.gz(http://httpd.apache.org/),并将其解压到制定目录

# tar zxvf httpd-2.0.54.tar.gz && cd httpd-2.0.54

2.编译安装 apache

# ./configure --prefix=/usr/local/apache2 --enable-module=so

-- prefix 指定 apache 的安装路径

--enable-module=so 将 so 模块(mod_so)静态编译进 apache 服务器的内核,以支持 DSO 模式

# make && make install

3. 启动 apache

# ln -s /usr/local/apache2/bin/apachectl /sbin/apachectl

# apachectl start

php 的安装和配置

在 php 的安装和配置过程中,有两个方面需要注意,首先是 php 与 apache http server 的结合,其次是 php 与 db2 数据源的连接。

When installing PHP in the Apache environment, there are three installation modes to choose from: static module, dynamic module (DSO) and CGI. It is recommended to install in DSO mode. The maintenance and upgrade of this mode are relatively simple. New functional modules can be dynamically added according to needs without recompiling Apache. Of course, this will also bring about some decrease in operating efficiency. The Apache server will be about 20% slower when starting.

PHP also has three ways to connect to DB2 data sources: unified ODBC driver, IBM_DB2 and PDO (php data object).

◆Unified ODBC driver is one of the earliest extension modules for PHP to access databases. Starting with DB2 v7.2, the unified ODBC driver supports access to it. The unified ODBC driver provides a unified data access interface for all databases that support ODBC. In order to ensure the generality of the interface, the unified ODBC driver does not make specific optimizations for different types of databases.

◆IBM_DB2 is an extension module developed and maintained by IBM to interact with DB2 data sources. It complies with the open source license. For applications based on DB2 UDB and PHP 4.x, IBM_DB2 is the best choice because it is optimized for DB2 UDB and avoids some compatibility issues that may exist when using the unified ODBC driver. However, IBM_DB2 only supports DB2 v8.2.2 or higher.

◆PDO is a new database access method that will be supported in php 5.x. In this article, since the versions of the source database and the target database are both DB2 v8.1, and the source environment uses the unified ODBC driver, in order to maintain the consistency of the environment configuration, the unified ODBC driver is still selected as the access interface between PHP and the data source. .

The installation and configuration process of PHP is as follows:

1. Download and unzip php-4.4.4.tar.gz (http://www.php.net/)


# tar zxvf php-4.4.4.tar.gz

# cd php-4.4.4

2. Configure and compile php source code

# ./configure --prefix=/usr/local/php --with-apxs2=/usr/sbin/apxs --without-mysql --with-ibm-db2=/home/reportdb/sqllib

--prefix specifies the installation path of php

--with-apxs2 specifies the path of the apxs program (apxs is a perl script that can compile the php module into a DSO file without apache source code)

--with-ibm-db2 specifies unified ODBC driver as the access interface between php and data sources, and specifies the DB2 instance installation directory.

--without-mysql ignores the default installation configuration of mysql database

#cp php.ini-dist /usr/local/lib

Copy php.ini-dist in the php installation file to /usr/local/lib as the php configuration file.

# make && make install

# cp php.ini-dist /usr/local/lib/php.ini

3. Edit the /usr/local/apache2/conf/httpd.conf file and make the following changes:

Set the main directory of html files: the main directory used to store the web files required for the website

DocumentRoot "/home/web/www/"

Set the order of apache's default file names: apache will search for the default homepage files it supports in the current path in order from front to back

DirectoryIndex index.php index.html.var index.cgi index.html

Add php interpreted file suffix: For all file types that need to be interpreted by PHP, the suffix needs to be added to the AddType configuration item

AddType application/x-httpd-php .php .inc

Load PHP module: load the library libphp4.so under the module directory modules, and add the module structure name php4_module to the active module list

LoadModule php4_module modules/libphp4.so

4. Edit the configuration file /usr/local/apache2/bin/apachectl:

To ensure connectivity with the DB2 database, when starting the Apache service, the DB2 client instance environment needs to be initialized at the same time. When creating a DB2 instance, DB2 will automatically generate a shell script to initialize the required DB2 instance environment. Just call it directly:

if test -f /home/reportdb/sqllib/db2profile; then

./home/reportdb/sqllib/db2profile

fi

5. Then, restart the Apache server to inherit the above configuration changes.

# apachectl restart

6. Write the PHP test file test.php with the following content:

echo phpinfo();
?>

Store it in the main directory of apache's html file /home/web/www, and access the webpage through the browser. If it can be accessed normally (as shown in the figure below), the configuration work is complete.


Conclusion

This article mainly covers the cross-platform migration process of an application system based on php and DB2 UDB. It details the cross-platform migration of the DB2 database system and the installation and configuration process of the Apache server and php application system. Based on practical experience, a feasible solution is provided for the cross-platform migration problem of DB2 database system. This article also gives a detailed description and corresponding solutions for problems that may arise during the transplantation process. Although this article only covers the application system transplantation process from AIX system to LINUX system, readers can also refer to the specific transplantation process and apply it to other platforms.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/508262.htmlTechArticle5. Processing auto-increment fields in database tables. For tables containing auto-increment fields that need to be loaded, that is, the ixf data file of the table has auto-increment column values, you can add the following parameters to the load command...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.