Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
~1K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for mod

The Alter session is a temporary solution, that makes your session only appears with the format specified.. If you want to create a report or a query or a script that always appear with a specific format then go with TO_CHAR()

Member Avatar for dhineshbcs
0
298
Member Avatar for satish.paluvai

You have two options: --------------------------------------- 1) Create a script set lines 200; set pages 10000; spool c:\DROP_TABLES.txt; select 'DROP TABLE '||table_name||';' from all_tables where owner = 'SCOTT'; -- change the SCOTT to the owner of the tables you need to drop. spool off; --------------------------------------- @c:\DROP_TABLES.txt; -- to run the script …

Member Avatar for vijin
0
209
Member Avatar for 53050373

Every transaction you do in toad, you can see a scripr for it.. while if you are looking to create your own script this you need to be clearer. The Export utility can create a dump file for a full schema, as in : user, his roles and privileges and …

Member Avatar for Musta
0
184
Member Avatar for Lost in Code...

I prefare the Red and green color... SELECT INITCAP(lastname), INITCAP(firstname), NVL(TO_CHAR(referred),TO_CHAR(0009999)) FROM customers

Member Avatar for Musta
0
164
Member Avatar for sillyboy

Can you be clearer in [COLOR="Red"][U][B]"UPDATING"[/B][/U][/COLOR] every hour??!

Member Avatar for Musta
0
128
Member Avatar for g.prabu

-------------------------------------------------- Assume : table_name1 is a table with a,b,c are fields in it. table_name2 is a table with l,m,n are fields in it. proc_name insert from table_name1 to table_name2, showing the list. --------------------------------------------------- CREATE OR REPLACE PROCEDURE proc_name AS x number; y varchar2(30); z date; CURSOR c IS SELECT a,b,c …

Member Avatar for Musta
0
125

The End.