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 #3K
~2K People Reached
Favorite Tags

9 Posted Topics

Member Avatar for iceman29

Hi, I am trying to generate a spool file through below anonymous block in order to find out views on a particualar table. declare cursor c1 is select view_name,text from users_view; rt c1%rowtype; begin open c1; loop fetch c1 into rt; exit when c1%notfound; dbms_output.put_line(rt.view_name || '|' || rt.text); end …

Member Avatar for rubberman
0
208
Member Avatar for cutedipti

Hi Dipti, You can use the below querry to get the table names in your DB: [code] select * from tab; [/code]

Member Avatar for mangal4mTerna
0
331
Member Avatar for topsege2007

If you are just interested in viewing the names and not the other info about tables, you can use [code] select * from tab [/code]

Member Avatar for tsfahmad360
0
187
Member Avatar for iceman29

Hi, Is it possible to display the output of a C program in different font sizes by setting it in the code? If yes, please guide regarding the same. Thanks.

Member Avatar for xavier666
0
223
Member Avatar for iceman29

Hi , Can we have an sql query to get the max 5 values from a column? Please paste a sample code if its possible. Thanks in advance.

Member Avatar for pulsar8700
0
209
Member Avatar for chris5126

Actually, the below command gives the time as per GMT : [code] date -u [/code] where as on using [code] date [/code], we get the time according to what we have set our time zone (TZ) as.

Member Avatar for iceman29
0
205
Member Avatar for iceman29

Hi, I am writing a shell script, and need help with a small piece of code. It is as below: [code] CUST_1=filename b=1 c=$CUST_$b echo $c [/code] I want the output from this as filename, whereas I get it as 1. Please guide as if where am I going wrong …

Member Avatar for iceman29
0
131
Member Avatar for iceman29

Hi, I am not able to use any USB device on my PC(Win XP). and looking for help on this issue. Whenever I connect any pen drive or i pod to the USB port, it shows a balloon saying the name of the device connected and the install driver set …

0
99
Member Avatar for k2k

can also name the file as shellProgramming.sh and diretly run it by giving it as sh shellProgramming.sh on the prompt.

Member Avatar for eggi
0
169

The End.