How to export Oracle schema and user detail in sqldeveloper -


in sqldeveloper there useful tool exporting on sql file object exist on schema.

anyhow unable find similar exporting schema , user informations.

the sqldeveloper version i'm using 3.2

thanks, piwakkio.

declare   objectddl clob; begin   in (select * user_objects object_type in(/*whatever want*/) ) loop     select dbms_metadata.get_ddl(i.object_type,i.object_name) objectddl dual;     dbms_output.put_line(objectddl);   end loop; end;  

good luck :)


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -