It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
I am looking for tips how to cont开发者_运维知识库rol execution of large sql script. It will contain various DDL and DML statement. Mostly I was looking for DDL control.What do I actually mean is, tha
I am using SQL*Plus with the following command line: sqlplus user/pw@TNS @test.sql foo The contents of test.sql follow:
I have created a query that looks like this but I havent found a way to group the departments together. Thats the part I need help with. I want to get Department number in one colum, Employee is anoth
This is what I want the output to look like: EmployeeEmp# Manager Mgr# BLAKE7698 KING7839 CLARK7782 KING7839
I want to get all jobs that are in dept 30 including the location SQL> select deptno,jobfrom emp where deptno =30 (select loc from dept);
Here is may problem : I have inline sqlplus call in my bash file and I would like to pass it a parameter
Is it possible to use a fully qualified TNS entry using sqlldr bundled with Oracle 10/11? For example, in SQLPlus:
I want the names of the employees, job, hiredate between \'20-FEB-81\' AND \'01-MAY-81\', and in ascending order
What am I doing wrong? SQL> select ename, job, oder by (ascending order)hiredatefrom emp where hiredate between \'20-FEB-81\' AND \'01-MAY-81\';