Search found 12 matches

by MasterN
Wed Jun 03, 2009 2:49 am
Forum: Oracle Databases
Topic: Automate oracle startup on linux reboot
Replies: 9
Views: 6785

Dear,

I run the script individually, the error occured

dbora: execvp: no such file or directory
rc: starting dbora: failed.

any help?

Thanks,
by MasterN
Wed Apr 29, 2009 3:06 am
Forum: Oracle Databases
Topic: Automate oracle startup on linux reboot
Replies: 9
Views: 6785

hi,

when i direct run the script

etc/init.d/dbora

then error occured no such file or directory? but root have the 755 permissions on the script dbora.
by MasterN
Thu Apr 23, 2009 1:30 am
Forum: Operating System
Topic: usb external hard disk double icon show
Replies: 1
Views: 2960

usb external hard disk double icon show

some time usb external hard disk double icon show on linux desktop. like usbdisk, usbdisk1, usbdisk2 etc. but in actual there is only one external harddisk attached with system.

if anyone have any idea, kindly help me.
by MasterN
Mon Apr 20, 2009 1:08 am
Forum: Oracle Databases
Topic: Automate oracle startup on linux reboot
Replies: 9
Views: 6785

no such file exist in the location
/etc/sysconfig/

Thanks,
by MasterN
Fri Apr 17, 2009 1:56 am
Forum: Oracle Databases
Topic: Automate oracle startup on linux reboot
Replies: 9
Views: 6785

Dear Amir, My database version is 10g 2.0 and I already perfomed all the steps like you mentioned. but after all this error occured: dbora: execvp : no such file or directory exist. rs: starting dbora: failed. Here is my script dbora: #!/bin/sh # chkconfig: 345 99 10 # description: Oracle auto start...
by MasterN
Thu Apr 16, 2009 5:44 am
Forum: Oracle Databases
Topic: Automate oracle startup on linux reboot
Replies: 9
Views: 6785

Automate oracle startup on linux reboot

How can we automate database startup shutdown on linux reboot?
by MasterN
Sat Nov 08, 2008 10:00 am
Forum: Oracle Forms & Reports
Topic: Column Heading Repeat in Matrix Report
Replies: 1
Views: 1383

Dear,

I am unable to understand your question. Plz give some detail about your question.

Thanks,
Farooq
by MasterN
Tue Sep 02, 2008 6:59 am
Forum: Oracle Forms & Reports
Topic: Move data from Oracle Report to Excel?
Replies: 3
Views: 2126

Move data from Oracle Report to Excel?

Hi,

I have a task to move Oracle report data directly to Excel sheet.

If anyone have idea or information about it then kindly guide me.

Thanks,
Farooq
by MasterN
Tue Aug 26, 2008 8:34 am
Forum: Oracle Forms & Reports
Topic: Showing line number sequentially in invoice format
Replies: 1
Views: 1410

Suppose you have table1, in which you have invoice_no column. Now you want to show invoice_no,srno .....if i m right then write the following query to acheive the result. SELECT INVOICE_NO,ROW_NUMBER() OVER (PARTITION BY INVOICE_NO ORDER BY ROWNUM) SRNO FROM TABLE1 I Think you got the desired result...
by MasterN
Tue Aug 26, 2008 6:18 am
Forum: Oracle Forms & Reports
Topic: All saturday and Sundays in a year....
Replies: 4
Views: 3079

IF YOU WANT TO EXTRACT DATES OF ALL SATURDAYS AND SUNDAYS BETWEEN TWO DATES THEN EXECUTE THE FOLLOWING QUERY TO FIND RESULTS: ----------------------------------------------------------------------- SELECT D DAY,DT DATE1 FROM ( SELECT UPPER(TRIM(TO_CHAR(TO_DATE(:FDATE)+ROWNUM-1,'DAY'))) D,TO_DATE(:FD...
by MasterN
Tue Aug 26, 2008 6:01 am
Forum: Oracle Forms & Reports
Topic: All saturday and Sundays in a year....
Replies: 4
Views: 3079

SELECT SUM(TOT_SUNDAY) TOT_SUNDAY, SUM(TOT_SATURDAY) TOT_SATURDAY FROM ( ----------------- SELECT COUNT(*) TOT_SUNDAY,0 AS TOT_SATURDAY FROM ( SELECT UPPER(TRIM(TO_CHAR(TO_DATE(:FDATE)+ROWNUM-1,'DAY'))) D FROM ALL_OBJECTS WHERE TO_DATE(:FDATE)+ROWNUM-1 BETWEEN TO_DATE(:FDATE) AND TO_DATE(:TDATE)) WH...
by MasterN
Fri Aug 22, 2008 4:19 am
Forum: Oracle Databases
Topic: plsql
Replies: 2
Views: 1855

SELECT SUBSTR(Column_Name,1,INSTRB(Column_Name,'-',1,2)-1) FROM table

I think it solve ur problem.

Pray for me.
Farooq