0% found this document useful (0 votes)
160 views

Create DDL Schema of Particular Table To A File

The document provides information on using the db2look command to extract DDL schema from a particular table in a database into a file. It lists the syntax of the db2look command and descriptions of its various options for extracting the schema, including the database name, table name, output file name, user name, and password. An example command is given to extract the schema for the WFASSIGNMENT table from the maxdb75 database and output it to the WFASSIGNMENT.ddl file.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
160 views

Create DDL Schema of Particular Table To A File

The document provides information on using the db2look command to extract DDL schema from a particular table in a database into a file. It lists the syntax of the db2look command and descriptions of its various options for extracting the schema, including the database name, table name, output file name, user name, and password. An example command is given to extract the schema for the WFASSIGNMENT table from the maxdb75 database and output it to the WFASSIGNMENT.ddl file.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

To create ddl schema of particular table to a file.

command:Db2look -d <datadase name> -e -z MAXIMO -T WFASSIGNMENT -xd -o


WFASSIGNMENT.txt -i db2admin -w maxadmin@123
MAXIMO-->Schema
WFASSIGNMENT-->Table name
WFASSIGNMENT.ddl--> Output file name
db2admin-->User name
maxadmin@123-->Password
in above command
ex-->Db2look -d maxdb75 -e -z MAXIMO -T WFASSIGNMENT -xd -o WF
ASSIGNMENT.ddl -i db2admin -w maxadmin@123

Syntax: db2look -d DBname [-e] [-xs] [-xdir Path] [-u Creator] [-z Schema]
[-t Tname1 Tname2...TnameN] [-tw Tname] [-h]
[-o Fname] [-a] [-m] [-c] [-r] [-l] [-x] [-xd] [-f]
[-fd] [-td x] [-noview] [-i userID] [-w password]
[-v Vname1 Vname2 ... VnameN] [-dp] [-ct]
[-wrapper WrapperName] [-server ServerName] [-nofed]
[-wlm] [-ap] [-mod] [-cor] [-wrap]

[-wrapper WrapperName] [-server ServerName][-fedonly]


[-nofed]

db2look [-h]

-d: Database Name: This must be specified


-e: Extract DDL file needed to duplicate database

-xs: Export XSR objects and generate a script containing DDL statements
-xdir: Path name: the directory in which XSR objects will be placed
-u: Creator ID: If -u and -a are both not specified then $USER will be used
-z: Schema name: If -z and -a are both specified then -z will be ignored
-t: Generate statistics for the specified tables
-tw: Generate DDLs for tables whose names match the pattern criteria (wildcard
characters) of the table name
-ap: Generate AUDIT USING Statements
-wlm: Generate WLM specific DDL Statements
-mod: Generate DDL statements for Module
-cor: Generate DDL with CREATE OR REPLACE clause
-wrap: Generates obfuscated versions of DDL statements
-h: More detailed help message
-o: Redirects the output to the given file name
-a: Generate statistics for all creators
-m: Run the db2look utility in mimic mode
-c: Do not generate COMMIT statements for mimic
-r: Do not generate RUNSTATS statements for mimic
-l: Generate Database Layout: Database partition groups, Bufferpools and Tablespaces
-x: Generate Authorization statements DDL excluding the original definer of the object
-xd: Generate Authorization statements DDL including the original definer of the object
-f: Extract configuration parameters and environment variables
-td: Specifies x to be statement delimiter (default is semicolon(;))
-i: User ID to log on to the server where the database resides
-w: Password to log on to the server where the database resides
-noview: Do not generate CREATE VIEW ddl statements
-wrapper: Generates DDLs for federated objects that apply to this wrapper
-server: Generates DDLs for federated objects that apply to this server

-FEDONLY: Only created Federated DDL Statements


-nofed: Do not generate Federated DDL
-fd: Generates db2fopt statements for opt_buffpage and opt_sortheap along with other
cfg and env parameters.
-v: Generate DDL for view only, this option is ignored when -t is specified
-dp: Generate DROP statement before CREATE statement
-ct: Generate DDL Statements by object creation time
=======================================================
======================================

output file as:...

wfassignment.txt

You might also like