You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**scheme2ddl** is command line util for export oracle schema to set of ddl scripts. Provide a lot of configurations via basic command line options or advanced XML configuartion.
4
4
@@ -66,8 +66,10 @@ On Unix platform you can run `scheme2ddl.jar` as executable file:
66
66
### How it is work inside?
67
67
68
68
1. First, get list of all user_object to export
69
-
70
-
`select * from user_objects`
69
+
70
+
```sql
71
+
select*from user_objects
72
+
```
71
73
72
74
2. then applying [dbms_metadata.set_transform_param](http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_metada.htm#i1000135)
73
75
3. for every user object invoke [dbms_metadata.get_ddl](http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_metada.htm#i1019414) and [dbms_metadata.get_dependent_ddl](http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_metada.htm#i1019414)
0 commit comments