Forum: Oracle Sep 15th, 2009 |
| Replies: 2 Views: 860 Dear friends,
Plz tell me , how can i detect the pc's ip address from oracle software dynamically? |
Forum: Oracle Jul 18th, 2009 |
| Replies: 3 Views: 538 Please write details about settings of "NLS" |
Forum: Oracle Jul 6th, 2009 |
| Replies: 3 Views: 538 Dear Programmers,
How can I dispaly and insert other language (Arabic/hindi/bangla/chinees etc) through form level field at run time window directly by keyboard???. |
Forum: Oracle Apr 26th, 2009 |
| Replies: 4 Views: 954 Use group by clause and use group_column>1 in the where condition |
Forum: Oracle Apr 26th, 2009 |
| Replies: 2 Views: 795 Mr. Safi,
This type of problem is not theoritical. It depends on user requirements. So go to your clients and get the information and try to understand their business rules. Ok? |
Forum: Oracle Mar 15th, 2009 |
| Replies: 2 Views: 989 http\\ip address of the pc:port_number(e.g, 8080)\isqlplus |
Forum: Oracle Mar 4th, 2009 |
| Replies: 2 Views: 1,245 select count(deptno), dname
from dept
group by dname
having count(deptno)>1 |
Forum: Oracle Mar 4th, 2009 |
| Replies: 2 Views: 2,166 HI,
You can find your tables last/or first row by creating a query of in line view as:
select b.emp_id,b.last_name,b.first_name
from (select rownum,emp_id,last_name,first_name
from... |
Forum: Oracle Mar 4th, 2009 |
| Replies: 3 Views: 620 Morely delete command delete the data but not memory capture by row but truncate delete the rows and release the space captured by rows.
mir77 |